/*
 * Landing Page: Criação de Sites RJ
 * EA Design Studio — hello-elementor-child
 * Upgrade Visual: UI/UX Pro Max (Wow Design - Sem Roxo)
 */

:root {
    --color-primary: #00E5C0; /* Verde-Neon / Cian */
    --color-secondary: #00b4d8;
    --color-background: #020606; /* Fundo extremamente escuro com leve tom esmeralda */
    --color-surface: #070e0e; /* Cartões e blocos internos */
    --color-text-main: #e2f0ed;
    --color-text-muted: #8ba29f;
    
    --font-display: "Outfit", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "Space Mono", monospace;

    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(7, 14, 14, 0.45);
    --glass-border: rgba(0, 229, 192, 0.1);
    --glass-border-hover: rgba(0, 229, 192, 0.4);

    --shadow-neon: 0 0 25px rgba(0, 229, 192, 0.2), 0 0 50px rgba(0, 229, 192, 0.05);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Textura sutil de ruído analógico */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

.rj-landing {
    position: relative;
    z-index: 1;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}
.glow-1 {
    top: -5%; left: -10%;
    width: 600px; height: 600px;
    background: var(--color-primary);
    opacity: 0.12;
}
.glow-2 {
    top: 45%; right: -15%;
    width: 500px; height: 500px;
    background: var(--color-secondary);
    opacity: 0.08;
}
.glow-3 {
    bottom: 10%; left: -10%;
    width: 600px; height: 600px;
    background: var(--color-primary);
    opacity: 0.08;
}

/* Typography base */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
    font-weight: 800;
    color: var(--color-white) !important;
}
.text-primary-color {
    color: var(--color-primary) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    display: inline !important;
}

.tag-mono {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    display: block;
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 700px;
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
}
.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
section {
    padding: 140px 0;
    position: relative;
}
.text-center {
    text-align: center;
}

/* UI Components (Buttons / Premium Glass) */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    background: linear-gradient(135deg, rgba(0, 229, 192, 0.1), rgba(0, 229, 192, 0.02));
    border: 1px solid rgba(0, 229, 192, 0.4);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.6s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Glassmorphic border radiance cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
    overflow: hidden;
    position: relative;
}
.glass-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(0, 229, 192, 0.2), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s var(--transition-smooth);
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}
.glass-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 229, 192, 0.6), rgba(0, 180, 216, 0.1));
}

/* 1. HERO SECTION */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(2, 6, 6, 0.8), rgba(2, 6, 6, 0.98)), url('/wp-content/themes/hello-elementor-child/assets/images/hero-bg-profissional.webp?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    line-height: 0.98;
    font-weight: 900;
    margin-bottom: 24px;
}
.hero p {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* 2. O PROBLEMA */
.problem-section h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.problem-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.problem-icon {
    color: #ff3366; /* Rosa/vermelho apenas para o aviso do problema */
    margin-bottom: 24px;
    background: rgba(255, 51, 102, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 51, 102, 0.15);
}
.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.problem-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.65;
}

/* 3. A SOLUÇÃO */
.solution-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 192, 0.02) 50%, transparent);
}
.solution-header h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.stat-card {
    background: rgba(7, 14, 14, 0.3);
    border: 1px solid rgba(0, 229, 192, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* 4. BENTO GRID (BENEFÍCIOS) */
.bento-section h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin-bottom: 60px;
    line-height: 1;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 30px;
}
.bento-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-card:not(.has-bg) {
    padding: 50px 40px;
}
.bento-card.has-bg {
    position: relative;
    overflow: hidden;
}
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.25;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.bento-card.has-bg:hover .card-bg-image {
    transform: scale(1.05);
    opacity: 0.4;
}
.card-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(2, 6, 6, 0.95) 0%, rgba(2, 6, 6, 0.4) 60%, transparent 100%);
}
.bento-icon {
    position: absolute;
    top: 50px;
    right: 40px;
    color: var(--color-primary);
}
.bento-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.bento-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.65;
}
.bento-1 { grid-column: span 2; grid-row: span 2; }
.bento-2 { grid-column: span 2; grid-row: span 1; }
.bento-3 { grid-column: span 1; grid-row: span 1; }
.bento-4 { grid-column: span 1; grid-row: span 1; }

/* 5. PROVA SOCIAL */
.social-proof-section h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rating-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 24px;
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text-main);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
}
.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}
.author-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}
.author-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* 6. BÔNUS */
.bonus-section h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bonus-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.bonus-badge {
    background: rgba(0, 229, 192, 0.08);
    border: 1px solid rgba(0, 229, 192, 0.15);
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 24px;
}
.bonus-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.bonus-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.bonus-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}
.value-original {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.value-free {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
}

/* 7. DÚVIDAS FREQUENTES (FAQ) */
.faq-section h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1;
    margin-bottom: 60px;
}
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
details[open] {
    background: rgba(7, 14, 14, 0.6);
    border-color: rgba(0, 229, 192, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
summary {
    padding: 30px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    outline: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: "+";
    color: var(--color-primary);
    font-size: 1.75rem;
    font-family: var(--font-mono);
    transition: transform 0.3s ease;
}
details[open] summary::after {
    content: "-";
}
.faq-content {
    padding: 0 30px 30px;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

/* 8. CTA FINAL */
.final-cta {
    padding-bottom: 160px;
}
.cta-glass-card {
    padding: 90px 50px;
    text-align: center;
    border-radius: 36px;
}
.cta-glass-card h2 {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    margin-bottom: 24px;
    line-height: 1;
}
.cta-glass-card p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Acessibilidade */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Formulário de Leads */
.ead-form-container {
    background: rgba(2, 5, 5, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.ead-lead-form .form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.ead-lead-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.ead-lead-form .form-row .form-group {
    margin-bottom: 0;
}
.ead-lead-form label {
    font-size: 0.9rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ead-lead-form input,
.ead-lead-form select {
    background: rgba(2, 5, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
}
.ead-lead-form input:focus,
.ead-lead-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 229, 192, 0.2);
    background: #020606;
}
.ead-lead-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1em;
}
.ead-lead-form select option {
    background-color: #020606;
    color: #fff;
}

/* Responsividade */
@media (max-width: 992px) {
    .problem-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(240px, auto);
    }
    .bento-1, .bento-2 { grid-column: span 2; }
    .bento-3, .bento-4 { grid-column: span 1; }
}

@media (max-width: 768px) {
    section {
        padding: 90px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ead-lead-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .ead-form-container {
        padding: 30px 20px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: span 1; grid-row: auto; }
}
