/* =====================================================
   LANDING PAGES — CSS COMPARTILHADO
   Letícia Barros | Advocacia e Consultoria Jurídica
   ===================================================== */

:root {
    --fundo-escuro: #231E1A;
    --fundo-alt: #2E2720;
    --fundo-card: #352E26;
    --fundo-light: #3A3228;
    --dourado: #C9A962;
    --dourado-light: #D4BC7D;
    --dourado-dark: #B8943F;
    --areia: #E8DED1;
    --areia-light: #F2EBE0;
    --cafe: #3D2B1F;
    --branco: #FAF6F0;
    --branco-puro: #FFFFFF;
    --verde-wa: #25D366;
    --dourado-glow: rgba(201,169,98,0.15);
    --dourado-glow-md: rgba(201,169,98,0.25);
    --dourado-glow-strong: rgba(201,169,98,0.4);
    --gradient-gold: linear-gradient(135deg, var(--dourado), var(--dourado-light));
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --transition-fast: all 0.25s ease;
    --shadow-card: 0 8px 40px rgba(0,0,0,0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--fundo-escuro);
    color: var(--areia);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600; line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
::selection { background: var(--dourado); color: var(--fundo-escuro); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.gold-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    opacity: 0.25;
}

.highlight { color: var(--dourado); }

/* ========== HEADER LP ========== */
.lp-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 14px 0; background: rgba(35,30,26,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,169,98,0.08);
}
.lp-header .container {
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(201,169,98,0.3); object-fit: cover;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--dourado); letter-spacing: 0.5px;
}
.logo-text .subtitle {
    font-size: 0.58rem; color: var(--dourado-light);
    letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.6;
}

.header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--verde-wa); color: white;
    padding: 10px 20px; border-radius: 6px;
    font-size: 0.78rem; font-weight: 600;
    border: none; cursor: pointer; transition: var(--transition);
}
.header-cta:hover { background: #20bd5a; transform: translateY(-1px); }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-gold); color: var(--fundo-escuro);
    padding: 18px 36px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: var(--transition); border: none; cursor: pointer;
    position: relative; 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.25), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,98,0.35);
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--verde-wa); color: white;
    padding: 18px 36px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.5px; border: none; cursor: pointer;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #20bd5a; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(201,169,98,0.25); color: var(--dourado);
    padding: 16px 28px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 500;
    background: transparent; transition: var(--transition); cursor: pointer;
}
.btn-outline:hover {
    background: var(--dourado-glow); border-color: var(--dourado);
    transform: translateY(-2px);
}

/* ========== LP HERO ========== */
.lp-hero {
    padding: 140px 0 80px;
    position: relative; overflow: hidden;
}
.lp-hero::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,169,98,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-hero .container {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center;
}

.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dourado-glow);
    border: 1px solid rgba(201,169,98,0.15);
    padding: 8px 18px; border-radius: 30px;
    font-size: 0.7rem; color: var(--dourado-light);
    margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.lp-hero-badge .dot {
    width: 6px; height: 6px; background: var(--dourado);
    border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.lp-hero h1 {
    font-size: 2.8rem; color: var(--branco);
    margin-bottom: 16px;
}
.lp-hero .sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-style: italic;
    color: var(--dourado-light); margin-bottom: 20px;
}
.lp-hero .desc {
    font-size: 0.95rem; color: var(--areia-light);
    opacity: 0.8; margin-bottom: 32px; line-height: 1.8;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
    display: flex; align-items: center; gap: 16px;
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid rgba(201,169,98,0.1);
    flex-wrap: wrap;
}
.hero-trust .stars { color: var(--dourado); font-size: 0.8rem; letter-spacing: 2px; }
.hero-trust .info { font-size: 0.75rem; color: var(--areia); opacity: 0.6; }
.hero-trust .info strong { color: var(--dourado-light); }
.hero-trust .sep { width: 1px; height: 24px; background: rgba(201,169,98,0.15); }

.lp-hero-img {
    display: flex; justify-content: center; position: relative;
}
.lp-hero-img img {
    width: 100%; max-width: 420px; border-radius: var(--radius-lg);
    border: 1px solid rgba(201,169,98,0.1);
}
.img-fallback {
    width: 100%; max-width: 420px; aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--fundo-card) 0%, var(--cafe) 50%, var(--fundo-alt) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,169,98,0.1);
}
.img-fallback .initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 700;
    color: var(--dourado); opacity: 0.25;
    width: 100px; height: 100px; border-radius: 50%;
    border: 2px solid rgba(201,169,98,0.12);
    display: flex; align-items: center; justify-content: center;
}
.img-fallback span {
    font-size: 0.72rem; color: var(--dourado-light);
    opacity: 0.3; text-align: center; padding: 0 20px;
}

