/* ==================================================================
   MV LEGAL — Abogados & Bienes Raíces
   Hoja de estilos principal
   ------------------------------------------------------------------
   Paleta:  navy #0A2540  ·  dorado #C9A961  ·  crema #faf7f2
   Tipografía: Playfair Display (títulos) + Montserrat (texto)
   ================================================================== */

:root {
    --navy: #0A2540;
    --navy-light: #1a3a5c;
    --navy-dark: #051629;
    --gold: #C9A961;
    --gold-light: #d4b978;
    --gold-dark: #a88b4a;
    --white: #ffffff;
    --cream: #faf7f2;
    --gray-light: #f5f5f5;
    --gray: #8a8a8a;
    --gray-dark: #343a40;
    --text: #2c3e50;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(201,169,97,0.2);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.top-bar-info { display: flex; gap: 25px; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 8px; }
.top-bar-info i { color: var(--gold); }
.top-bar-social { display: flex; gap: 15px; }
.top-bar-social a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.top-bar-social a:hover { color: var(--gold); }

/* ============ HEADER ============ */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(10,37,64,0.08);
    transition: all 0.3s;
}
header.scrolled {
    box-shadow: 0 5px 30px rgba(10,37,64,0.15);
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-text .main,
.logo-text .sub { display: block; }
.logo-mark {
    width: 55px;
    height: 55px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    border: 2px solid var(--gold);
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--gold);
    opacity: 0.3;
}
.logo-text .main {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}
.logo-text .sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

nav > ul {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
nav > ul > li {
    position: relative;
}
nav > ul > li > a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    display: block;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}
nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    transform: translateX(-50%);
}
nav > ul > li:hover > a,
nav > ul > li.active > a {
    color: var(--gold);
}
nav > ul > li:hover > a::after,
nav > ul > li.active > a::after {
    width: 100%;
}

.has-dropdown > a::before {
    content: '▾';
    margin-left: 5px;
    font-size: 0.7rem;
    color: var(--gold);
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(10,37,64,0.15);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    padding: 15px 0;
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 25px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid transparent;
}
.dropdown li a:hover {
    background: var(--cream);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 30px;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 12px 25px !important;
    border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy); color: var(--gold) !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============ ANIMACIÓN DE ENTRADA ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.85), rgba(10,37,64,0.65));
}
.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    padding: 0 30px;
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.3s;
}
.slide-tag::before, .slide-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.slide.active .slide-tag { opacity: 1; transform: translateY(0); }
.slide h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.5s;
}
.slide.active h1 { opacity: 1; transform: translateY(0); }
.slide h1 span { color: var(--gold); font-style: italic; }
.slide p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.7s;
    max-width: 600px;
    line-height: 1.8;
}
.slide.active p { opacity: 0.95; transform: translateY(0); }
.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.9s;
}
.slide.active .slide-buttons { opacity: 1; transform: translateY(0); }

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}
.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: var(--gold);
    color: var(--navy);
}
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 44px;
    height: 44px;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: transparent;
}
.slider-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: all 0.3s;
}
.slider-dot.active::before {
    background: var(--gold);
    width: 35px;
    border-radius: 10px;
}

/* ============ BUTTONS ============ */
.btn {
    padding: 15px 32px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: transparent;
    color: var(--navy);
}

/* ============ SECTION HEADERS ============ */
.section { padding: 100px 0; position: relative; }
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-tag::before, .section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-header h2 span { color: var(--gold); font-style: italic; }
.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 25px auto;
    position: relative;
}
.section-header .line::before, .section-header .line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}
.section-header .line::before { left: -20px; }
.section-header .line::after { right: -20px; }
.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
}

/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(135deg, rgba(10,37,64,0.9), rgba(10,37,64,0.75)), url('https://image.qwenlm.ai/public_source/d2d7056e-7db4-460d-b6e4-0f5492bee6d7/1a436c116-99ac-43ee-b6dd-d390338be492.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
}
.page-banner h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.page-banner h1 span { color: var(--gold); font-style: italic; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.breadcrumb a { color: var(--gold); cursor: pointer; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============ ABOUT SECTION ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--gold);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--navy);
    color: var(--white);
    padding: 30px 40px;
    z-index: 2;
    border-left: 4px solid var(--gold);
}
.about-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.about-badge .label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}
.about-content .section-tag { justify-content: flex-start; }
.about-content .section-tag::before { display: none; }
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
}
.about-content h2 span { color: var(--gold); font-style: italic; }
.about-content > p {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 0.95rem;
}
.about-quote {
    margin: 30px 0;
    padding: 25px 30px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    font-style: italic;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}
