@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@500;700;800;900&display=swap');

:root {
    --primary: #047857; /* Emerald Darker */
    --accent: #fbbf24;  /* Amber/Gold */
    --accent-glow: rgba(251, 191, 36, 0.4);
    --bg-dark: #050505;
    --surface: rgba(255, 255, 255, 0.05); /* Glassmorphism surface */
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-hero: radial-gradient(circle at 10% 20%, rgba(6, 78, 59, 0.4) 0%, transparent 40%),
                     radial-gradient(circle at 90% 80%, rgba(20, 83, 45, 0.4) 0%, transparent 40%),
                     var(--bg-dark);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centraliza o texto */
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.tag {
    background: rgba(6, 78, 59, 0.3);
    color: #34d399;
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline-sub {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px; /* Adicionado margin auto para centralizar */
    font-weight: 300;
}

/* --- Glassmorphism Cards --- */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- CTA Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 22px 50px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px var(--accent-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px var(--accent-glow);
    background: #fcd34d;
}

/* --- Section Title --- */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* --- Notificação de Vendas (Social Proof) --- */
.sale-notification, .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s;
    max-width: 320px;
}

.sale-notification { transform: translateX(-150%); }
.cookie-banner { 
    left: 50%; 
    transform: translateX(-50%) translateY(150%); 
    max-width: 600px; 
    width: 90%; 
    justify-content: space-between; 
    flex-wrap: wrap;
}

.sale-notification.active { transform: translateX(0); }
.cookie-banner.active { transform: translateX(-50%) translateY(0); }

.btn-cookie {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
}

.cookie-text { font-size: 0.85rem; color: #cbd5e1; flex: 1; margin-right: 20px; }
.cookie-text a { color: var(--accent); text-decoration: none; }

.sale-icon {
    background: #22c55e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sale-content {
    font-size: 0.85rem;
}

.sale-content b {
    color: var(--accent);
    display: block;
}

.sale-content span {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* --- Modal Checkout --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ef4444;
}

.input-modern {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.input-modern:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.2);
}

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

.pulse {
    animation: pulse 1.5s infinite ease-in-out;
}
.pain-list {
    list-style: none;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background: rgba(239, 68, 68, 0.05);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

/* --- Mockup Floating --- */
.mockup-wrap {
    position: relative;
    max-width: 500px;
    margin: 60px auto;
}

.mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* --- Footer --- */
footer {
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .btn-primary { width: 100%; padding: 18px 30px; }
}

/* GSAP Helper */
.reveal { opacity: 0; transform: translateY(30px); }
