:root {
    --primary: #004D40;
    /* Verde oscuro corporativo */
    --primary-dark: #00251a;
    --accent: #A4C639;
    /* Verde Lima vibrante */
    --accent-glow: rgba(164, 198, 57, 0.4);
    --dark: #121212;
    --light: #f4f4f9;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --gradient-text: linear-gradient(45deg, #A4C639, #ffffff);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* NAVBAR GLASSMORPHISM */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    /* Reduje un poco el padding original para que no sea enorme */
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(0, 77, 64, 0.95);
    /* Un poco más opaco para leer mejor */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    /* Se hace más compacta al bajar */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CONTROL DEL TAMAÑO DEL LOGO (NUEVO) --- */
.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 99px;
    /* Ajusta este valor según el tamaño de tu logo */
    width: auto;
    object-fit: contain;
    /* Si tu logo es oscuro y el fondo es oscuro, puedes usar un filtro para volverlo blanco si es PNG transparente: */
    /* filter: brightness(0) invert(1); */
}


/* Efecto: El logo se hace más pequeño al bajar el scroll */
.navbar.scrolled .nav-logo-img {
    height: 70px;
}

/* --- ENLACES Y BOTONES --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    padding: 8px 25px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--accent);
    color: var(--primary) !important;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* responsive para el logo en moviles */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 45px;
        /* Un poco más pequeño en celular */
    }
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.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: scale(1.1);
    /* Efecto zoom sutil */
    animation: zoomEffect 20s infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.95) 0%, rgba(0, 37, 26, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-glow);
    background: #b4d942;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* SVG WAVE */
.wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* SECCIONES Y GRID */
.section {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.center {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* TARJETAS MODERNAS */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content {
    padding: 30px;
    position: relative;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 10px;
    transition: 0.3s;
}

/* CARRUSEL TESTIMONIOS */
.dark-section {
    background: var(--primary);
    color: var(--white);
}

.text-white h2 {
    color: var(--white);
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.client-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--accent);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    opacity: 1;
    color: var(--accent);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b857;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Aquí agregas la lógica JS para mostrar menú móvil */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--white);
    }
}

/* ANIMACIONES SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* --- SECCIÓN CONTACTO --- */
.contact-section {
    background-color: #f8f9fa;
    /* Fondo muy suave para diferenciar */
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Lado Izquierdo (Info) */
.contact-info-box {
    flex: 1;
    background: var(--primary);
    /* Verde Oscuro */
    padding: 50px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-desc {
    color: #cfd8dc;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-sq {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 20px;
    transition: 0.3s;
}

.info-item:hover .icon-sq {
    background: var(--accent);
    color: var(--primary);
}

.info-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    font-size: 1.1rem;
    font-weight: 600;
}

.social-small {
    margin-top: auto;
}

.social-small a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin-right: 10px;
    transition: 0.3s;
}

.social-small a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* Círculos decorativos de fondo */
.circle-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.circle-deco.one {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.circle-deco.two {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
}

/* Lado Derecho (Formulario) */
.contact-form {
    flex: 1.5;
    padding: 50px 40px;
    background: var(--white);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    position: relative;
    margin-bottom: 35px;
}

/* Estilos de Inputs (Efecto Material) */
.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 5px;
    top: 10px;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

/* Animación de la etiqueta al hacer click o escribir */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-bottom-color: var(--accent);
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* Estilo especial para Select */
.input-group select {
    cursor: pointer;
    color: #666;
}

.input-group select:focus {
    color: #333;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Responsive Contacto */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-box {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .input-row {
        flex-direction: column;
        gap: 0;
    }

    .circle-deco {
        display: none;
    }

    /* Ocultar decoración en móvil para limpiar */
}

/* --- SECCIÓN POR QUÉ ELEGIRNOS --- */
.choose-section {
    background-color: var(--white);
    overflow: hidden;
    /* Para que los elementos decorativos no se salgan */
}

.choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% y 50% */
    gap: 80px;
    align-items: center;
}

