:root {
    --primary-red: #D30000;
    --primary-green: #00FF00; /* Neon green */
    --cta-green: #00D300;
    --text-white: #ffffff;
    --bg-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
}

.headerbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 16px 0;
    background: transparent;
}

.headerbar-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Helper Classes */
.highlight-red {
    background-color: var(--primary-red);
    color: white;
    padding: 0 5px;
    display: inline-block; /* Ensure background wraps tightly */
    line-height: 1.2;
}

.highlight-green {
    color: var(--primary-green);
    font-weight: 700;
}

.bold {
         outline: none;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh; /* Reduced height to match reference */
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1; /* Fundo + imagem ficam abaixo do texto */
    background-image: url('imagens/slider-desktop.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
         outline: none;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000 10%, rgba(0,0,0,0) 60%); /* Mascara preta inferior */
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero {
        background-position: center top;
        min-height: auto;
        padding-top: 0;
    }

    .hero-bg {
        background-image: url('imagens/slider-mobile.avif');
        background-position: center top;
    }
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: static; /* Allow absolute children to reference .hero */
    z-index: 4; /* Acima das máscaras */
    height: 100%; /* Pass height down */
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    z-index: 5; /* Ensure text is above image */
    position: relative;
    max-width: 600px; /* Limit text width so it doesn't overlap image too much if not intended, but allows overlap if image is huge */
}

.hero-text h1 {
    margin-bottom: 14px;
    line-height: 1.15;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.instagram-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}


.instagram-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.instagram-handle {
    font-weight: 800;
}

.hero-subtitle {
    margin-top: 6px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Mais espaço entre os blocos */
    margin-top: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon {
    width: 18px;
    height: 18px;
    padding: 0;
    background-color: transparent;
    object-fit: contain;
}

/* ... existing code ... */

/* User asked for custom image for woman with fire emojis */
.hero-image {
    position: absolute;
    bottom: 0;
    right: max(20px, calc(50% - 580px)); /* Mesmo espaçamento lateral do container */
    height: 90%; /* Slightly shorter to match reference */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align to bottom */
    align-items: center;
    z-index: auto; /* Deixa automático para permitir intercalar (Imagem < Máscara < Texto) */
}

.image-wrapper {
    position: relative;
    display: block;
    height: 100%;
    width: auto;
}

.raje-photo {
    height: 100%; /* Fill the height */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Or cover depending on need, contain ensures full woman is seen */
    display: block;
}

.fire-emojis {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.fire-emoji {
    position: absolute;
    font-size: 5.5rem;
    filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.7));
}

.fire-emoji.fire-left {
    top: 58%;
    left: 52%;
    transform: rotate(-18deg);
}

.fire-emoji.fire-right {
    top: 20%;
    left: 70%;
    transform: rotate(22deg);
}

.hero-caption {
    position: absolute;
    bottom: 100px; /* Margem inferior para subir o texto */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajuste fino da centralização */
    width: 100%; 
    text-align: center; /* Centraliza o texto */
    text-shadow: 1px 1px 3px black;
    z-index: 100; /* Z-index altíssimo para garantir que fique sobre a máscara */
}


.hero-caption h3 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-caption p {
    font-size: 1.4rem; /* Reduzido para caber melhor */
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Video & Offer Section */
.video-offer {
    text-align: center;
    padding: 40px 0;
    background-color: #000; /* Ensure black bg */
}

.online-counter {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.pulse {
    color: var(--primary-green);
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes pulse-green-strong {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); }
    70% { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(0, 255, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255,0,0,0.2); /* Subtle red glow */
    aspect-ratio: 16 / 9;
}

video {
    width: 100%;
    height: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    background-image: url('imagens/capa.avif');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity 0.3s;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    transition: transform 0.2s;
    animation: pulse-red 1.6s infinite;
    border-radius: 50%;
}

.play-btn:hover {
    transform: scale(1.1);
}

.offer-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ff0000;
    margin-bottom: 5px;
    position: relative;
}

/* Red line through old price specifically styled if needed */
.old-price::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 2px;
    background: red;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.new-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    line-height: 1;
    color: #fff;
}