.about-feature span {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

/* ============ MVV ============ */
.mvv { background: var(--cream); }
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.mvv-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    border: 1px solid rgba(201,169,97,0.2);
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s;
}
.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.15);
}
.mvv-card:hover::before { width: 100%; }
.mvv-icon {
    width: 90px;
    height: 90px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    position: relative;
}
.mvv-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}
.mvv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.mvv-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============ VALUES ============ */
.values {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.values::before {
    content: 'MV';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(201,169,97,0.03);
    font-weight: 700;
    pointer-events: none;
}
.values .section-header h2 { color: var(--white); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}
.value-item {
    background: rgba(255,255,255,0.03);
    padding: 35px 30px;
    border: 1px solid rgba(201,169,97,0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s;
}
.value-item:hover {
    background: rgba(201,169,97,0.08);
    transform: translateY(-5px);
}
.value-item:hover::before { height: 100%; }
.value-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}
.value-item h4 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.value-item p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* ============ PRACTICE AREAS ============ */
.practice { background: var(--cream); }
.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.practice-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10,37,64,0.05);
    cursor: pointer;
}
.practice-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.15);
}
.practice-card:hover::after { transform: scaleX(1); }
.practice-card .icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.4s;
}
.practice-card:hover .icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(360deg);
}
.practice-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.practice-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}
.practice-link {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.practice-card:hover .practice-link { gap: 15px; }

/* ============ PROFILE ============ */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.profile-image-wrap { position: relative; }
.profile-image {
    height: 650px;
    overflow: hidden;
    position: relative;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-image::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    z-index: -1;
}
.profile-signature {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--navy);
    padding: 25px 35px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.profile-content .section-tag { justify-content: flex-start; }
.profile-content .section-tag::before { display: none; }
.profile-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
}
.profile-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.profile-content p {
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201,169,97,0.3);
}
.stat { text-align: center; }
.stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.stat .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ============ NOTARIAL ============ */
.notarial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.notarial-image {
    height: 600px;
    overflow: hidden;
    position: relative;
}
.notarial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.notarial-image::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    left: -30px;
    bottom: -30px;
    border: 3px solid var(--gold);
    z-index: -1;
}
.notarial-content .section-tag { justify-content: flex-start; }
.notarial-content .section-tag::before { display: none; }
.notarial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: left;
}
.notarial-list {
    list-style: none;
    margin: 30px 0;
}
.notarial-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(201,169,97,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.98rem;
    color: var(--navy);
    font-weight: 500;
}
.notarial-list li i {
    color: var(--gold);
    font-size: 1rem;
}
.notarial-note {
    background: var(--navy);
    color: var(--white);
    padding: 25px 30px;
    margin-top: 30px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
}
.notarial-note i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============ REAL ESTATE ============ */
.realestate { background: var(--cream); }
.search-box {
    background: var(--white);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(10,37,64,0.08);
    position: relative;
}
.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}
.search-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.search-grid select, .search-grid input {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.88rem;
    width: 100%;
    transition: border-color 0.3s;
    background: var(--white);
}
.search-grid select:focus, .search-grid input:focus {
    outline: none;
    border-color: var(--gold);
}
.search-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 15px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.search-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.property-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
    transition: all 0.4s;
    cursor: pointer;
}
.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10,37,64,0.2);
}
.property-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.property-card:hover .property-image img { transform: scale(1.1); }
.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}
.property-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--navy);
    color: var(--gold);
    padding: 10px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
}
.property-details { padding: 30px; }
.property-type {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}
.property-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}
.property-location {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.property-location i { color: var(--gold); }
.property-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}
.spec-item { text-align: center; }
.spec-item i {
    color: var(--gold);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.property-btn {
    display: inline-block;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s;
}
.property-btn:hover {
    color: var(--gold);
    letter-spacing: 3px;
}

/* ============ RE SERVICES ============ */
.re-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.re-service {
    background: var(--cream);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.re-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--navy);
    transition: height 0.4s;
    z-index: 0;
}
.re-service:hover::before { height: 100%; }
.re-service > * { position: relative; z-index: 1; transition: color 0.4s; }
.re-service:hover > * { color: var(--white); }
.re-service:hover i { color: var(--gold); }
.re-service i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: color 0.4s;
}
.re-service h4 {
    font-size: 1rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    transition: color 0.4s;
}

/* ============ CALCULATOR ============ */
.calculator { background: var(--cream); }
.calc-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(10,37,64,0.1);
}
.calc-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}
.calc-tab {
    padding: 15px 30px;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.calc-tab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}
