﻿:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --border-color: #333;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666;
    --primary: #e1306c;
    --primary-hover: #c13584;
    --success: #10b981;
    --gradient-instagram: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    --gradient-cta: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
    --gold-border: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --border-green: #22c55e;
    --border-yellow: #facc15;
    --glow-green: rgba(34, 197, 94, 0.45);
    --glow-yellow: rgba(250, 204, 21, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 5rem;
        right: 5rem;
        width: 500px;
        height: 500px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M 50 180 Q 80 100 150 50" stroke="%2310b981" stroke-width="8" fill="none" stroke-linecap="round"/><polygon points="145,35 165,55 140,55" fill="%2310b981"/></svg>');
        opacity: 0.2;
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-instagram);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

    .instagram-icon svg {
        width: 40px;
        height: 40px;
        fill: white;
    }

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

    .hero-subtitle span {
        font-weight: 600;
    }

    .hero-subtitle .text-primary {
        color: #ef4444;
    }

    .hero-subtitle .text-success {
        color: #22c55e;
    }

    .hero-subtitle .text-warning {
        color: #facc15;
    }

.hero-stats {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

    .hero-stats span {
        color: var(--primary);
        font-weight: 700;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================
   HERO BUTTONS (UPDATED)
========================= */
.btn-primary {
    min-height: 48px;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff1a1a, #ff0033);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.4), 0 0 25px rgba(255, 0, 0, 0.55), 0 10px 35px rgba(255, 0, 0, 0.45);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: scale(1.06);
}

/* BOTÕES SECUNDÁRIOS */
.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #facc15;
        transform: translateY(-2px);
    }

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: linear-gradient(135deg, #229ED9, #1B8FCB);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(34, 158, 217, 0.4), 0 10px 30px rgba(34, 158, 217, 0.45);
}

    .btn-whatsapp:hover {
        transform: scale(1.06);
        box-shadow: 0 15px 45px rgba(34, 158, 217, 0.6);
    }

.btn-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    width: 100%;
    height: 56px;
    font-size: 1rem;
    font-weight: 900;
    color: #000;
    background: linear-gradient(to right, #facc15, #f59e0b); /* yellow-400 → amber-500 */
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
    transition: all 0.3s ease;
}

/* Products Grid */
.products-section-title {
    margin: 5rem 0 2.5rem;
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    position: relative;
}

    .products-section-title::after {
        content: "";
        display: block;
        width: 140px;
        height: 4px;
        margin: 14px auto 0;
        border-radius: 999px;
        background: linear-gradient( 90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.6), rgba(255,255,255,0.15) );
    }

    .products-section-title.reels {
        text-shadow: 0 0 12px rgba(255, 0, 85, 0.45), 0 0 28px rgba(255, 0, 85, 0.25);
    }

        .products-section-title.reels::after {
            background: linear-gradient( 90deg, rgba(255, 0, 85, 0.15), rgba(255, 0, 85, 0.9), rgba(255, 0, 85, 0.15) );
        }


    .products-section-title.stories {
        text-shadow: 0 0 12px rgba(0, 200, 255, 0.45), 0 0 28px rgba(0, 200, 255, 0.25);
    }

        .products-section-title.stories::after {
            background: linear-gradient( 90deg, rgba(0, 200, 255, 0.15), rgba(0, 200, 255, 0.9), rgba(0, 200, 255, 0.15) );
        }


.products {
    padding: 2rem 1rem 5rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: flex;
    flex-wrap: wrap; /* permite quebrar linha */
    justify-content: center; /* centraliza os itens */
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
    margin-bottom: 50px;
}

.products-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

