/* ==========================================================================
   DESIGN SYSTEM & FOUNDATION
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-navy: #152139;
    --color-bg-light: #e6e6e6;
    --color-bg-light-alt: #F0EEEA;
    --color-gold: #a48451;
    --color-gold-dark: #9b783a;
    --color-text-dark: #1c283c;
    --color-text-muted-dark: #555555;
    --color-text-light: #ffffff;
    --color-text-muted-light: #ccd6f6;
    --color-border-gold: rgba(164, 132, 81, 0.3);

    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --header-height: 90px;
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Utility Section Styles */
.section-tag {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 40px;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
}

.white-title {
    color: var(--color-text-light);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--color-gold-dark);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 0;
    /* Premium sharp edges */
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(164, 132, 81, 0.25);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* ==========================================================================
   HEADER / STICKY NAVBAR
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* Scrolled Header State */
.main-header.scrolled {
    background-color: var(--color-bg-navy);
    height: 75px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(164, 132, 81, 0.15);
}

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

.logo-link {
    display: block;
}

.logo-img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 32px;
}

/* Navigation List */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

/* Entrance Animations */
@keyframes cinematicRevealUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cinematicRevealRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(164, 132, 81, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(164, 132, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(164, 132, 81, 0);
    }
}

@keyframes scrollMouseWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 8px);
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

@keyframes scrollIndicatorFade {
    0% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, 0);
    }
}

.hero-section {
    position: relative;
    background-color: var(--color-bg-navy);
    background-image: url('img/salaReuniao.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    z-index: 1;
}

/* Interactive Spotlight glow element */
.hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 600px at var(--mouse-x, 30%) var(--mouse-y, 40%), rgba(164, 132, 81, 0.08) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.15s ease-out;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
}

.hero-tag {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: cinematicRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: cinematicRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-title span {
    font-style: italic;
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(164, 132, 81, 0.3);
}

.hero-text {
    font-family: var(--font-sans);
    font-size: 16.5px;
    font-weight: 300;
    color: var(--color-text-muted-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    animation: cinematicRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-actions {
    opacity: 0;
    animation: cinematicRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
    margin-bottom: 50px;
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, #87622b 100%);
    border: 1px solid var(--color-gold);
    overflow: hidden;
    z-index: 1;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-cta span {
    z-index: 2;
}

.cta-arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

/* Metallic shimmer effect */
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: skewX(-30deg);
    transition: 0.75s;
    z-index: 2;
}

.hero-cta:hover::before {
    left: 150%;
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    box-shadow: 0 10px 30px rgba(164, 132, 81, 0.35);
    border-color: #efeee6;
    transform: translateY(-2px);
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Authority Trust Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0;
    animation: cinematicRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-light);
}

/* 3D Parallax Media Container */
.hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    opacity: 0;
    animation: cinematicRevealRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    z-index: 3;
    perspective: 1000px;
    /* Enable 3D depth */
}

.hero-media-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    /* Will feel fluid under JS control */
}

.hero-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transform: translateZ(20px);
    /* Lift element up visually */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-wrapper:hover .hero-main-img {
    transform: scale(1.04);
}

/* Background floating border frame */
.hero-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 1px solid var(--color-gold);
    z-index: 1;
    pointer-events: none;
    transform: translateZ(-20px);
    /* Push element down visually */
    animation: pulseGold 3s infinite ease-in-out;
}

/* Glassmorphic overlay badge */
.hero-glass-badge {
    position: absolute;
    bottom: 8%;
    left: -5%;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(21, 33, 57, 0.75);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(164, 132, 81, 0.4);
    padding: 16px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transform: translateZ(50px);
    /* Bring badge forward for 3D depth */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.hero-glass-badge:hover {
    border-color: var(--color-gold);
    transform: translateZ(60px) scale(1.03);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(164, 132, 81, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(164, 132, 81, 0.2);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light);
}

.badge-text span {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--color-text-muted-light);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.4s;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
    opacity: 1 !important;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted-light);
    font-weight: 500;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s;
}

.hero-scroll-indicator:hover .scroll-mouse {
    border-color: var(--color-gold);
}

.scroll-wheel {
    width: 4px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseWheel 2s infinite ease-in-out;
}

