:root {
    /* Palette */
    --charcoal: #2A2A2A;
    --burgundy: #7A2A35;
    --gold: #C9A96E;
    --cream: #F8F4EF;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
.subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}


/* ----- COMPONENTS ----- */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(42, 42, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    /* Increased by 10% from 40px */
    width: auto;
    object-fit: contain;
}

/* Original text logo classes just in case it's used elsewhere, otherwise redundant but safe to keep */
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    /* #1a1a1a com 70% de opacidade */
    z-index: 1;
}

/* Radial Burgundy Gradient on the right */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(122, 42, 53, 0.4) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    padding: 60px 20px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.grid-about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: var(--white);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Hero Stats Stack */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.stat-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Floating WhatsApp WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1faf53;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* General Sections */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--cream);
    color: var(--charcoal);
}

.bg-burgundy {
    background-color: var(--burgundy);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.bg-light .section-header h2 {
    color: var(--burgundy);
}

.bg-light .subtitle {
    color: var(--charcoal);
}

/* Como Funciona Timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--gold);
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-step h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--burgundy);
}

.timeline-step p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mt-40 {
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

/* Seus Direitos Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.right-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.right-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
}

.right-card:hover::before {
    transform: scaleY(1);
}

.icon-gold {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.right-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.right-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Alert Box */
.alert-box {
    display: flex;
    gap: 20px;
    background-color: rgba(122, 42, 53, 0.1);
    border-left: 4px solid var(--burgundy);
    padding: 30px;
    border-radius: 4px;
    align-items: flex-start;
}

.alert-icon {
    color: var(--burgundy);
    font-size: 2rem;
}

.alert-content h4 {
    color: var(--burgundy);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.alert-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.alert-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {

    .grid-2-col,
    .grid-about {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Hide for mobile temporarily */
    }

    .timeline-container {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 25px;
        width: 2px;
        height: auto;
    }

    .timeline-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .timeline-number {
        margin: 0;
        flex-shrink: 0;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* Sobre a Dra Marcia */
.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.sobre-frame {
    position: relative;
    aspect-ratio: 3/4;
    background-color: var(--charcoal);
    border: 1px solid rgba(122, 42, 53, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-frame::before,
.sobre-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--burgundy);
    pointer-events: none;
}

.sobre-frame::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.sobre-frame::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.mb-monogram {
    font-family: var(--font-heading);
    font-size: 10rem;
    color: var(--gold);
    opacity: 0.15;
    font-weight: 700;
}

.badge-oab {
    position: absolute;
    bottom: 20px;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    border-left: 3px solid var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sobre-content h2 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.diferenciais-list {
    margin-top: 24px;
}

.diferenciais-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.diferenciais-list li::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--burgundy);
    display: inline-block;
}

/* Outras Areas */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.4);
}

.area-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.area-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.area-list li::before {
    content: 'done';
    font-family: 'Material Symbols Outlined';
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.area-list li:last-child {
    border-bottom: none;
}

/* Additional Responsive */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .sobre-frame {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-light .faq-item {
    border-color: rgba(42, 42, 42, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--burgundy);
}

.faq-icon::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon::before {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--burgundy) 0%, #4a1920 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-strip h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-strip p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.btn-white-burgundy {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--burgundy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white-burgundy:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 80px 0 30px;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 400px;
}

.footer h4 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-contact .material-symbols-outlined {
    color: var(--gold);
    font-size: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Final Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-strip h2 {
        font-size: 2rem;
    }
}