.calc-content { display: none; }
.calc-content.active { display: block; }
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.calc-result {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
}
.calc-result::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(201,169,97,0.3);
    pointer-events: none;
}
.calc-result .amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 15px 0;
}
.calc-result .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============ BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
    transition: all 0.4s;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10,37,64,0.15);
}
.blog-image {
    height: 240px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.blog-image i { position: relative; z-index: 1; }
.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 15px;
    text-align: center;
    z-index: 2;
}
.blog-date-badge .day {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.blog-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.blog-content { padding: 30px; }
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}
.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}
.blog-card:hover .blog-content h3 { color: var(--gold); }
.blog-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}
.blog-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 3px;
    transition: all 0.3s;
}
.blog-link:hover {
    color: var(--gold);
    letter-spacing: 3px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    color: rgba(201,169,97,0.05);
    line-height: 1;
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.testimonial {
    background: rgba(255,255,255,0.03);
    padding: 40px 30px;
    border: 1px solid rgba(201,169,97,0.2);
    position: relative;
    transition: all 0.4s;
}
.testimonial:hover {
    background: rgba(201,169,97,0.08);
    transform: translateY(-10px);
}
.testimonial .quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}
.testimonial p {
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.8;
    font-size: 0.95rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,169,97,0.2);
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}
.testimonial-info h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 3px;
}
.testimonial-info .role {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stars { color: var(--gold); margin-bottom: 15px; font-size: 0.9rem; }

/* ============ CASES ============ */
.cases { background: var(--cream); }
.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.case-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.15);
}
.case-card:hover::before { transform: scaleX(1); }
.case-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.case-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.case-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ CONVENIOS ============ */
.convenios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.convenio {
    background: var(--cream);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid transparent;
}
.convenio:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10,37,64,0.1);
}
.convenio i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.convenio h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.convenio p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.faq-item.active {
    border-left-color: var(--gold);
    box-shadow: 0 10px 30px rgba(10,37,64,0.08);
}
.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s;
    font-size: 1rem;
}
.faq-question:hover { background: var(--cream); }
.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
    font-size: 0.9rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    padding: 0 30px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}
.faq-answer p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; }

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}
.contact-info {
    background: var(--navy);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 50%;
}
.contact-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.contact-detail i {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail div strong {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.contact-form {
    background: var(--cream);
    padding: 60px 50px;
}
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* ============ AGENDA ============ */
.agenda { background: var(--cream); }
.agenda-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.agenda-type {
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.agenda-type:hover, .agenda-type.selected {
    border-color: var(--gold);
    background: var(--navy);
}
.agenda-type:hover *, .agenda-type.selected * { color: var(--white); }
.agenda-type:hover i, .agenda-type.selected i { color: var(--gold); }
.agenda-type i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s;
}
.agenda-type span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.publish-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(10,37,64,0.08);
}

/* ============ NEWSLETTER ============ */
.newsletter {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.newsletter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}
.newsletter h3 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.newsletter p { opacity: 0.9; font-size: 1rem; }
.newsletter-form {
    display: flex;
    gap: 0;
}
.newsletter-form input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 2px 0 0 2px;
    font-family: inherit;
    font-size: 0.95rem;
}
.newsletter-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 18px 35px;
    border-radius: 0 2px 2px 0;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ============ FOOTER ============ */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.footer-col ul a::before {
    content: '›';
    color: var(--gold);
    transition: transform 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a:hover::before { transform: translateX(5px); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(201,169,97,0.2);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.3s;
    animation: pulse-wa 2s infinite;
    flex: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.9); }
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ DETAIL MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s;
}
.modal-close:hover { background: var(--gold); color: var(--navy); }
.modal-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-body { padding: 40px; }
.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.modal-meta {
    display: flex;
    gap: 25px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modal-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.modal-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: var(--cream);
}
.modal-spec {
    text-align: center;
}
.modal-spec i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.modal-spec .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}
.modal-spec .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modal-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .slide h1 { font-size: 3rem; }
    .practice-grid, .re-services-grid, .cases-grid, .convenios-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .notarial-grid, .profile-grid, .contact-grid, .calc-grid, .newsletter-content { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .search-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header h2, .about-content h2, .profile-content h2, .notarial-content h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .top-bar-info { display: none; }
    .mobile-menu-btn { display: block; }
    nav > ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
        max-height: 70vh;
        overflow-y: auto;
    }
    nav > ul.active { display: flex; }
    nav > ul > li { width: 100%; border-bottom: 1px solid #eee; }
    nav > ul > li > a { padding: 15px 0; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 10px 20px;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .hero-slider { display: grid; height: auto; min-height: 500px; }
    .slide { position: relative; grid-area: 1 / 1; padding: 80px 0 120px; }
    .slider-controls { right: 20px; bottom: 20px; }
    .slider-dots { left: 20px; bottom: 23px; transform: none; }
    .slide h1 { font-size: 2rem; }
    .slide-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .form-row, .agenda-types { grid-template-columns: 1fr; }
    .mvv-grid, .values-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .practice-grid, .re-services-grid, .cases-grid, .convenios-grid, .footer-grid { grid-template-columns: 1fr; }
    .property-specs, .modal-specs { grid-template-columns: repeat(2, 1fr); }
    .profile-stats { grid-template-columns: 1fr; gap: 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { border-radius: 2px; width: 100%; }
    .section { padding: 60px 0; }
    .about-badge, .profile-signature { position: static; margin-top: 20px; display: inline-block; }
    .about-image::before, .notarial-image::before { display: none; }
    .publish-form, .calc-container, .contact-info, .contact-form { padding: 30px; }
    .page-banner h1 { font-size: 2.2rem; }
    .modal-image { height: 250px; }
    .modal-cta { flex-direction: column; }
}
