html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

:root {
    --bs-primary: #001F3F;
    --bs-primary-rgb: 0, 31, 63;
    --accent-color: #C5A059;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #444 !important;
    padding: 0.5rem 1rem !important;
}

    .nav-link:hover {
        color: var(--bs-primary) !important;
    }

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

    .btn-primary:hover {
        background-color: #002d5c;
        border-color: #002d5c;
    }

.hero-section {
    background-color: var(--bs-primary);
    position: relative;
    overflow: hidden;
    color: white;
}

.carousel-item {
    height: 700px;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,31,63,0.9) 0%, rgba(0,31,63,0.4) 100%);
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 700px;
    left: 10%;
    padding-bottom: 0;
}

    .carousel-caption h1 {
        font-weight: 800;
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.stats-cards {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    border-radius: 8px;
}

    .stat-card.featured {
        background: var(--bs-primary);
        color: white;
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--accent-color);
    }

.practice-area-card {
    border: 1px solid #eee;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 8px;
}

    .practice-area-card:hover {
        border-color: var(--bs-primary);
        background-color: var(--bs-primary);
        color: white;
        transform: translateY(-10px);
    }

    .practice-area-card .material-symbols-outlined {
        font-size: 3rem;
        color: var(--accent-color);
        margin-bottom: 1.5rem;
    }

    .practice-area-card:hover .material-symbols-outlined {
        color: white;
    }

    .practice-area-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .practice-area-card p {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 1.5rem;
    }

.btn-link-custom {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.practice-area-card:hover .btn-link-custom {
    color: white;
}

.report-section {
    background-color: #f8f9fa;
}

.report-image {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--bs-primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

    footer h4 {
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    footer .nav-link {
        color: rgba(255,255,255,0.7) !important;
        padding: 0.3rem 0 !important;
        text-transform: none;
        font-size: 0.9rem;
    }

        footer .nav-link:hover {
            color: var(--accent-color) !important;
        }

.footer-logo {
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.8rem;
}

.material-symbols-outlined {
    vertical-align: middle;
}
style >
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Asegura que esté por encima de todo */
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1); /* Efecto de "agrandarse" al pasar el mouse */
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    background-color: #20BA56;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Animación de "pulso" para llamar la atención (Opcional) */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse-green 2s infinite;
}

/* ================================
   VARIABLES DE MARCA
================================ */
:root {
    --marval-gold: #c6a75e;
    --marval-gold-dark: #b08f3f;
    --text-muted: #6c757d;
    --bg-dark: #0f1115;
    --card-dark: #151922;
}

/* ================================
   TIPOGRAFÍA
================================ */
.font-display {
    font-family: "Playfair Display", "Georgia", serif;
    letter-spacing: 0.5px;
}

.text-marval-gold {
    color: var(--marval-gold);
}

.bg-marval-gold {
    background-color: var(--marval-gold);
}

/* tracking-widest equivalente */
.tracking-widest {
    letter-spacing: 0.18em;
}

/* ================================
   SECCIÓN UBICACIÓN
================================ */
#ubicacion {
    position: relative;
    overflow: hidden;
}

    #ubicacion h2 {
        line-height: 1.2;
    }

/* ================================
   CARD
================================ */
.marval-card {
    border: none;
    border-radius: 0;
    background: #ffffff;
}

    .marval-card .card-body {
        max-width: 520px;
    }

    /* sombra elegante, no bootstrap genérico */
    .marval-card.shadow-lg {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

/* ================================
   ICONOS
================================ */
.material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
}

/* ================================
   TEXTOS
================================ */
#ubicacion p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

#ubicacion h5 {
    font-size: 1rem;
}

/* ================================
   BOTONES
================================ */
.btn-gold {
    background-color: var(--marval-gold);
    color: #111;
    border: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.25s ease;
}

    .btn-gold:hover {
        background-color: var(--marval-gold-dark);
        color: #000;
        transform: translateY(-1px);
    }

.btn-outline-dark {
    border-radius: 0;
    letter-spacing: 0.15em;
}

/* ================================
   MAPA
================================ */
#ubicacion iframe {
    filter: grayscale(10%) contrast(1.05);
}

/* ================================
   DARK MODE (opcional, serio)
   usar: <html data-bs-theme="dark">
================================ */
html[data-bs-theme="dark"] #ubicacion {
    background-color: var(--bg-dark);
}

html[data-bs-theme="dark"] .marval-card {
    background-color: var(--card-dark);
    color: #ffffff;
}

html[data-bs-theme="dark"] #ubicacion p {
    color: #a0a4ad;
}

html[data-bs-theme="dark"] .btn-outline-dark {
    color: #ffffff;
    border-color: #444;
}

    html[data-bs-theme="dark"] .btn-outline-dark:hover {
        background-color: #222;
    }
