/* ==========================================================================
   ClonaFacil — Third Pass Navy Blue / Electric Blue / Cyan Identity System
   ========================================================================== */

:root {
    /* Color Tokens (Navy + Electric Blue + Cyan) */
    --bg-primary: #060812;
    --bg-secondary: #0B0E1D;
    --surface: #11162B;
    --surface-hover: #161C36;
    --bg-input: #0A0D1B;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --primary-blue: #0066FF;
    --btn-grad: linear-gradient(135deg, #0066FF 0%, #0047BA 100%);
    
    --cyan: #00F2FE;
    --cyan-light: #38BDF8;
    --magenta-accent: #E1306C;
    --insta-grad: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    
    --border: rgba(0, 102, 255, 0.2);
    --border-hover: rgba(0, 242, 254, 0.4);
    --glow-blue: rgba(0, 102, 255, 0.35);
    --glow-cyan: rgba(0, 242, 254, 0.2);

    /* Fonts & Radius */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

.cyan-text {
    color: var(--cyan);
    background: linear-gradient(90deg, #00F2FE 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Electric Blue Pill Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.15rem 2.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px var(--glow-blue);
}

.btn-primary {
    background: var(--btn-grad);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1A75FF 0%, #0056E6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

.btn-pill {
    border-radius: 999px;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 8, 18, 0.92);
}

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

.logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    width: 230px;
    height: auto;
    object-fit: contain;
    display: block;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--cyan);
    font-weight: 600;
}

.header-badge svg {
    width: 16px;
    height: 16px;
}

/* Hero Section (Desktop Two Columns with Product Image Mockup) */
.hero-section {
    position: relative;
    padding: 4.5rem 0 5rem;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(6, 8, 18, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1.6rem;
    letter-spacing: 0.02em;
    box-shadow: 0 0 12px var(--glow-cyan);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero CTA Row & Security Seal */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-cta {
    background: linear-gradient(135deg, #0066FF 0%, #00F2FE 100%);
    min-width: 310px;
    max-width: 340px;
    height: 68px;
    padding: 0 1.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4), 0 0 15px rgba(0, 242, 254, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 102, 255, 0.55), 0 0 20px rgba(0, 242, 254, 0.35);
    filter: brightness(1.06);
}

.cta-icon-left, .cta-icon-right {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-text {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.security-seal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.security-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.security-icon svg {
    width: 20px;
    height: 20px;
}

.security-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.25;
    color: #CBD5E1;
    font-weight: 500;
}

/* Compact Hero Social Proof Row (3 Avatars + Stars + Label) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #060812;
    margin-left: -10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proof-stars {
    color: #FBBF24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.proof-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Right Column Visual Product Image Mockup (.hero-visual) */
.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    max-width: 520px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px var(--glow-blue), 0 0 15px var(--glow-cyan);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 102, 255, 0.45);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Common Section Headers */
.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.cta-center-wrapper {
    margin-top: 3.5rem;
    text-align: center;
}

/* Testimonials CTA Button (Proportional Width) */
.testimonials-section .cta-center-wrapper .btn {
    width: auto;
    min-width: 300px;
    max-width: 440px;
    padding: 1.15rem 2.5rem;
}

/* Features Section (Navy Surfaces) */
.features-section {
    padding: 5.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 102, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Steps Section */
.steps-section {
    padding: 5.5rem 0;
    border-top: 1px solid var(--border);
}

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

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2.25rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #0066FF 0%, #00F2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Single-Column Vertical Testimonials Section (80px Avatars & 700px Max-Width Cards) */
.testimonials-section {
    padding: 5.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.testimonials-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.testimonial-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 0 16px var(--glow-blue);
    background: #0E1326;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.testimonial-avatar--larissa { object-position: center top; }
.testimonial-avatar--beatriz { object-position: center center; }
.testimonial-avatar--lucas { object-position: center top; }
.testimonial-avatar--rafael { object-position: center top; }
.testimonial-avatar--camila { object-position: center top; }

.testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-header {
    margin-bottom: 0.4rem;
}

.testimonial-identity {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.status-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--cyan);
    font-size: 0.75rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-left: 0.25rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Scaled FAQ Section */
.faq-section {
    padding: 5.5rem 0;
    border-top: 1px solid var(--border);
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.75rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
    padding: 0 1.75rem 1.35rem 1.75rem;
}

/* Large Centered Navy Offer Card Section (Surgically Refined) */
.urgency-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 242, 254, 0.08) 50%, rgba(6, 8, 18, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.offer-card {
    max-width: 840px;
    margin: 0 auto;
    background: radial-gradient(circle at 50% 90%, rgba(0, 242, 254, 0.12) 0%, rgba(0, 102, 255, 0.18) 45%, #0D1326 100%);
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: 20px;
    padding: 3.75rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.final-cta-btn-wrapper {
    margin-bottom: 1.25rem;
}

.btn-final-cta {
    background: linear-gradient(135deg, #0066FF 0%, #00F2FE 100%);
    min-width: 280px;
    max-width: 320px;
    height: 62px;
    padding: 0 2.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4), 0 0 15px rgba(0, 242, 254, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 102, 255, 0.55), 0 0 20px rgba(0, 242, 254, 0.35);
    filter: brightness(1.06);
}

.btn-final-cta svg {
    width: 20px;
    height: 20px;
}

.support-email a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.support-email a:hover {
    color: var(--cyan);
}

/* Footer (Surgically Refined Compact 3-Part Row) */
.footer {
    padding: 2.25rem 0;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    background: #04050A;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--cyan);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Media Queries */
@media (max-width: 960px) {
    .header-logo-img {
        width: 195px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.25rem;
    }

    .footer-logo-img {
        width: 140px;
        margin: 0 auto;
    }

    .footer-nav {
        justify-content: center;
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .header-logo-img {
        width: 165px;
    }

    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn-hero-cta {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        font-size: 1rem;
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.15rem;
        padding: 1.35rem 1.25rem;
    }

    .testimonial-avatar-wrapper,
    .testimonial-avatar {
        width: 64px;
        height: 64px;
    }
    
    .testimonials-section .cta-center-wrapper .btn {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        padding: 1rem 1.5rem;
    }

    .offer-title {
        font-size: 1.85rem;
    }
    
    .hero-visual {
        max-width: 100%;
    }

    .offer-card {
        padding: 2.25rem 1.5rem;
    }

    .btn-final-cta {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }

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