/* -------------------------------------------------------------
   PROTOCOLO SONO REPARADOR - PREMIUM LANDING PAGE STYLE SHEET
   ------------------------------------------------------------- */

/* Variables & Design Tokens */
:root {
    --bg-dark-primary: #060713;
    --bg-dark-secondary: #0c0e25;
    --bg-dark-card: rgba(18, 22, 53, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(0, 242, 254, 0.3);

    /* Brand Accents */
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-indigo: #7f00ff;
    --accent-pink: #e100ff;

    /* Text Colors */
    --text-primary: #f3f4f6;
    --text-secondary: #b2b8d3;
    --text-dim: #7d85a6;

    /* Fonts */
    --font-primary: 'Poppins', 'Helvetica Neue', Helvetica, sans-serif;
    --font-display: 'Montserrat', 'Helvetica Neue', Helvetica, sans-serif;
    --font-impact: 'Bebas Neue', sans-serif;
}

/* Base Reset & Styling */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-dark-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Site wrapper: full width, no constrained max */
.site-main {
    width: 100%;
    overflow-x: hidden;
}

/* Atmospheric Glow Blobs */
.glow-blob {
    display: none;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-dark-secondary);
    border: 2px solid var(--bg-dark-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Layout Container */
.landing-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Section Common Styles */
.section-container {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 30%, #a2adcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-indigo));
    border-radius: 2px;
    margin: 1rem auto 0 auto;
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0 3rem 0;
    position: relative;
}

.hero-badge {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--accent-cyan);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: miniPulse 1.8s infinite ease-in-out;
}

@keyframes miniPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 12px var(--accent-cyan);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.hero-question {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.hero-title {
    font-family: var(--font-impact);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    max-width: 1000px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle-primary {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 2.5vw, 1.4rem);
    color: var(--text-primary);
    font-weight: 400;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-subtitle-secondary {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 3rem;
}

.hero-price-tag {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-dim);
}

.price-accent {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

/* Call To Action Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: #04050e;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;

    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);

    color: #ffffff;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn:active {
    transform: translateY(-1px);
}

.play-arrow {
    font-size: 0.8em;
    margin-left: 0.75rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-btn:hover .play-arrow {
    transform: translateX(4px);
}

/* Glowing Loop Effect */
.pulse-glow {
    animation: buttonPulse 3s infinite alternate;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
    }

    100% {
        box-shadow: 0 10px 40px rgba(0, 242, 254, 0.55), 0 0 15px rgba(79, 172, 254, 0.4);
    }
}


/* ---------------- WHY TIRED SECTION ---------------- */
.why-tired-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.why-tired-section .section-title {
    background: linear-gradient(135deg, #0c0e25 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-tired-section .section-title::after {
    background: linear-gradient(90deg, #0c0e25, #7f00ff);
}

.why-tired-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-tired-content p {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #fff;
}

.why-tired-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.why-tired-list li {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #fff;
    padding-left: 1.75rem;
    position: relative;
}

.why-tired-list li::before {
    content: "⚠\FE0E";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.1rem;
    top: 0.25rem;
}

.why-tired-content p strong {
    color: var(--accent-cyan);
}


.why-tired-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
}


/* ---------------- FOR WHOM SECTION ---------------- */
.for-whom-section {
    border-top: 1px solid var(--border-glass);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -2.5rem auto 3rem auto;
}

.for-whom-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.for-whom-item {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.for-whom-item span:not(.warning-bullet) {
    color: #000;
    font-weight: 500;
}

.for-whom-item:hover {
    background: #fff;
    border-color: rgba(231, 76, 60, 0.4);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15), 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateX(4px);
}

.for-whom-item .warning-bullet {
    color: #e74c3c;
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}

/* ---------------- BEFORE / AFTER SECTION ---------------- */
.before-after-section {
    border-top: 1px solid var(--border-glass);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card-before {
    border-left: 4px solid #ff4b4b;
}

.card-after {
    border-left: 4px solid #00c8d4;
    box-shadow: 0 10px 30px rgba(0, 200, 212, 0.1);
}

.card-before:hover {
    border-color: #ff4b4b;
    box-shadow: 0 12px 30px rgba(255, 75, 75, 0.12);
}

.card-after:hover {
    border-color: #00c8d4;
    box-shadow: 0 12px 30px rgba(0, 200, 212, 0.15);
}

.card-title-badge {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    align-self: flex-start;
    letter-spacing: 1.5px;
}

.bad-badge {
    background: rgba(255, 75, 75, 0.1);
    color: #e03030;
    border: 1px solid rgba(255, 75, 75, 0.35);
}

.good-badge {
    background: rgba(0, 180, 200, 0.1);
    color: #008fa3;
    border: 1px solid rgba(0, 180, 200, 0.35);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.5;
}

.x-mark {
    color: #ff4b4b;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.check-mark {
    color: var(--accent-cyan);
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}


/* ---------------- WHAT YOU'LL RECEIVE ---------------- */
.receive-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.receive-section .section-title {
    background: linear-gradient(135deg, #0c0e25 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.receive-section .section-title::after {
    background: linear-gradient(90deg, #0c0e25, #7f00ff);
}

.receive-header-card {
    text-align: center;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.receive-subtitle {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.receive-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
}

/* ---------------- PROGRESSION TIMELINE (STEPS) ---------------- */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.method-step {
    width: 100%;
}

.step-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.08);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.step-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.step-card:hover .step-tag {
    color: var(--accent-pink);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-img-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 1.5rem 0;
    transition: transform 0.3s ease;
}

.step-card:hover .step-img-wrapper {
    transform: scale(1.02);
}

.step-img {
    width: 100%;
    height: auto;
    display: block;
}

.step-desc {
    font-size: 1.30rem;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
}

/* Step divider ------ */
.step-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 1rem 0;
    width: 100%;
}

width: 3rem;
height: 3rem;
}
}


/* ---------------- EXCLUSIVE BONUSES ---------------- */
.bonuses-section {
    border-top: 1px solid var(--border-glass);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(180deg, rgba(20, 25, 59, 0.7) 0%, rgba(10, 12, 34, 0.9) 100%);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.06), 0 0 20px rgba(127, 0, 255, 0.06);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-pink));
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(127, 0, 255, 0.3);
}