/* ========== SECTION HEADER ========== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block; font-size: 0.68rem;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--dourado); margin-bottom: 14px;
    position: relative; padding: 0 50px;
}
.section-tag::before, .section-tag::after {
    content: ''; position: absolute; top: 50%;
    width: 30px; height: 1px; background: var(--dourado); opacity: 0.3;
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-header h2 {
    font-size: 2.4rem; color: var(--branco); margin-bottom: 14px;
}
.section-header p {
    font-size: 0.95rem; color: var(--areia); opacity: 0.7;
    max-width: 520px; margin: 0 auto;
}

/* ========== CHECKLIST (Identificação) ========== */
.checklist-section { padding: 80px 0; background: var(--fundo-alt); }

.checklist-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; max-width: 800px; margin: 0 auto;
}
.check-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--fundo-card);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-md); padding: 20px;
    transition: var(--transition); cursor: default;
}
.check-item:hover {
    border-color: rgba(201,169,98,0.15);
    transform: translateX(4px);
}
.check-box {
    width: 24px; height: 24px; flex-shrink: 0;
    border: 2px solid var(--dourado); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado); font-size: 0.65rem;
    margin-top: 2px; transition: var(--transition);
}
.check-item:hover .check-box {
    background: var(--dourado-glow-md);
}
.check-item p {
    font-size: 0.88rem; color: var(--areia-light); opacity: 0.85;
    line-height: 1.6;
}

.checklist-cta {
    text-align: center; margin-top: 36px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-style: italic;
    color: var(--dourado-light);
}

/* ========== DIREITOS / BENEFÍCIOS ========== */
.rights-section { padding: 80px 0; }

.rights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.right-card {
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; transition: var(--transition);
}
.right-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,98,0.15);
    box-shadow: var(--shadow-card);
}
.right-icon {
    width: 56px; height: 56px;
    background: var(--dourado-glow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--dourado); font-size: 1.3rem;
    transition: var(--transition);
}
.right-card:hover .right-icon {
    background: var(--dourado-glow-strong); transform: scale(1.08);
}
.right-card h3 {
    font-size: 1.2rem; color: var(--branco); margin-bottom: 8px;
}
.right-card p {
    font-size: 0.82rem; color: var(--areia-light); opacity: 0.75;
    line-height: 1.6;
}

/* ========== PROCESSO 3 PASSOS ========== */
.process-section { padding: 80px 0; background: var(--fundo-alt); }

.process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 45px;
    left: 16%; width: 68%; height: 1px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-light), var(--dourado));
    opacity: 0.15;
}
.process-step { text-align: center; }
.step-num {
    width: 90px; height: 90px;
    border: 2px solid rgba(201,169,98,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; color: var(--dourado);
    background: var(--fundo-alt);
    position: relative; z-index: 2; transition: var(--transition);
}
.process-step:hover .step-num {
    background: var(--dourado-glow);
    border-color: var(--dourado);
    transform: scale(1.05);
}
.process-step h3 { font-size: 1.3rem; color: var(--branco); margin-bottom: 10px; }
.process-step p {
    font-size: 0.85rem; color: var(--areia-light); opacity: 0.75;
    line-height: 1.7; max-width: 280px; margin: 0 auto;
}

/* ========== MINI BIO ========== */
.bio-section { padding: 80px 0; }

.bio-card {
    display: grid; grid-template-columns: auto 1fr;
    gap: 36px; align-items: center;
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-lg); padding: 40px;
    max-width: 800px; margin: 0 auto;
}
.bio-photo {
    width: 140px; height: 140px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,169,98,0.2);
}
.bio-photo-fallback {
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--dourado-glow);
    border: 2px solid rgba(201,169,98,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 700; color: var(--dourado);
    opacity: 0.5;
}
.bio-content h3 { font-size: 1.5rem; color: var(--branco); margin-bottom: 4px; }
.bio-content .bio-oab {
    font-size: 0.75rem; color: var(--dourado); margin-bottom: 12px;
    letter-spacing: 1px;
}
.bio-content p {
    font-size: 0.88rem; color: var(--areia-light); opacity: 0.8;
    line-height: 1.8; margin-bottom: 16px;
}
.bio-credentials {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.bio-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--dourado-glow);
    border: 1px solid rgba(201,169,98,0.1);
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.72rem; color: var(--dourado-light);
}