/* BASE */
.product-card {
    position: relative;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding-top: 3rem;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
}

    /* VERDE – cards ímpares */
    .product-card:nth-child(odd) {
        border-color: #22c55e;
        box-shadow: 0 0 18px rgba(34, 197, 94, 0.35), inset 0 0 0 1px rgba(34, 197, 94, 0.35);
    }

    /* AMARELO – cards pares */
    .product-card:nth-child(even) {
        border-color: #facc15;
        box-shadow: 0 0 18px rgba(250, 204, 21, 0.35), inset 0 0 0 1px rgba(250, 204, 21, 0.35);
    }
    /* HOVER VERDE */
    .product-card:nth-child(odd):hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--glow-green), inset 0 0 0 1px rgba(34, 197, 94, 0.6);
    }

    /* HOVER AMARELO */
    .product-card:nth-child(even):hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--glow-yellow), inset 0 0 0 1px rgba(250, 204, 21, 0.6);
    }

    .product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-card:nth-child(odd)::before {
        box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35);
    }

    .product-card:nth-child(even)::before {
        box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.35);
    }

    .product-card:hover::before {
        opacity: 1;
    }


    .product-card:hover {
        transform: scale(1.05);
    }

    .product-card:nth-child(odd):hover {
        box-shadow: 0 0 28px rgba(34, 197, 94, 0.55), inset 0 0 0 1px rgba(34, 197, 94, 0.6);
    }

    .product-card:nth-child(even):hover {
        box-shadow: 0 0 28px rgba(250, 204, 21, 0.55), inset 0 0 0 1px rgba(250, 204, 21, 0.6);
    }

    .product-card.active {
        transform: scale(1.06);
    }

    .product-card:nth-child(odd).active {
        box-shadow: 0 0 32px rgba(34, 197, 94, 0.6), inset 0 0 0 1px rgba(34, 197, 94, 0.7);
    }

    .product-card:nth-child(even).active {
        box-shadow: 0 0 32px rgba(250, 204, 21, 0.6), inset 0 0 0 1px rgba(250, 204, 21, 0.7);
    }

.product-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
    cursor: default;
    user-select: none;
    animation: badge-float 3s ease-in-out infinite;
}