/* Columna Imagen */
.choose-image {
    position: relative;
    z-index: 1;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Un pequeño giro para estilo moderno */
    transform: rotate(-2deg);
    transition: 0.5s;
}

.choose-image:hover .main-img {
    transform: rotate(0deg);
}

/* Patrón de puntos decorativo */
.pattern-dots {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#A4C639 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.6;
}

/* Insignia Flotante (Años de experiencia) */
.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--accent);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}

/* Animación suave de rebote para la insignia */
@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: floatBadge 3s ease-in-out infinite;
}

/* Columna Contenido */
.intro-text {
    margin-bottom: 40px;
    color: #555;
    font-size: 1.1rem;
}

/* Grid de Características (2x2) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.feature-box:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #eee;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(164, 198, 57, 0.15);
    /* Verde lima transparente */
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature-box:hover .icon-wrap {
    background: var(--accent);
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-box p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .choose-container {
        grid-template-columns: 1fr;
        /* Una sola columna en tablet/móvil */
        gap: 50px;
    }

    .choose-image {
        order: -1;
        /* Imagen arriba */
        text-align: center;
        margin-bottom: 20px;
    }

    .main-img {
        max-width: 100%;
        transform: rotate(0deg);
        /* Quitar rotación en móvil */
    }

    .experience-badge {
        right: 10px;
        /* Ajustar posición en móvil */
        bottom: 20px;
        padding: 15px 20px;
    }

    .pattern-dots {
        left: 10px;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Una columna para características en móviles pequeños */
    }
}

/* --- ESTILOS DEL LOGO EN NAVBAR --- */
.logo-link {
    display: flex;
    align-items: center;
}



/* --- FOOTER STYLES --- */
.footer {
    background-color: #00251a;
    /* Verde muy oscuro, casi negro */
    color: #b0bec5;
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); Descomenta si tu logo es negro para hacerlo blanco */
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0bec5;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
    /* Efecto de movimiento sutil */
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #001a12;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* =========================================
   SPLASH SCREEN ANIMATION
========================================= */

/* El contenedor principal que cubre toda la pantalla */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary); /* Usa el verde oscuro corporativo */
    z-index: 9999; /* Asegura que esté encima de TODO */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1); /* Transición de salida suave */
}

/* Clase que añadiremos con JS para ocultar la pantalla */
#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px); /* Un ligero movimiento hacia arriba al salir */
}

/* Contenedor del logo y el efecto */
.splash-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* El Logo */
.splash-logo {
    width: 150px; /* Tamaño inicial grande */
    height: auto;
    position: relative;
    z-index: 2;
    /* Animación de entrada: aparece y crece ligeramente */
    animation: logoEntrance 1.5s ease-out forwards;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* El anillo de pulso (Efecto Radar) */
.pulse-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--accent); /* Verde lima brillante */
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    /* Animación del pulso: espera un poco, luego se expande */
    animation: radarPulse 2s infinite ease-out;
    animation-delay: 0.5s; /* Empieza medio segundo después que el logo */
}

/* --- KEYFRAMES (Las instrucciones de movimiento) --- */

/* Entrada del Logo */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efecto de Radar/Pulso */
@keyframes radarPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5); /* Se expande mucho */
        opacity: 0; /* Y se desvanece */
    }
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .splash-logo { width: 100px; }
    .pulse-ring { width: 90px; height: 90px; }
}

/* --- ESTILOS DEL MAPA --- */
.map-container {
    margin-top: 50px; /* Separación del formulario de arriba */
    background: var(--white);
    border-radius: 20px;
    overflow: hidden; /* Para que el mapa respete las esquinas redondeadas */
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
}

.map-header {
    background: var(--white);
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.map-header h3 {
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 i {
    color: var(--accent);
}

/* El iframe de Google */
.map-container iframe {
    display: block; /* Quita espacios extraños abajo */
    width: 100%;
    height: 400px; /* Altura estándar para PC */
}

/* RESPONSIVE MAPA */
@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
        border-radius: 15px; /* Un poco menos redondeado en móvil */
    }

    .map-container iframe {
        height: 300px; /* Más bajito en celular para que sea fácil scrollear la página */
    }
}