/* Modern Bio-Tech Theme - Premium Health Edition */
:root {
    --bg-dark: #143d34;
    --bg-card: #1f574a;
    --bg-gradient: linear-gradient(135deg, #143d34 0%, #1f574a 100%);

    --primary: #34d399;
    --primary-glow: #6ee7b7;
    --accent: #f97316;
    --accent-hover: #ea580c;

    --text-main: #f0fdf4;
    --text-muted: #a7f3d0;
    --border-color: #059669;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --shadow-glow: 0 0 25px rgba(52, 211, 153, 0.2);

    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-subtle {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: radial-gradient(circle at 70% 20%, #1f574a 0%, #143d34 70%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    z-index: 2;
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-container {
        margin-bottom: 40px;
    }
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.tech-badge {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content .hero-image {
        aspect-ratio: 1 / 1;
        object-position: center 25%;
    }
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, rgba(52, 211, 153, 0.2) 0%, transparent 100%);
    padding: 0 5px;
    border-radius: 4px;
}

.sub-headline {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #FF8C00 0%, #ff6b00 100%) !important;
    color: white;
    padding: 20px 42px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6) !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.8) !important;
    background: linear-gradient(135deg, #ff9d00 0%, #FF8C00 100%) !important;
}

.pulse-anim {
    animation: pulse-subtle 2s infinite;
}

.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    /* Slight adjustment */
    aspect-ratio: 1 / 1;
    /* Square ratio - requested shorter */
    object-fit: cover;
    object-position: center 25%;
    /* Focus significantly lower to show pants/waist */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Improve visibility on dark backgrounds */
    filter: brightness(1.1) contrast(1.15);
}

.floating-card {
    position: absolute;
    background: rgba(6, 78, 59, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-card strong {
    color: var(--primary-glow);
    font-size: 1.1rem;
}

.m1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.m2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

/* Sections Common */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    margin-bottom: 70px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Agitation - Dark Cards */
.agitation {
    background: #143d34;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pain-card {
    background: rgba(6, 78, 59, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(6, 78, 59, 0.5);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.pain-card p {
    color: #d1fae5;
    font-size: 1rem;
}

/* Feeling Section (Golden Tip) */
.feeling-section {
    background: linear-gradient(to right, #064e3b, #065f46);
}

.feeling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .feeling-grid {
        grid-template-columns: 1fr;
    }
}

.feeling-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.feeling-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Method / Timeline - Clean */
.solution {
    background: #143d34;
}

.timeline-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.phase-card {
    background: #0f3930;
    border: 1px solid rgba(52, 211, 153, 0.1);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.phase-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(52, 211, 153, 0.15);
    line-height: 1;
}

.phase-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.phase-content p {
    font-size: 1.05rem;
    color: #ecfdf5;
    line-height: 1.7;
}

/* Differentials (Recipes) - Light Theme Variation */
.differentials {
    background: #f0fdf4;
    /* Light Mint Background */
    position: relative;
}

/* Overrides for Light Background */
.differentials .section-header h2 {
    color: #064e3b;
}

.differentials .section-header p {
    color: #059669;
    font-weight: 500;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.recipe-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(6, 78, 59, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: 0.3s;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.15);
}

.recipe-img {
    width: 100%;
    height: 200px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.recipe-content {
    padding: 25px;
}

.recipe-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #064e3b;
    /* Dark Green Text */
}

.recipe-card p {
    font-size: 0.9rem;
    color: #374151;
    /* Dark Gray Text */
}

/* Mockup Section */
.mockup-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle, #065f46 0%, #022c22 80%);
}

.mockup-img {
    max-width: 800px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    margin: 40px auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(52, 211, 153, 0.15);
    animation: float-mockup 6s ease-in-out infinite;
    background: white;
    padding: 20px;
}

@media (max-width: 768px) {
    .mockup-img {
        max-height: 400px;
        width: auto;
        max-width: 100%;
        padding: 10px;
        display: block;
        margin: 0 auto;
        animation: none;
        /* Disabling float logic on mobile to ensure perfect centering */
        transform: none !important;
    }
}

@keyframes float-mockup {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Testimonials */
.testimonials {
    background: #143d34;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: #064e3b;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #f0fdf4;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-phrase {
    background: rgba(52, 211, 153, 0.2);
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #022c22;
    font-size: 1.2rem;
}

.slider-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Offer */
.offer {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    text-align: center;
    padding: 40px 0;
    /* Reduced */
}

.offer-box {
    background: rgba(2, 44, 34, 0.6);
    backdrop-filter: blur(10px);
    padding: 2px 20px;
    /* Drastically reduced vertical padding to remove white space at top */
    border-radius: 40px;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scarcity-timer {
    background: #78350f;
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
    /* Reduced from 20px */
    margin-top: 20px;
    font-family: monospace;
    font-size: 1.1rem;
    border: 1px solid #fbbf24;
}

.price-display {
    margin: 15px 0;
    /* Reduced from 30px */
}

.from-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    display: block;
}

.to-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.guarantee-seal-large {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
}

/* Bonus Badges in Mockup */
.mockup-container {
    position: relative;
    display: inline-block;
}

.bonus-badge {
    position: absolute;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #022c22;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
    border: 2px solid #fff;
    z-index: 10;
    transition: transform 0.3s;
    animation: float 5s ease-in-out infinite;
}

.bonus-badge:hover {
    transform: scale(1.1);
}

.bb1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.bb2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    color: white;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.6);
}

.bb3 {
    top: 50%;
    right: -40px;
    animation-delay: 3s;
    background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
    color: white;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.6);
}

@media (max-width: 768px) {
    .mockup-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bonus-badge {
        position: static;
        /* Stack them below image */
        transform: none !important;
        animation: none;
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 5px auto;
    }
}

/* Floating CTA Mobile Fix */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF8C00 0%, #ea580c 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-decoration: none;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .floating-cta {
        left: auto;
        right: 20px;
        margin: 0;
        width: fit-content;
        max-width: 85%;
        padding: 12px 24px;
        font-size: 0.95rem;
        justify-content: center;
        bottom: 25px;
    }
}



