:root {
    --green-deep: #1A4D38;
    --green-jade: #2E7D5A;
    --green-mid: #5B9E7A;
    --green-ice: #F0F7F2;
    --gold: #FFC107;
    --gold-dark: #B8903A;
    --white: #FFFFFF;
    --text: #1C1C1C;
    --red: #E63946;
    --green-check: #2DC653;
    --bg-dark-1: #0F2D1F;
    --bg-dark-2: #163E2D;
    
    --font-title: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--green-deep);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: bold;
    line-height: 1.2;
}

.highlight-gold {
    color: var(--gold);
}

.highlight-green {
    color: var(--green-jade);
}

.highlight-red-underline {
    color: var(--red);
    text-decoration: underline;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.d-block { display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.max-w-md {
    max-width: 800px;
}

.py-section {
    padding: 80px 0;
}

/* Labels */
.label {
    display: inline-block;
    background: rgba(46, 125, 90, 0.1);
    color: var(--green-jade);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .py-section { padding: 50px 0; }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #6abf4a; /* Verde solicitado (Premium CTA) */
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: #059669; /* Verde mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.5);
}

.btn-small {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-large {
    width: 100%;
    max-width: 400px;
    padding: 20px 24px;
    font-size: 1.25rem;
}

/* Sub CTA */
.sub-cta {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 1rem;
    display: block;
}

/* Top Bar */
.top-bar {
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pulse-text {
    animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
    from { opacity: 0.8; }
    to { opacity: 1; text-shadow: 0 0 5px rgba(28, 28, 28, 0.2); }
}

/* Hero */
.hero {
    background: var(--white);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.1;
}

.subheadline {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-center {
    width: 100%;
    max-width: 600px;
    margin: 80px auto 120px; /* Mais espaço para abrigar a imagem vazando o círculo */
    display: flex;
    justify-content: center;
}

.hero-image-center img {
    width: 150%; /* Faz a imagem vazar o círculo magnético, parecendo muito maior */
    max-width: 150%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Círculo Fundo Hero */
.hero-circle-bg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px; 
    height: 280px; 
    margin-top: 20px;
}

.hero-circle-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background-color: #8CCB78; /* Clean green matching user's image */
    border-radius: 50%;
    z-index: 0;
}

@keyframes magneticPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.price-block {
    margin-bottom: 2rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    display: block;
}

.price-new {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
}

.price-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.glow-gold {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.5rem; }
    .price-new { font-size: 3.5rem; }
}

/* Trust Strip */
.trust-strip {
    background-color: var(--bg-dark-2);
    padding: 30px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.trust-item svg {
    color: var(--gold);
}

@media (max-width: 768px) {
    .trust-grid { justify-content: center; }
    .trust-item { width: calc(50% - 20px); }
}

/* Problem Section */
.problem-section {
    background-color: var(--green-ice);
    color: var(--text);
}
.problem-section h2 { color: var(--text); } /* ensure title is dark */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background-color: var(--white);
    border-bottom: 4px solid var(--red);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0,0,0,0.02);
    border-left: 1px solid rgba(0,0,0,0.02);
    border-right: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.problem-card .problem-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.problem-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { padding: 30px 20px; }
    .problem-card .problem-img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
}

.solution-section {
    background-color: var(--bg-dark-2);
    color: var(--white);
    padding: 80px 0;
}

.solution-section h2 {
    color: var(--white);
}

.label-green {
    display: inline-block;
    background: rgba(46, 125, 90, 0.2);
    color: #5B9E7A;
    padding: 8px 25px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.video-container-vturb {
    max-width: 900px;
    margin: 50px auto 0;
    width: 95%;
}

.video-title {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Modern Solution Layout */
.solution-modern-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.product-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
}

.heads-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.heads-title {
    font-size: 2.25rem;
    color: var(--text);
    font-weight: 800;
    text-align: left;
    margin-bottom: 5px;
}

.heads-underline {
    width: 40px;
    height: 4px;
    background-color: var(--green-jade);
    margin-bottom: 25px;
}

.head-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

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

.head-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.head-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.head-tag {
    display: inline-block;
    background-color: #A5D6A7;
    color: var(--white);
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    width: fit-content;
}

.head-info p {
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .solution-modern-layout {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .heads-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .heads-underline {
        margin: 0 auto 25px auto;
    }

    .main-product-img {
        max-height: 400px;
    }

    .head-row {
        gap: 15px;
    }

    .head-img {
        width: 60px;
        height: 60px;
    }

    .head-tag {
        font-size: 0.95rem;
    }

    .head-info p {
        font-size: 0.9rem;
    }
}


/* How It Works Layer */
.how-it-works {
    background-color: var(--bg-dark-1);
}

.timeline {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gold);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--green-deep);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: var(--font-title);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.check-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--green-check);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .benefits-list { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    color: var(--text);
}

.reviews-header {
    margin-bottom: 30px;
}

.reviews-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviews-top-row h2 {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.see-all {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.rating-summary-box {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 4px;
    max-width: 100%;
}

.main-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.rating-number {
    font-size: 2.25rem;
    font-weight: 700;
}

.rating-stars {
    color: #FFC107;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-policy {
    font-size: 0.75rem;
    color: #333;
    margin-left: auto;
}

.rating-policy span {
    font-size: 0.9rem;
    vertical-align: middle;
}

.rating-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #333;
}

.footer-stars {
    color: #FFC107;
    letter-spacing: 1px;
}

.footer-toggle {
    margin-left: auto;
}

.toggle-track {
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #eee;
    border-radius: 20px;
    position: relative;
}

.toggle-track::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--white);
    color: var(--text);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.received-image {
    width: 85%;
    aspect-ratio: 1 / 1; /* Quadrado */
    margin: 0 auto 24px auto; /* Centralizado */
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.received-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .received-image img {
    transform: scale(1.05);
}

.quote-icon {
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #4A4A4A;
    margin-bottom: 20px;
    font-size: 1rem;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0;
    color: var(--text);
}

.location {
    display: block;
    font-size: 0.8rem;
    color: #666666;
}

.verified {
    display: block;
    color: var(--green-check);
    font-size: 0.8rem;
    margin-top: 2px;
}

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

/* Offer Section */
.offer-box {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--text);
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.offer-image {
    margin-bottom: 30px;
}

.offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Yellow Alert Box */
.yellow-alert-box {
    background-color: #FFD52E;
    border-radius: 16px;
    padding: 20px 20px 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px auto; /* Added 40px bottom margin to push title down */
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 213, 46, 0.2);
}

.yellow-alert-label {
    display: table; /* Centering technique */
    background-color: #3B280D;
    color: #FFD52E;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 20px auto; /* Centers the pill */
}

.yellow-alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px !important;
}

.time-block {
    background: #3B280D;
    color: #FFF;
    border-radius: 12px;
    padding: 10px;
    min-width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.time-block span {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: #FFD52E;
}

.time-block small {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.colon {
    font-size: 2rem;
    font-weight: bold;
    color: #3B280D;
    margin-bottom: 5px;
}

.yellow-alert-texts h4 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #3B280D;
    margin-bottom: 5px;
    line-height: 1.2;
}

.yellow-alert-texts p {
    font-size: 1.25rem;
    font-weight: 800;
    color: #3B280D;
    margin: 0;
}

.yellow-alert-footer {
    background-color: #E8BC00;
    margin: 0 -20px;
    padding: 12px 20px;
    color: #3B280D;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 600px) {
    .yellow-alert-content {
        flex-direction: column;
        text-align: center;
    }
    .yellow-alert-texts h4 { font-size: 1.2rem; }
    .yellow-alert-texts p { font-size: 1.1rem; }
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.offer-includes {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
}

.offer-includes ul {
    list-style: none;
}

.offer-includes li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    color: var(--text);
}

.offer-price {
    margin-bottom: 40px;
}

.offer-price .price-old, .price-final .price-old {
    display: block;
    color: #E63946; /* Vermelho solicitado */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none; 
}

.installment-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 5px 0;
}

/* No fundo branco (Oferta Principal) */
.offer-box .installment-price {
    color: var(--text);
}

/* No fundo escuro (CTA Final) */
.final-cta-section .installment-price {
    color: #FFFFFF;
}

.offer-price .price-new {
    color: var(--green-deep); /* Valor em verde escuro no fundo branco */
    font-size: 3.5rem;
    font-weight: 900;
}

.price-final .price-new {
    color: #FFFFFF; /* Valor em branco no fundo escuro */
    font-size: 3.5rem;
    font-weight: 900;
}

.cash-price {
    display: block;
    color: var(--gold);
    font-weight: 800;
    font-size: 1.25rem;
}

@media (max-width: 600px) {
    .offer-box { padding: 30px 20px; }
    .offer-box h2 { font-size: 2rem; }
    .time-block { width: 60px; padding: 10px; }
    .time-block span { font-size: 1.8rem; }
    .colon { font-size: 1.8rem; }
    .offer-ribbon { right: -5px; }
}

/* DTC Guarantee Section */
.dtc-guarantee {
    background-color: #F9FAFB;
    color: #111827;
}

.dtc-header {
    margin-bottom: 40px;
}

.dtc-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dtc-subheadline {
    font-size: 1.15rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.dtc-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.dtc-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dtc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dtc-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.dtc-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.dtc-card p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .dtc-cards-row {
        grid-template-columns: 1fr;
    }
    .dtc-headline {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--green-ice);
    color: var(--text);
}
.faq-section h2 { color: var(--text); }

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.plus-icon {
    color: var(--green-jade);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.answer-content {
    padding: 0 24px 24px;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Final CTA */
.final-cta-section {
    background: linear-gradient(180deg, var(--bg-dark-1) 0%, var(--green-deep) 100%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* Garante texto branco em toda a seção */
}

.final-cta-section .subtitle,
.final-cta-section .sub-cta {
    color: rgba(255, 255, 255, 0.9);
}

.glow-gold-large {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.h2-large {
    font-size: 3.25rem;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .h2-large { font-size: 2.25rem; }
}

/* WhatsApp Support Section */
.whatsapp-support {
    background-color: #f8fafc;
    border-top: 1px solid #edf2f7;
}

.whatsapp-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.whatsapp-icon-float {
    margin-bottom: 20px;
}

.whatsapp-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text);
}

.whatsapp-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-bottom: 15px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.support-check {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 600px) {
    .whatsapp-box { padding: 40px 20px; }
    .whatsapp-box h3 { font-size: 1.5rem; }
}

/* Footer */
footer {
    padding: 60px 0 110px; /* Aumentado padding inferior para compensar a barra fixa */
    background-color: var(--bg-dark-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-about-clinic {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.clinic-image {
    flex: 0 0 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.clinic-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.clinic-mission h3 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.clinic-mission p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-links-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-new a:hover {
    color: var(--gold);
}

.footer-badge {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.address {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-about-clinic {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .clinic-image {
        flex: 1;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-2);
    border-top: 2px solid var(--gold);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.125rem;
}

.sticky-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.flex-row { display: flex; }
.space-between { justify-content: space-between; }
.align-center { align-items: center; }

@media (max-width: 600px) {
    .sticky-desc { display: none; }
}

/* =========================================
   ANIMATIONS (Antigravity Equivalents)
   ========================================= */

/* Float Animation */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

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

/* Pulse Animation */
.pulse {
    animation: pulseObj 2s infinite;
}

@keyframes pulseObj {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Shimmer Effect on CTA */
.shimmer {
    position: relative;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shimmerEffect 3s infinite;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Scroll Revealer (Initial states before JS kicks in) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Variables */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Load More Button & Spinner */
.load-more-wrapper {
    text-align: center;
    margin: 40px auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.btn-load-more {
    display: inline-block;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.btn-load-more.hidden {
    display: none;
}

#loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.85rem;
}

.spinner-hidden {
    display: none !important;
}

.loader-circle {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

