/* ROOT VARIABLES */
:root {
    --color-bg: #000000;
    --color-bg-alt: #0a0a0a;
    --color-surface: #111111;
    --color-surface-hover: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-gold: #C9A14A;
    --color-gold-hover: #DDB864;
    --color-blue: #0A1F44;
    
    --font-primary: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.text-gold {
    color: var(--color-gold) !important;
}

.text-gray {
    color: var(--color-text-muted) !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.text-center { text-align: center; }

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.bg-darker {
    background-color: var(--color-bg-alt);
}

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

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.logo-footer img {
    opacity: 0.5;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #a88435 100%);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-hover) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 161, 74, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(201, 161, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0); }
}

.btn-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    box-shadow: 0 10px 25px rgba(201, 161, 74, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-floating.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.btn-floating:hover {
    transform: translateY(-5px) scale(1.05);
}

/* HERO SECTION */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.glow-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10,31,68,0.4) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.glow-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,161,74,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 161, 74, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(201, 161, 74, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.mockup-img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(10,31,68,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.mockup-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header .title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* PAIN SECTION */
.pain-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.pain-reality {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-text);
    font-weight: 600;
}

.bullet-list .icon {
    margin-right: 1rem;
}

.alert-box {
    background: rgba(201, 161, 74, 0.05);
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.alert-box p {
    color: var(--color-text);
    font-size: 1.125rem;
}

/* SOLUTION SECTION */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: var(--color-surface-hover);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* OFFER SECTION */
.offer-container {
    display: flex;
    justify-content: center;
}

.offer-box {
    background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg) 100%);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 161, 74, 0.2);
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-text);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    margin-right: 1rem;
    flex-shrink: 0;
}

.disclaimer {
    font-style: italic;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* QUALIFICATION SECTION */
.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-list li {
    background: var(--color-surface);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* FORM SECTION */
.form-container {
    max-width: 600px;
}

.form-wrapper {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header .title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.1);
}

/* FOOTER */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--color-bg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-footer {
    margin-bottom: 1.5rem;
}

/* NEW SECTIONS STYLES */
.scarcity-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4d4d;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.btn-hero {
    font-size: 1.25rem;
    padding: 1.5rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-bg);
}
.btn-hero:hover {
    background: var(--color-gold-hover);
}

.trusted-by {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--color-bg-alt);
    text-align: center;
}

.trusted-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.mock-logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: sans-serif;
    letter-spacing: -1px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metric-card {
    background: var(--color-surface);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.text-blue-glow {
    color: #4da6ff;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.metric-label {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.testim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testim-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 161, 74, 0.2);
    position: relative;
}

.testim-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(201, 161, 74, 0.2);
    font-family: serif;
}

.testim-text {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testim-author strong {
    display: block;
    color: var(--color-gold);
    font-size: 1.125rem;
}

.testim-author span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
    border: 1px dashed rgba(255,255,255,0.2);
}

.scarcity-text {
    color: #ff4d4d;
    font-size: 0.95rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-whatsapp.visible:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-submit {
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 1.125rem;
    padding: 1.25rem;
}
.btn-submit:hover {
    background: var(--color-gold-hover);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .logo img {
        width: 120px;
    }

    .headline {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }

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

    .offer-box, .form-wrapper {
        padding: 2rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        max-width: 50px;
        max-height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}