.bonus-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.bonus-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ---------------- DOCTOR SECTION ---------------- */
.doctor-section {
    border-top: 1px solid var(--border-glass);
}

.doctor-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.doctor-image-container {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.doctor-text p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.doctor-text p strong {
    color: var(--accent-cyan);
}

.doctor-byline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 0.5rem;
}

.doctor-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.doctor-specialty {
    font-size: 0.88rem;
    color: var(--accent-cyan);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.doctor-approval {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.approval-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.approval-logo {
    height: 38px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.approval-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .doctor-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .doctor-text {
        text-align: center;
    }

    .doctor-image-container {
        width: 140px;
        height: 140px;
    }

    .doctor-approval {
        align-items: center;
    }
}


/* ---------------- TESTIMONIALS ---------------- */
.testimonials-section {
    border-top: 1px solid var(--border-glass);
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    padding: 2.2rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.08);
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-verified {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    align-self: flex-start;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Controls */
.carousel-control {
    background: rgba(18, 22, 53, 0.75);
    border: 1px solid var(--border-glass);
    color: var(--accent-cyan);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.carousel-control svg {
    width: 20px;
    height: 20px;
}

.carousel-control:hover {
    background: var(--bg-dark-secondary);
    border-color: var(--accent-cyan);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
    transform: scale(1.08);
}

.carousel-control:active {
    transform: scale(0.95);
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-cyan);
    width: 24px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        gap: 0.5rem;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
    }

    .carousel-control svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-card {
        padding: 1.8rem 1.5rem;
    }
}


/* ---------------- OFFER SECTION ---------------- */
.offer-section {
    padding: 6rem 0;
    background-color: #ffffff;
    color: #0c0e25;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    /* The section is a direct child of .site-main (width:100%),
       so it naturally fills 100% of the viewport — no hacks needed */
}

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

/* Override gradient text for the white offer section */
.offer-section .section-title {
    background: linear-gradient(135deg, #0c0e25 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* The ::after underline inherits correctly */

.offer-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    display: none;
}

.offer-pitch-primary {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-indigo);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.offer-pitch-secondary {
    font-size: clamp(2.0rem, 2.5vw, 1.4rem);
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.offer-pitch-tertiary {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #64748b;
    margin-bottom: 2.5rem;
}

.offer-pricing-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: none;
}

.price-original {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.price-today {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.today-lbl {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: #e11d48;
    background: #ffe4e6;
    border: 1px solid #fda4af;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-highlight {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #0f172a;
}

.price-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-indigo);
    text-shadow: none;
}

.price-installments {
    font-size: 1.1rem;
    color: #475569;
}

.price-subaccent {
    color: #0f172a;
    font-weight: 700;
}

.offer-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-access-info {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
}

.offer-cta-btn {
    width: 100%;
    max-width: 480px;
}


/* ---------------- GUARANTEE SECTION ---------------- */
.guarantee-section {
    border-top: 1px solid var(--border-glass);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(20, 25, 59, 0.5) 0%, rgba(10, 12, 34, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.guarantee-badge {
    color: var(--accent-cyan);
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.shield-svg {
    width: 100%;
    height: 100%;
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.guarantee-content {
    max-width: 650px;
}

.guarantee-content p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.guarantee-content p:last-child {
    margin-bottom: 0;
}

.guarantee-foot {
    font-family: var(--font-display);
    font-size: 1.05rem !important;
    font-weight: 700;
    color: var(--accent-cyan) !important;
    letter-spacing: 0.5px;
}


/* ---------------- FREQUENT QUESTIONS (FAQ) ---------------- */
.faq-section {
    border-top: 1px solid var(--border-glass);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.01);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    font-weight: 300;
    line-height: 1;
    margin-left: 1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Toggle expansion */
.faq-item.active {
    border-color: var(--border-glass-hover);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.04);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(0, 0, 0, 0.15);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ---------------- FOOTER ---------------- */
.footer-section {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-cnpj {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.05);
    user-select: none;
}


/* ---------------- MEDIA QUERIES ---------------- */
@media (max-width: 768px) {
    .section-container {
        padding: 4rem 0;
    }

    .hero-section {
        padding: 6rem 0 3rem 0;
    }

    .receive-grid {
        grid-template-columns: 1fr;
    }

    .offer-box {
        padding: 2.5rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* ---- Offer Mockup ---- */
.offer-mockup-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.offer-mockup {
    width: 260px;
    max-width: 100%;
    border-radius: 12px;
    animation: mockup-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

@keyframes mockup-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

/* ---- Offer Checklist (below mockup) ---- */
.offer-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
    text-align: left;
}

.offer-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.offer-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #22c55e;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.45);
}

/* ---- New Pricing Layout ---- */
.price-crossed {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #e53e3e;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-main-value {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.price-installments-new {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 10px;
}

.price-economy {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
}

.price-economy strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Green CTA Button */
.offer-cta-btn-green {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 18px auto 0 auto;
    padding: 18px 24px;
    background: #22c55e;
    color: #fff !important;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.offer-cta-btn-green:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.6);
}