/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a.affiliate-link {
    text-decoration: none;
    color: inherit;
}

a.affiliate-link:hover {
    text-decoration: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #5ab021; // #5AB021;
    font-weight: 700;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-desktop.active {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #5AB021;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5AB021;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu a {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.mobile-nav-menu a:hover {
    color: #5AB021;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-fixed {
        padding: 0;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    // background: linear-gradient(135deg, #5AB021, #3b7a13);
	background: linear-gradient(135deg, #5AB021, #3b7a13);
    color: white;
    box-shadow: 0 6px 20px rgba(90, 176, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 176, 33, 0.4);
}

.btn-secondary {
    background: white;
    color: #5AB021;
    border: 2px solid #5AB021;
}

.btn-secondary:hover {
    background: #fff5f0;
}

.btn-tertiary {
    background: #f0f0f0;
    color: #333;
    border: 2px solid #ddd;
}

.btn-tertiary:hover {
    background: #e0e0e0;
    border-color: #bbb;
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 120px 0 10px 0;
    margin-top: 0px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 176, 33, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    /* Removido o grid daqui para aplicar no .hero-content */
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    color: #5ab021; // #5AB021;
}

.hero-subtitle {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-cta-buttons a {
    width: 100%;
}

.hero-urgency {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.hero-image {
    text-align: center;
    /* Garante que a imagem seja exibida */
    display: block; 
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px 0;
        margin-top: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons a {
        width: 100%;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ============================================
   WHY UPGRADE SECTION
   ============================================ */

.why-upgrade {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.upgrade-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.comparison-image {
    text-align: center;
}

.comparison-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.upgrade-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #5AB021;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon img {
    width: 100%;
    height: auto;
}

.reason-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.reason-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .upgrade-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */

.ingredients {
    background: white;
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.ingredients-image {
    text-align: center;
}

.ingredients-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ingredients-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.ingredients-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #5AB021;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff5f0;
    transform: translateX(5px);
}

.benefit-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ingredients-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ingredients-benefits {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */

.comparison {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-visual {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-visual-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header-row {
    background: linear-gradient(135deg, #5AB021, #3b7a13);
    color: white;
    font-weight: 700;
}

.table-cell {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.5;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.feature-col {
    font-weight: 600;
    color: #1a1a1a;
}

.burnjaro-col {
    color: #d32f2f;
    font-weight: 600;
}

.slimjaro-col {
    color: #388e3c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .table-cell {
        padding: 10px 20px;
        font-size: 14px;
    }

    .table-row.header-row {
        display: none;
    }

    .table-row:nth-child(even) {
        background: white;
    }


}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    height: auto;
    background: #eee;
}

.before-after-img {
    width: 200%; /* aumenta o tamanho da imagem */
    max-width: 200px; /* limita para não estourar */
    height: auto;
    object-fit: contain; /* mantém proporção e não corta */
    border-radius: 16%; /* deixa arredondado, opcional */
}

/* Conteúdo do depoimento */
.testimonial-content {
    padding: 20px;
    text-align: center;
}

.testimonial-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.testimonial-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-rating {
    font-size: 18px;
    color: #ffc107;
}

/* Responsivo */
@media (max-width: 768px) {
    .testimonial-image {
        padding: 15px 0;
    }

    .before-after-img {
        width: 200%;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-image {
        height: 250px;
    }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-badge {
    text-align: center;
}

.guarantee-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.guarantee-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.guarantee-subtext {
    color: #5AB021;
    font-weight: 600;
}

@media (max-width: 768px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .guarantee-text h3 {
        font-size: 24px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    background: white;
}

.pricing-visual {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-urgency {
    background: linear-gradient(135deg, #fff5f0, #ffe6d5);
    border-left: 4px solid #5AB021;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-urgency p {
    font-size: 16px;
    color: #d32f2f;
    font-weight: 600;
    line-height: 1.6;
}

.security-badges {
    text-align: center;
    margin-top: 40px;
}

.security-img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: #5AB021;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, #5AB021, #3b7a13);
    color: white;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.final-cta > .container > p:nth-of-type(1) {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.final-cta-buttons a {
    width: 100%;
}

.final-cta-buttons .btn-primary {
    background: white;
    color: #5AB021;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.final-cta-buttons .btn-primary:hover {
    background: #f8f9fa;
}

.final-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

.final-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.final-cta-buttons .btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta-buttons .btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.final-urgency {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta > .container > p:nth-of-type(1) {
        font-size: 16px;
    }

    .final-cta-buttons {
        max-width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin: 8px 0;
}

.footer-content p:first-child {
    font-weight: 600;
    color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item.loading,
.reason-item.loading,
.benefit-item.loading {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons a {
        width: 100%;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons a {
        width: 100%;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 14px 20px;
        font-size: 15px;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }

    .testimonial-image {
        height: 200px;
    }

    .reason-item {
        padding: 15px;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header-fixed,
    #backToTop,
    .exit-popup-overlay,
    .inactivity-popup-overlay {
        display: none !important;
    }

    body {
        background: white;
    }

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        border: 1px solid #333;
        color: #333 !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   DARK MODE SUPPORT (OPTIONAL)
   ============================================ */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .header-fixed {
        background: rgba(26, 26, 26, 0.98);
    }

    .logo-text {
        color: #e0e0e0;
    }

    .nav-menu a {
        color: #b0b0b0;
    }

    .nav-menu a:hover {
        color: #5AB021;
    }

    .hero-text h1 {
        color: #e0e0e0;
    }

    .hero-subtitle {
        color: #b0b0b0;
    }

    .hero-description {
        color: #a0a0a0;
    }

    .section-title {
        color: #e0e0e0;
    }

    .reason-item,
    .benefit-item,
    .testimonial-item,
    .guarantee-content,
    .faq-item,
    .faq-question {
        background: #2a2a2a;
        color: #e0e0e0;
    }

    .reason-item:hover,
    .benefit-item:hover,
    .testimonial-item:hover {
        background: #333;
    }

    .reason-text h3,
    .benefit-item h4,
    .faq-question h4,
    .testimonial-content h4 {
        color: #e0e0e0;
    }

    .reason-text p,
    .benefit-item p,
    .faq-answer p,
    .testimonial-content p {
        color: #b0b0b0;
    }

    .table-row:nth-child(even) {
        background: #2a2a2a;
    }

    .table-cell {
        color: #e0e0e0;
    }

    .feature-col {
        color: #e0e0e0;
    }

    .comparison-table {
        background: #2a2a2a;
    }

    .guarantee-content {
        background: #2a2a2a;
    }

    .mobile-menu {
        background: #2a2a2a;
        border-top-color: #333;
    }

    .mobile-nav-menu a {
        color: #b0b0b0;
    }

    .pricing-urgency {
        background: linear-gradient(135deg, #3a2a1a, #4a3a2a);
    }
}




/* === BOTÕES COM LEGIBILIDADE APRIMORADA === */
.btn-primary {
    background: linear-gradient(135deg, #5AB021, #3b7a13);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(90, 176, 33, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 176, 33, 0.5);
    filter: brightness(1.1);
}

/* Botão secundário: contorno verde, texto verde escuro sobre fundo branco */
.btn-secondary {
    background: #ffffff;
    color: #3b7a13 !important;
    border: 2px solid #5AB021;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f6ffef;
    border-color: #3b7a13;
}

/* Botão terciário: verde claro */
.btn-tertiary {
    background: linear-gradient(135deg, #5AB021, #3b7a13);
    color: #fff !important;
    border: none;
}

.btn-tertiary:hover {
    filter: brightness(1.1);
}

/* Botões dentro da seção final-cta */
.final-cta-buttons .btn-primary {
    background: #ffffff !important;
    color: #3b7a13 !important;
    border: 2px solid #ffffff;
}

.final-cta-buttons .btn-primary:hover {
    background: #f4ffe8 !important;
    color: #2f640f !important;
}