/* ========== FAQ ========== */
.faq-section { padding: 80px 0; background: var(--fundo-alt); }

.faq-list {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: var(--fundo-card);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-md);
    overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,169,98,0.15); }

.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer;
    font-size: 0.92rem; font-weight: 500; color: var(--branco);
    gap: 16px; transition: var(--transition);
    background: none; border: none; width: 100%; text-align: left;
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--dourado); }
.faq-question i {
    color: var(--dourado); font-size: 0.75rem;
    transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.85rem; color: var(--areia-light); opacity: 0.8;
    line-height: 1.8;
}

/* ========== CTA FINAL ========== */
.cta-section { padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,98,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box {
    text-align: center; position: relative; z-index: 2;
    max-width: 620px; margin: 0 auto;
}
.cta-box h2 { font-size: 2.4rem; color: var(--branco); margin-bottom: 14px; }
.cta-box p {
    font-size: 1rem; color: var(--areia-light); opacity: 0.8;
    margin-bottom: 28px; line-height: 1.8;
}
.cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-urgency {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,169,98,0.06);
    border: 1px solid rgba(201,169,98,0.1);
    padding: 10px 20px; border-radius: var(--radius-sm);
    margin-top: 20px; font-size: 0.78rem; color: var(--dourado-light);
}

/* ========== FORM SECTION ========== */
.form-section { padding: 80px 0; background: var(--fundo-alt); }

.form-wrapper {
    background: var(--fundo-escuro);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-lg); padding: 44px;
    max-width: 600px; margin: 0 auto;
}
.form-wrapper h3 { font-size: 1.5rem; color: var(--branco); margin-bottom: 6px; text-align: center; }
.form-wrapper > p {
    font-size: 0.82rem; color: var(--areia); opacity: 0.6;
    margin-bottom: 28px; text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 500;
    color: var(--areia); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 16px;
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-sm);
    color: var(--branco); font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--areia); opacity: 0.3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 3px rgba(201,169,98,0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--fundo-alt); color: var(--branco); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-lgpd {
    font-size: 0.7rem; color: var(--areia); opacity: 0.4;
    margin-top: 12px; display: flex; align-items: center;
    justify-content: center; gap: 6px;
}
.form-lgpd i { color: var(--dourado); opacity: 0.5; }

/* ========== FOOTER LP ========== */
.lp-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(201,169,98,0.06);
    text-align: center;
}
.lp-footer .logo { justify-content: center; margin-bottom: 16px; }
.lp-footer p {
    font-size: 0.72rem; color: var(--areia); opacity: 0.35;
    margin-bottom: 4px;
}
.lp-footer a { color: var(--dourado); opacity: 0.5; }
.lp-footer a:hover { opacity: 1; }
.footer-links-inline {
    display: flex; justify-content: center; gap: 16px;
    margin-top: 12px; flex-wrap: wrap;
}
.footer-links-inline a {
    font-size: 0.75rem; color: var(--areia); opacity: 0.4;
}
.footer-links-inline a:hover { color: var(--dourado); opacity: 1; }

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: var(--verde-wa);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 1.5rem;
    z-index: 999; border: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    animation: wa-pulse 2s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.15), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .lp-hero .container { grid-template-columns: 1fr; text-align: center; gap: 36px; }
    .lp-hero-img { order: -1; }
    .lp-hero-img img, .img-fallback { max-width: 320px; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .checklist-grid { grid-template-columns: 1fr; }
    .rights-grid { grid-template-columns: repeat(2, 1fr); }
    .bio-card { grid-template-columns: 1fr; text-align: center; }
    .bio-photo, .bio-photo-fallback { margin: 0 auto; }
    .bio-credentials { justify-content: center; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .lp-hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-trust .sep { display: none; }
    .rights-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-grid::before { display: none; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .form-wrapper { padding: 28px 20px; }
    .header-cta span { display: none; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .lp-hero h1 { font-size: 1.9rem; }
    .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
}