.badge-flash {
    color: #000;
    background: linear-gradient( to right, #fde047, /* yellow-300 */
    #facc15, /* yellow-400 */
    #f59e0b /* amber-500 */
    );
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.badge-economic {
    background: #3b82f6;
    color: white;
}

.badge-recommended {
    background: #10b981;
    color: white;
}

.badge-top {
    background: #06b6d4;
    color: white;
}

.badge-special {
    background: #ec4899;
    color: white;
}

.badge-premium {
    background: #8b5cf6;
    color: white;
}

.badge-vip {
    background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
    color: white;
}

.badge-diamond {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
}

.badge-elite {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.badge-mega {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    color: white;
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient( to bottom right, #facc15, /* yellow-400 */
    #ec4899, /* pink-500 */
    #9333ea /* purple-600 */
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.25rem;
}

    .product-subtitle .icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

.product-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.price-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: orange;
}

.price-new {
    color: var(--success);
    font-weight: 600;
}

.product-sales {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
}

    .video-container video {
        width: 100%;
        aspect-ratio: 9/16;
        object-fit: cover;
    }

/* Sale Notification */
.sale-notification {
    position: fixed;
    left: 1.5rem;
    top: 5rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 260px;
    max-width: 320px;
    z-index: 100;
    display: none;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .sale-notification:not(.hiding) {
        animation: slideInSmooth 0.4s ease-out forwards;
        opacity: 1;
    }

    .sale-notification:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    }

/* Animação de entrada suave - DESKTOP */
@keyframes slideInSmooth {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação de saída suave - DESKTOP */
@keyframes slideOutSmooth {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.sale-notification.hiding {
    animation: slideOutSmooth 0.4s ease-in forwards;
}


/* Animação de entrada do topo - MOBILE */
@keyframes slideInFromTopSmooth {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animação de saída para o topo - MOBILE */
@keyframes slideOutToTopSmooth {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Resto do CSS */
.notification-content {
    display: flex;
    gap: 0.75rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text-muted), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Efeito de pulso no ícone */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Efeito de brilho no ícone */
.notification-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent, rgba(255, 255, 255, 0.1), transparent );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.notification-icon svg {
    position: relative;
    z-index: 1;
}

.notification-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.notification-action {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Barra de progresso */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success);
    transform-origin: left;
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

    .modal.active {
        display: flex;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .modal-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .modal-summary .price {
        font-size: 2rem;
        font-weight: 900;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
    }

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

    .price-row:last-child {
        margin-bottom: 0;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

.confirmation-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.confirmation-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    gap: 1rem;
}

    .button-group .btn {
        flex: 1;
    }

.qr-code-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qr-code-container img {
        width: 100%;
        max-width: 300px;
    }

.pix-code-group {
    margin-bottom: 1.5rem;
}

.pix-code-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.pix-code {
    flex: 1;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .copy-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

.payment-info {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.payment-success {
    color: var(--success);
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 14px;
}

.payment-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.9rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Support Button */
.support-btn {
    position: fixed;
    bottom: 1rem;
    right: 1.5rem;
    z-index: 100;
    background: #ef4444;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

    .support-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(239, 68, 68, 0.6);
    }

.support-text {
    text-align: left;
}

.support-title {
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.support-hours {
    font-size: 0.65rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Affiliate Button */
.affiliate-btn {
    position: fixed;
    bottom: 9rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.affiliate-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

.affiliate-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

    .affiliate-icon-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
    }

.product-card {
    padding: 2.5rem 1.5rem;
    padding-top: 3.25rem;
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-title {
    margin-bottom: 0.75rem;
}

.product-subtitle,
.product-viewers {
    margin-bottom: 1.25rem;
}

.product-price {
    margin-bottom: 1.75rem;
}

.btn-payment {
    margin-top: 0.5rem;
}

.product-card::after {
    content: "";
    display: block;
    height: 0.5rem;
}

.product-sales {
    margin-top: 1.25rem;
}

.price-main {
    line-height: 1.1;
}

.support-btn,
.affiliate-btn {
    right: 1rem;
}

/* FIX MODAL OVERFLOW */
.modal {
    align-items: center;
}

.modal-content {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

/* Badge "MAIS VENDIDO" */
.best-seller-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #ff4500;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.5);
}

.check-icon {
    font-size: 11px;
    font-weight: 900;
}

/* Offer box */
.offer-box {
    position: relative;
    background: rgba(30, 10, 10, 0.4);
    border: 2px dashed #ef4444;
    border-radius: 12px;
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
}

.offer-label {
    cursor: pointer;
    display: block;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Título com checkbox circular */
.offer-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.checkbox-circle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

    .checkbox-circle input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 2px solid #666;
        border-radius: 50%;
        background: transparent;
        position: relative;
    }

        .checkbox-circle input[type="checkbox"]:checked {
            background: #ef4444;
            border-color: #ef4444;
        }

            .checkbox-circle input[type="checkbox"]:checked::after {
                content: '✓';
                position: absolute;
                color: white;
                font-size: 14px;
                font-weight: bold;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

.offer-title-row svg {
    flex-shrink: 0;
    color: #ef4444;
}

.offer-title-text {
    color: #ef4444;
    font-weight: 700;
    font-size: 14px;
}

/* Texto principal */
.offer-main-line,
.offer-price-line {
    display: inline !important;
    margin: 0 !important;
}

.info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin: 8px 0 !important;
}

.info-col:nth-child(1) {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}

    .info-col:nth-child(1) .emoji-icon {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }

    .info-col:nth-child(1) .info-label {
        font-size: 0.65rem !important;
        color: #ffa500 !important;
    }

    .info-col:nth-child(1) .info-value {
        font-size: 0.875rem !important;
        color: #ffa500 !important;
        font-weight: 700 !important;
    }


.info-col:nth-child(2) {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 2px 4px !important;
    align-items: center !important;
}

    .info-col:nth-child(2) .emoji-icon {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important;
        font-size: 14px !important;
        align-self: center !important;
    }

    .info-col:nth-child(2) .info-value {
        grid-column: 2 !important;
        grid-row: 1 !important;
        font-size: 0.75rem !important;
        color: #fff !important;
    }

    .info-col:nth-child(2) .info-label {
        grid-column: 2 !important;
        grid-row: 2 !important;
        font-size: 0.65rem !important;
        color: #aaa !important;
    }

.stock-section {
    margin-top: 6px !important;
}

.stock-text {
    font-size: 0.65rem !important;
    color: #aaa !important;
    margin-bottom: 3px !important;
}

.stock-progress-container {
    height: 5px !important;
    background: #333 !important;
    border-radius: 10px !important;
    margin-bottom: 4px !important;
}

.stock-percentage,
.final-warning {
    display: inline-block !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.stock-percentage {
    color: #ef4444 !important;
    float: right !important;
}

.final-warning {
    color: #ffa500 !important;
    float: left !important;
}

.offer-content::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

.original-price-text {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}

.discount-badge-pink {
    background: #ef4444;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.emoji-icon {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 2px;
}

.info-label {
    font-size: 11px;
    color: #aaa;
    line-height: 1.2;
}

.info-value {
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    font-weight: 400;
}

    .info-value strong {
        font-size: 15px;
        font-weight: 700;
    }

.yellow-text {
    color: #ffa500 !important;
}

    .yellow-text.info-value {
        font-size: 16px;
        font-weight: 700;
    }


.stock-section {
    margin-top: 4px;
}

.stock-text {
    color: #aaa;
    font-size: 11px;
    margin-bottom: 4px;
}

.stock-progress-container {
    height: 6px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.stock-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff4500, #ef4444);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.stock-percentage {
    color: #ef4444;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

/* Aviso final */
.final-warning {
    color: #ffa500;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.public-profile-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

    .public-profile-notice span {
        color: #93c5fd;
        font-size: 13px;
        line-height: 1.4;
    }

.btn-continuar {
    position: relative;
    transition: opacity 0.2s ease;
}

    .btn-continuar.loading {
        pointer-events: none;
        opacity: 0.7;
    }

        /* Spinner */
        .btn-continuar.loading::after {
            content: "";
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.4);
            border-top-color: #fff;
            border-radius: 50%;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            animation: spin 0.8s linear infinite;
        }

@keyframes spin {
    to {
        transform: rotate(360deg) translateY(-50%);
    }
}

.terms-notice {
    margin-top: 16px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}

    .terms-notice a {
        color: #facc15;
        text-decoration: underline;
        cursor: pointer;
    }

/* TERMS MODAL */

.terms-content {
    background: #0f1115;
    color: #e5e7eb;
    width: 92%;
    max-width: 520px;
    max-height: 85vh;
    padding: 18px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-wrapper {
    font-size: 13.5px;
    line-height: 1.5;
}

.terms-title {
    font-size: 16px;
    font-weight: 600;
}

.terms-intro {
    color: #9ca3af;
}

.terms-legal-box {
    background: rgba(250, 204, 21, 0.06);
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 12px;
    padding: 12px;
}

.terms-legal-title {
    font-size: 13px;
    font-weight: 600;
    color: #facc15;
    margin-bottom: 8px;
}

.terms-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .terms-checklist li {
        display: grid;
        grid-template-columns: 16px 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }

        .terms-checklist li:last-child {
            margin-bottom: 0;
        }

    .terms-checklist .check {
        color: #22c55e;
        font-weight: 700;
        line-height: 1;
    }

.terms-footer {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}


.terms-close {
    margin-top: 4px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(to right, #facc15, #f59e0b);
    color: #000;
    font-weight: 700;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}


/* -------- 768PX MOBILE ------- */
@media (max-width: 768px) {

    .products-section-title {
        font-size: 1.9rem;
        margin: 4rem 0 2rem;
    }

        .products-section-title::after {
            width: 110px;
        }

    * {
        max-width: 100vw;
    }

    .hero::before {
        display: none;
    }

    .hero {
        padding: 2rem 0.5rem;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-hint {
        text-align: center !important;
    }

    .modal {
        padding: 0.75rem !important;
        align-items: center !important;
        padding-top: 0rem !important;
    }

    .modal-content {
        background: #1a1a1a !important;
        border-radius: 16px !important;
        padding: 1.25rem !important;
        max-width: 420px !important;
        width: 100% !important;
        max-height: calc(100vh - 4rem) !important;
        overflow-y: auto !important;
    }

    .modal-title {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        padding-right: 2rem !important;
    }

    .modal-summary {
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 0.75rem 1rem !important;
        border-radius: 10px !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }

        .modal-summary h3 {
            font-size: 1rem !important;
            margin-bottom: 0.25rem !important;
            font-weight: 600 !important;
        }

        .modal-summary .price {
            font-size: 1.5rem !important;
            font-weight: 900 !important;
            line-height: 1.2 !important;
        }

    .form-group {
        margin-bottom: 1rem !important;
    }

    .form-label {
        display: block !important;
        margin-bottom: 0.4rem !important;
        font-weight: 600 !important;
        font-size: 0.875rem !important;
    }

    .form-input {
        width: 100% !important;
        padding: 0.65rem 0.875rem !important;
        border-radius: 10px !important;
        border: 2px solid #333 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        color: white !important;
        font-size: 0.875rem !important;
    }

        .form-input:focus {
            outline: none !important;
            border-color: #ef4444 !important;
        }

    .offer-box {
        background: rgba(30, 10, 10, 0.4) !important;
        border: 2px dashed #ef4444 !important;
        border-radius: 10px !important;
        padding: 0.875rem 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .offer-content {
        gap: 6px !important;
    }

    .offer-title-row {
        gap: 6px !important;
        margin-bottom: 3px !important;
    }

    .offer-title-text {
        color: #ef4444 !important;
        font-weight: 700 !important;
        font-size: 0.8rem !important;
    }

    .offer-main-line {
        color: #fff !important;
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        line-height: 1.3 !important;
    }

    .offer-price-line {
        color: #ef4444 !important;
        font-weight: 700 !important;
        font-size: 1.125rem !important;
        line-height: 1 !important;
        margin-top: -2px !important;
    }

    .price-discount-line {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
        margin-top: 2px !important;
    }

    .info-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin: 6px 0 !important;
    }

    .info-col {
        display: flex !important;
        flex-direction: column !important;
        gap: 1px !important;
    }

    .emoji-icon {
        font-size: 14px !important;
        line-height: 1 !important;
        margin-bottom: 1px !important;
    }

    .info-label {
        font-size: 0.65rem !important;
        color: #aaa !important;
        line-height: 1.2 !important;
    }

    .info-value {
        font-size: 0.75rem !important;
        color: #fff !important;
        line-height: 1.2 !important;
        font-weight: 400 !important;
    }

        .info-value strong {
            font-size: 0.875rem !important;
            font-weight: 700 !important;
        }

    .yellow-text {
        color: #ffa500 !important;
    }

        .yellow-text.info-value {
            font-size: 0.875rem !important;
            font-weight: 700 !important;
        }

    .original-price-text {
        color: #999 !important;
        font-size: 0.75rem !important;
        text-decoration: line-through !important;
    }

    .discount-badge-pink {
        background: #ef4444 !important;
        color: #fff !important;
        padding: 2px 6px !important;
        border-radius: 10px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    .stock-section {
        margin-top: 3px !important;
    }

    .stock-text {
        color: #aaa !important;
        font-size: 0.65rem !important;
        margin-bottom: 3px !important;
    }

    .stock-progress-container {
        height: 5px !important;
        background: #333 !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        margin-bottom: 3px !important;
    }

    .stock-progress-bar {
        height: 100% !important;
        background: linear-gradient(90deg, #ff4500, #ef4444) !important;
        border-radius: 10px !important;
    }

    .stock-percentage {
        color: #ef4444 !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-align: right !important;
    }

    .final-warning {
        color: #ffa500 !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        margin-top: 3px !important;
    }

    .best-seller-badge {
        top: -10px !important;
        right: 12px !important;
        padding: 4px 10px !important;
        font-size: 0.625rem !important;
    }

    .products-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .terms-notice {
        padding: 0.2rem 1rem 1rem !important;
    }

    .product-card {
        padding: 3rem 1.5rem 2rem !important;
        border-radius: 20px !important;
    }

    .product-badge {
        top: -16px !important;
        font-size: 0.9rem !important;
        padding: 0.4rem 0.95rem !important;
        border-radius: 999px !important;
        gap: 0.3rem !important;
    }

    .product-icon {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto 1.25rem !important;
        border-radius: 16px !important;
    }

    .product-title {
        font-size: 1.75rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .product-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
        gap: 0.4rem !important;
    }

        .product-subtitle .icon {
            width: 14px !important;
            height: 14px !important;
        }

    .product-viewers {
        margin-bottom: 1.25rem !important;
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 20px !important;
    }

    .product-price {
        margin-bottom: 1.5rem !important;
    }

    .price-main {
        font-size: 3rem !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: -0.02em !important;
    }

    .price-details {
        font-size: 0.8rem !important;
        margin-top: 0.4rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .price-old {
        font-size: 0.875rem !important;
    }

    .price-new {
        font-size: 0.875rem !important;
    }

    .btn-payment {
        height: 56px !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
        border-radius: 12px !important;
        margin-bottom: 0 !important;
        margin-top: 0.01rem;
    }

    .product-sales {
        margin-top: 1.25rem !important;
        font-size: 0.75rem !important;
    }

        .product-sales svg {
            width: 16px !important;
            height: 16px !important;
        }

    .modal-close {
        top: 0.75rem !important;
        right: 0.75rem !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 1.25rem !important;
    }

    /* CHECKBOX CIRCULAR */
    .checkbox-circle {
        width: 18px !important;
        height: 18px !important;
    }

        .checkbox-circle input[type="checkbox"] {
            width: 18px !important;
            height: 18px !important;
        }

            .checkbox-circle input[type="checkbox"]:checked::after {
                font-size: 12px !important;
            }

    /* AJUSTES ESPECÍFICOS MOBILE 480px */
    @media (max-width: 480px) {
        .modal {
            padding: 2rem !important;
            padding-top: 0 !important;
        }

        .modal-content {
            padding: 1rem !important;
            border-radius: 14px !important;
            max-height: calc(100vh - 3rem) !important;
        }

        .modal-title {
            font-size: 1.125rem !important;
            margin-bottom: 0.65rem !important;
        }

        .modal-summary {
            padding: 0.65rem 0.875rem !important;
        }

            .modal-summary .price {
                font-size: 1.375rem !important;
            }

        .offer-box {
            padding: 0.75rem 0.65rem !important;
        }

        .public-profile-notice {
            font-size: 0.7rem !important;
            margin-top: 0.4rem !important;
            text-align: center !important;
        }

            .public-profile-notice span {
                font-size: 0.7rem !important;
            }

        .modal-content::-webkit-scrollbar {
            width: 6px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

            .modal-content::-webkit-scrollbar-thumb:hover {
                background: rgba(255, 255, 255, 0.3);
            }

        .product-card {
            padding: 2.75rem 1.25rem 1.75rem !important;
        }

        .product-title {
            font-size: 1.65rem !important;
        }

        .price-main {
            font-size: 2.75rem !important;
        }

        .offer-main-line {
            font-size: 0.8rem !important;
        }

        .offer-price-line {
            font-size: 1.05rem !important;
        }

        .info-col:nth-child(2) {
            gap: 1px 3px !important;
        }
    }
    /* -------- 769PX */
    @media (min-width: 769px) {
        .products-wrapper {
            padding-left: 2rem;
            padding-right: 2rem;
            padding-bottom: 1rem;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr); /* Tablet: 2 colunas */
            padding: 0;
            gap: 1.5rem;
        }
    }

    /* -------- 1200PX */
    @media (min-width: 1200px) {
        .products-wrapper {
            padding-left: 3rem;
            padding-right: 3rem;
            padding-bottom: 2rem;
            padding-top: 1.5rem;
        }

        .products-grid {
            grid-template-columns: repeat(4, 1fr); /* Desktop: 4 colunas */
            gap: 2rem;
            padding: 0;
        }
    }