.price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 4px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
}

.price-cents {
    font-size: 1.6rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #000; /* Dark text on green button usually */
    font-weight: 800;
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 5px; /* Slightly rounded */
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
    animation: pulse-green-strong 1.3s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6);
}

.sales-counter {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 10px;
}

/* Footer Section */
.trust-footer {
    background-image: url('imagens/slider-2.avif');
    background-size: cover;
    background-position: center;
    padding: 60px 0 20px;
    position: relative;
}

/* Dark overlay for readability over slider-2 */
.trust-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8); /* Adjust opacity depending on the image */
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items to top/center as appropriate */
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-photo-wrapper {
    position: relative;
    max-width: 320px;
    margin-bottom: 10px;
}

.footer-photo {
    width: 100%;
    height: auto;
    display: block;
}

.footer-photo-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.footer-logos-left img {
    max-width: 260px;
    height: auto;
}

.center-col p {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.payment-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.payment-logos img {
    height: 40px;
    width: auto;
}

.logo-hotmart {
    height: 58px !important;
}

.logo-ticto {
    height: 40px !important;
}

.help-btn {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: background 0.3s;
}

.help-btn:hover {
    background: #fff;
    color: #000;
}

.action-photo {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 10px;
}

.copyright-bar {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.7rem;
    color: #888;
}

.copyright-bar p {
    margin-bottom: 5px;
}

.mobile-only {
    display: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 84px;
        padding-bottom: 360px;
        padding-top: 35px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .headerbar {
        padding: 10px 0;
    }

    .headerbar-content {
        justify-content: center;
    }

    .instagram-follow {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 8px;
        margin-bottom: 24px;
        font-size: 0.9rem;
    }

    .hero {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 0;
    }

    .hero-bg::after {
        background: none;
    }

    .hero-image {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 0;
        height: 52%;
        width: auto;
        margin-top: 0;
        z-index: 2;
    }

    .image-wrapper {
        height: 100%;
        width: auto;
        display: block;
        overflow: hidden;
    }

    .image-wrapper::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45%;
        background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0) 80%);
        z-index: 3;
        pointer-events: none;
    }

    .raje-photo {
        width: auto;
        height: 100%;
        margin: 0 auto;
        display: block;
        margin: -1px auto 0;
    }

    .hero-caption {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
        width: 100%;
        padding: 0 10px;
        z-index: 5;
    }

    .hero-caption h3 {
        font-size: 1.8rem;
    }

    .hero-caption p {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefits {
        align-items: center;
        margin-bottom: 78px;
    }
    
    .hero-image {
        flex: auto;
    }

    .mobile-only {
        display: block;
    }
    
    .video-overlay {
        display: flex;
        background-image: url('imagens/capa.avif');
        background-size: cover;
        background-position: center;
    }

    .play-btn {
        width: 64px;
        height: 64px;
    }

    .video-offer {
        padding-top: 80px;
    }

    .online-counter {
        font-size: 1.15rem;
    }

    .sales-counter {
        font-size: 1.05rem;
    }

    .online-line,
    .sales-line {
        display: block;
        line-height: 1.2;
    }

    .online-first {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .price-container .new-price {
        font-size: 3rem;
    }
    
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-footer {
        text-align: center;
        padding-top: 80px;
    }

    .footer-col.left-col {
        order: 1;
    }

    .footer-col.left-col .footer-logos-left {
        order: 2;
    }

    .footer-col.right-col {
        order: 3;
        width: 100%;
        align-items: stretch;
    }

    .footer-col.center-col {
        order: 4;
    }

    .footer-col {
        width: 100%;
    }

    .footer-photo-wrapper,
    .footer-logos-left,
    .action-photo {
        width: 100%;
        max-width: 100%;
    }

    .footer-logos-left img,
    .action-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .action-photo {
        max-height: none;
    }

    .footer-photo-wrapper::after {
        height: 35%;
        bottom: -2px;
    }

    .offer-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .offer-title .offer-line {
        display: block;
    }
}