/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item details {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 25px;
    border: 1px solid rgba(6, 78, 59, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    color: #064e3b;
    /* Dark Green for strong contrast */
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: #10b981;
    /* Primary Green for icon */
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
}

.faq-item details[open] summary::after {
    content: '-';
    color: #ef4444;
    /* Red for close action */
}

.faq-item p {
    margin-top: 15px;
    color: #4b5563;
    /* Dark Gray for comfortable reading */
    line-height: 1.6;
}

/* Feeling Results */
.feeling-results-section {
    background: linear-gradient(to bottom, #143d34, #1f574a);
}

.feeling-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(52, 211, 153, 0.4));
    transition: transform 0.3s;
}

.feeling-item:hover .icon-large {
    transform: scale(1.2);
}

/* Video Section Premium Styling */
.video-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle, #1f574a 0%, #143d34 80%);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(52, 211, 153, 0.4);
    transform: translateZ(0);
    /* Fix for Safari border-radius clipping */
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Imagem de fundo com sobreposição escura para ler o texto */
    background: linear-gradient(135deg, rgba(20, 61, 52, 0.85), rgba(31, 87, 74, 0.9)),
        url('recipe_green_juice.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.8), rgba(2, 44, 34, 0.85));
}

.play-button {
    display: none !important;
    /* Hiding old button to use new overlay one */
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-overlay-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    max-width: 80%;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-overlay-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(2, 44, 34, 0.6);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Mobile Video Adjustments */
@media (max-width: 768px) {
    .v-text[style*="font-size:3rem"] {
        font-size: 2rem !important;
        /* Force smaller size for price */
    }

    .v-content .cta-button {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        width: 90% !important;
    }

    .video-overlay-title {
        font-size: 1.4rem;
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: #143d34;
    border-top: 1px solid #1f574a;
    color: #6ee7b7;
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* CSS para o "Vídeo Simulado" (Slideshow Automático) */
.video-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    display: none;
    /* Oculto até clicar em play */
}

.video-slideshow.active {
    display: block;
}

.v-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.v-slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.v-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
    animation: zoomEffect 10s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* Desabilitar animações pesadas em mobile */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration para elementos animados */
.hero-image,
.v-bg-image,
.play-button,
.cta-button {
    will-change: transform;
    transform: translateZ(0);
}

/* Content Visibility para lazy rendering */
.testimonials,
.differentials,
.feeling-results-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.v-content {
    position: relative;
    z-index: 3;
    max-width: 80%;
}

.v-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
    /* Delay para entrar depois do slide */
}

.v-slide.active-slide .v-text {
    opacity: 1;
    transform: translateY(0);
}

.v-subtext {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease 1s;
    /* Delay maior */
}

.v-slide.active-slide .v-subtext {
    opacity: 1;
    transform: scale(1);
}

.v-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background: var(--primary);
    width: 0%;
    z-index: 10;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    color: white;
    font-size: 0.8rem;
}

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    /* Desabilitar animações pesadas em mobile */
    .floating-card,
    .bonus-badge,
    .mockup-img {
        animation: none !important;
    }

    .v-bg-image {
        animation: none !important;
        transform: scale(1) !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Video Mobile Adjustments */
    .video-wrapper {
        border-radius: 12px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
        /* Adjust icon inside if needed, usually text inside */
    }

    .video-overlay-title {
        font-size: 1.1rem;
        max-width: 90%;
    }

    .video-overlay-subtitle {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .v-text {
        font-size: 1.2rem;
        /* Reduced from 1.8rem */
        line-height: 1.3;
    }

    .v-subtext {
        font-size: 0.9rem;
        /* Reduced from 1.2rem */
        padding: 4px 10px;
    }

    .v-content {
        max-width: 90%;
    }

    /* Adjust other sections */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-container {
        padding: 0 10px;
    }

    .phase-card {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        text-align: center;
    }

    .phase-icon-3d {
        margin: 0 auto;
    }

    .feeling-grid-4 {
        grid-template-columns: 1fr;
    }

    .to-price {
        font-size: 3.5rem;
    }

    .offer-box {
        padding: 40px 20px;
    }
}


@media (max-width: 480px) {
    .v-text {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .floating-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
        bottom: 10px;
        right: 10px;
        flex-direction: column;
        /* Stack text */
        gap: 2px;
        text-align: center;
    }
}

/* =========================================
   NEW SECTION: WHO IS THIS FOR
   ========================================= */
.who-is-it {
    background: #064e3b;
    position: relative;
    overflow: hidden;
}

/* Background Pattern overlay */
.who-is-it::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(2, 44, 34, 0.4);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(52, 211, 153, 0.1);
    transition: transform 0.3s;
}

.check-item:hover {
    transform: translateX(5px);
    background: rgba(2, 44, 34, 0.6);
    border-color: rgba(52, 211, 153, 0.3);
}

.check-icon-box {
    background: rgba(52, 211, 153, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 800;
}

.check-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #fff;
}

.check-content p {
    color: #a7f3d0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   UPDATE: FLOATING CTA BADGE
   ========================================= */
.floating-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
    animation: pulse-subtle 1.5s infinite;
    white-space: nowrap;
}

/* Update Floating CTA to accomodate badge */
.floating-cta {
    overflow: visible;
    /* Allow badge to pop out */
}

@media (max-width: 480px) {
    .floating-badge {
        right: 50%;
        transform: translateX(50%);
        top: -18px;
    }
}