/* ==========================================================================
   ESPECIALIDADES (AREAS) SECTION
   ========================================================================== */

.especialidades-section {
    padding: 120px 0;
    background-color: var(--color-bg-light);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.especialidade-card {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    position: relative;
}

.card-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.card-text {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--color-text-muted-dark);
    line-height: 1.7;
    flex-grow: 1;
}

.card-underline {
    width: 32px;
    height: 1px;
    background-color: var(--color-gold);
    margin-top: 28px;
    transition: var(--transition-smooth);
}

/* Subtle micro-animations for premium feeling */
.especialidade-card:hover .card-title {
    color: var(--color-gold-dark);
}

.especialidade-card:hover .card-underline {
    width: 64px;
    background-color: var(--color-gold-dark);
}

/* ==========================================================================
   O ESCRITÓRIO SECTION
   ========================================================================== */

.escritorio-section {
    background-color: var(--color-bg-navy);
    color: var(--color-text-light);
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid rgba(164, 132, 81, 0.15);
}

.escritorio-top-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.escritorio-content {
    max-width: 600px;
}

.escritorio-text {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 300;
    color: var(--color-text-muted-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.escritorio-text:last-of-type {
    margin-bottom: 0;
}

.escritorio-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Pillars grid at the bottom */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 90px;
    border-top: 1px solid rgba(164, 132, 81, 0.15);
    padding-top: 70px;
}

.pilar-col {
    display: flex;
    flex-direction: column;
}

.pilar-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.pilar-text {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 300;
    color: var(--color-text-muted-light);
    line-height: 1.7;
}

/* ==========================================================================
   EQUIPE JURÍDICA SECTION
   ========================================================================== */

.equipe-section {
    padding: 120px 0;
    background-color: var(--color-bg-light);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 960px;
    margin: 80px auto 0;
}

.equipe-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.member-photo-wrapper {
    width: 100%;
    max-width: 420px;
    margin-bottom: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.member-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipe-card:hover .member-photo {
    transform: scale(1.05);
}

.member-tag {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.member-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.member-bio {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted-dark);
    line-height: 1.7;
    max-width: 420px;
}

/* ==========================================================================
   CONTATO & LOCALIZAÇÃO SECTION
   ========================================================================== */

.contato-section {
    padding: 120px 0;
    background-color: var(--color-bg-light-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.contato-info {
    max-width: 500px;
}

.contato-list {
    list-style: none;
    margin-top: 50px;
}

.contato-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.contato-item:last-child {
    margin-bottom: 0;
}

.contato-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contato-icon svg {
    stroke-width: 1.5px;
}

.contato-detail strong {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 8px;
}

.contato-detail p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text-muted-dark);
    line-height: 1.6;
}

.contato-detail a:hover {
    color: var(--color-gold-dark);
}

.contato-map-wrapper {
    display: flex;
    justify-content: center;
}

.map-card {
    width: 100%;
    max-width: 560px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(164, 132, 81, 0.15);
}

.map-img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--color-bg-navy);
    color: var(--color-text-light);
    padding: 80px 0 40px;
    font-family: var(--font-sans);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(164, 132, 81, 0.15);
}

.logo-footer-img {
    height: 110px;
    width: auto;
}

.footer-col-title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.footer-list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted-light);
    margin-bottom: 14px;
}

.footer-list li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.designer a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-actions {
        margin-bottom: 40px;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
        gap: 30px;
    }

    .hero-media-wrapper {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-glass-badge {
        left: 0;
        bottom: -20px;
    }

    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .escritorio-top-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .escritorio-media {
        order: -1;
        /* image on top for tablet/mobile */
    }

    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 60px;
        padding-top: 45px;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contato-map-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-media-wrapper {
        height: 380px;
    }

    .hero-scroll-indicator {
        display: none;
        /* Hide scroll indicator on tablet/mobile */
    }

    /* Mobile Menu Drawer style */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        padding: 80px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: var(--transition-smooth);
        z-index: 1000;
        border-left: 1px solid rgba(164, 132, 81, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .nav-link {
        font-size: 16px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 15px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 20px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-media-wrapper {
        height: 300px;
    }

    .hero-glass-badge {
        padding: 12px 18px;
        bottom: -15px;
    }

    .badge-text strong {
        font-size: 14px;
    }
}