:root {
    --vg-ink: #0b1726;
    --vg-accent: #1f5f8b;
    --vg-accent-strong: #164670;
    --vg-muted: #324763;
    --vg-surface: #e8edf5;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-top: 4rem; /* por el navbar fijo */
}
.hero {
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 9vw, 7rem);
    background: var(--vg-ink);
}
.hero-elevated {
    position: relative;
    overflow: hidden;
}
.hero .hero-title {
    color: #ffffff;
}
.hero .lead,
.hero .text-muted {
    color: #e9ecef !important;
}
.hero-badge {
    display: inline-block;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    background-color: var(--vg-surface);
    color: var(--vg-accent);
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: 2rem;
    font-weight: 600;
}
.hero-highlight { color: var(--vg-accent); }
.hero-lead { max-width: 720px; }
.hero-sub { max-width: 520px; }
.areas-band {
    background: #f1f2f4;
    padding: 1.2rem 0;
    box-shadow: 0 6px 24px rgba(0,0,0,.05) inset;
    margin-top: -1rem;
}
.areas-item {
    font-size: .95rem;
    color: var(--vg-muted);
}
.home-strip {
    margin: 0;
}
.home-strip .btn {
    min-width: 220px;
}
.sobre-dra img {
    max-width: 260px;
}
.navbar-brand-logo {
    height: 48px;
    width: auto;
    display: block;
}
.navbar .nav-link.activo {
    color: var(--vg-accent) !important;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
.navbar .nav-link.activo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.1rem;
    height: 2px;
    background: var(--vg-accent);
}
@media (min-width: 768px) {
    .hero {
        padding: clamp(4rem, 6vw, 7rem) 0 clamp(4rem, 7vw, 8rem);
    }
    .hero-title {
        font-size: 2.6rem;
    }
}
@media (max-width: 767.98px) {
    .hero {
        min-height: calc(100vh - 72px);
        max-height: calc(100vh - 72px);
        display: flex;
        align-items: center;
    }
    .hero .row {
        width: 100%;
    }
}

    .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: .5rem;
    }
    .section-subtitle {
        color: #6c757d;
        font-size: .95rem;
        margin-bottom: 1.5rem;
    }
    .practice-card h3 {
        font-size: 1.05rem;
    }

    .profile-photo {
        width: 100%;
        max-width: 260px;
        border-radius: 999px;
        object-fit: cover;
    }

    .contact-section {
        background-color: var(--vg-ink);
        color: #f8f9fa;
    }
    .contact-section .form-control,
    .contact-section .form-select {
        background-color: #0f2238;
        border-color: #22354b;
        color: #f8f9fa;
    }
    .contact-section .form-control::placeholder {
        color: #adb5bd;
    }
    .contact-section .form-control:focus {
        background-color: #10243f;
        border-color: var(--vg-accent);
        color: #fff;
    }

    footer {
        font-size: .85rem;
    }

    .whatsapp-float {
        position: fixed;
        right: 16px;
        bottom: 16px;
        z-index: 999;
    }

    /* Banda de áreas principales */
.areas-band {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.areas-band-inner {
    padding: 1.2rem 0;
}

.areas-item {
    font-size: 0.93rem;
    line-height: 1.35rem;
    padding: 0.5rem 0;
}

.areas-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--vg-ink);
}

/* En desktop los tres ítems se alinean en la misma línea */
@media (min-width: 992px) {
    .areas-band-inner {
        padding: 1.8rem 0;
    }

    .areas-item {
        padding-right: 1rem;
        border-right: 1px solid #e1e1e1;
    }

    /* Quitar borde del último */
    .areas-item:last-child {
        border-right: none;
        padding-right: 0;
    }
}
