/* =======================================================================
// style.css - CÓDIGO COMPLETO, CONSOLIDADO Y CORREGIDO
// Incluye paleta, animaciones, Hero verde sólido, Sticky Nav, Badges y Contacto.
// ======================================================================= */

/* --- 1. VARIABLES DE COLOR Y TIPOGRAFÍA --- */
:root {
    --color-principal: #3E482A; /* Verde Oscuro */
    --color-acento1: #AE431E;  /* Terracota */
    --color-acento2: #D06224;  /* Naranja Quemado */
    --color-neutro-claro: #EAC891; /* Beige */
    --color-neutro-oscuro: #A7805A; /* Marrón */
    --font-principal: 'Playfair Display', serif; 
    --font-secundaria: 'Lato', sans-serif; 
}

/* --- 2. BASE Y TIPOGRAFÍA --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secundaria);
    background-color: #f7f5f0; 
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: var(--font-principal);
    color: var(--color-principal);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }

/* --- 3. ANIMACIONES --- */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    animation: fadeInSlideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; } 
.delay-4 { animation-delay: 0.8s; } 

/* --- 4. HEADER / HERO (VUELTA A IMAGEN CON OVERLAY) --- */
.hero {
    /* 1. Fondo de Imagen Panorámica con Overlay Oscuro */
    background-image: linear-gradient(rgba(62, 72, 42, 0.7), rgba(62, 72, 42, 0.7)), /* Overlay oscuro */
                      url('assets/sierras.webp'); /* URL de la Imagen de la Sierra */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    color: white;
    padding: 100px 20px; /* Más padding para que la imagen luzca */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; 
}

/* El resto de estilos del Hero se mantienen para garantizar la legibilidad */
.logo-container {
    margin-bottom: 20px;
}
.logo-svg {
    width: 80px; 
    height: auto;
    /* Filtro para asegurar el color blanco sobre el fondo oscuro */
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(0,0,0,0.5)); 
}
.hero h1 { 
    color: white; 
    margin-bottom: 15px; 
    font-size: 3.5rem; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra para mejor lectura */
}
.hero p { 
    font-size: 1.3rem; 
    opacity: 1; /* Quitamos opacidad para mejor lectura */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* --- 5. NAVEGACIÓN STICKY --- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%); 
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    padding: 10px 0;
    opacity: 0;
}

.sticky-nav.visible {
    transform: translateY(0); 
    opacity: 1;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; 
}

.sticky-logo .logo-svg {
    height: 40px; 
    width: auto;
    filter: none; 
}

.sticky-btn {
    padding: 8px 15px;
    background-color: var(--color-acento2); 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.sticky-btn:hover {
    background-color: var(--color-acento1);
}

/* --- 6. BARRA DE BÚSQUEDA --- */
.search-bar {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px 12px 50px; 
    border: 2px solid var(--color-neutro-oscuro);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-bar i {
    position: absolute;
    left: 50%;
    transform: translateX(-250px); 
    color: var(--color-neutro-oscuro);
    font-size: 1.1rem;
    top: 35px; 
}

/* --- 7. CATEGORÍAS DESTACADAS (TARJETAS VISUALES) --- */
.featured-categories {
    text-align: center;
}
.featured-categories h2 {
    color: var(--color-acento1); 
    margin-bottom: 5px;
}
.featured-categories .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-principal);
    margin-bottom: 40px;
}

.featured-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 0 40px 0;
    justify-content: center;
}
.featured-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-image {
    width: 100%;
    padding-top: 100%; 
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.featured-card:hover .card-image {
    transform: scale(1.05); 
}
.card-label {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    background-color: var(--color-acento2); 
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-categories .category-buttons {
    display: none; 
}

/* --- 8. DECORADOR SVG --- */
.svg-decorator {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.mountain-line {
    width: 100%;
    max-width: 600px;
    height: 15px; 
    fill: var(--color-principal); 
}

/* --- 9. LISTADO DE NEGOCIOS (TARJETAS) --- */
.business-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.business-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeInSlideUp 0.6s ease forwards;
}

.business-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--color-acento1);
}

/* --- 10. BADGES (NUEVO) --- */
.business-badges {
    margin: 10px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--color-principal); 
    background-color: var(--color-neutro-claro); 
    border: 1px solid var(--color-neutro-oscuro);
}

/* --- 11. CARRUSEL SIMPLIFICADO --- */
.carousel-container {
    position: relative;
    height: 250px; 
    overflow: hidden;
}
.carousel-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none; 
}
.carousel-slide:first-child {
    display: block; 
}

/* --- 12. BOTONES DE ACCIÓN --- */
.actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}
.action-btn {
    flex-grow: 1;
    padding: 12px 0;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
    font-size: 0.9rem;
}
.whatsapp-btn {
    background-color: #25D366; 
    color: white;
}
.social-btn {
    background-color: var(--color-principal);
    color: white;
}

/* --- 13. MICRO-INTERACCIÓN: EFECTO SKELETON --- */
@keyframes pulse {
    0% { background-color: rgba(167, 128, 90, 0.1); } 
    50% { background-color: rgba(167, 128, 90, 0.3); }
    100% { background-color: rgba(167, 128, 90, 0.1); }
}

.business-card.skeleton {
    animation: pulse 1.5s infinite ease-in-out;
    min-height: 400px;
    cursor: default;
    pointer-events: none;
    background: #fff;
    box-shadow: none;
}
.business-card.skeleton .carousel-container,
.business-card.skeleton .card-content h3,
.business-card.skeleton .card-content p {
    background-color: rgba(167, 128, 90, 0.2);
    color: transparent; 
    border-radius: 4px;
}


/* --- 14. SECCIÓN DE CONTACTO / SUMATE --- */
.contact-section {
    background-color: var(--color-neutro-claro); 
    padding: 60px 20px;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-text {
    flex: 1;
    max-width: 400px;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: var(--color-acento1); 
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--color-neutro-oscuro);
    border-radius: 5px;
    font-family: var(--font-secundaria);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.submit-btn {
    padding: 15px;
    background-color: var(--color-acento2); 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

/* --- 15. MODAL --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(5px);
    animation: fadeInModal 0.3s ease;
}
.modal-content {
    background-color: white;
    margin: 5% auto; 
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease-out;
}
.close-btn {
    color: var(--color-acento1);
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
#modalBody .modal-header h2 {
    color: var(--color-acento2);
    margin-bottom: 10px;
}
#modalBody .modal-map {
    width: 100%;
    height: 250px;
    border: 1px solid var(--color-neutro-claro);
    border-radius: 8px;
    margin: 20px 0;
}
/* ... (Animaciones del modal) ... */

/* --- 16. FOOTER --- */
.main-footer {
    background-color: var(--color-principal); 
    color: var(--color-neutro-claro); 
    padding: 40px 0;
    font-size: 0.9rem;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-section h3 {
    font-family: var(--font-principal);
    color: white; 
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-acento1); 
    padding-bottom: 5px;
    display: inline-block;
}
.footer-section.nav ul {
    list-style: none;
    padding: 0;
}
.logo-footer {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
    filter: sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(1.2) contrast(0.8);
}
.footer-section.logo-copy {
    text-align: right;
}


/* --- 17. RESPONSIVE --- */
@media (max-width: 850px) {
    /* Responsive para Contacto */
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-form, .contact-text {
        max-width: 100%;
    }
    .contact-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .search-bar i {
        left: 30px; 
        transform: none;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-section.logo-copy {
        text-align: center;
        order: -1; 
    }
}

.sierra-illustration {
    margin-top: 2rem;
  }
  
  .sierra-illustration svg {
    width: 100%;
    height: auto;
    display: block;
  }
/* --- 16. FOOTER (Añadir estilos para redes sociales) --- */

/* ... (Estilos existentes del footer) ... */

.social-links {
    margin-top: 15px;
}

.social-links a {
    font-size: 1.8rem;
    color: var(--color-neutro-claro); /* Color beige claro del texto del footer */
    transition: color 0.3s ease;
    margin-right: 10px;
    display: inline-block;
}

.social-links a:hover {
    color: var(--color-acento2); /* Naranja Quemado como hover */
}


/* --- ESTILO PARA EL ENLACE DE WHATSAPP EN LA SECCIÓN DE CONTACTO --- */
.contact-whatsapp-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-whatsapp-link i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.contact-whatsapp-link:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* --- Responsive para móvil: centramos el enlace --- */
@media (max-width: 850px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .contact-whatsapp-link {
        margin: 20px auto 0; /* Centra el botón en móvil */
    }
    /* ... (El resto de estilos responsive se mantiene) ... */
}  

.sierra-detail {
    margin-top: 1.8rem;
  }
  
  .sierra-detail svg {
    width: 260px;   /* jugá entre 220–320px hasta que te cierre */
    max-width: 100%;
    display: block;
  }
  
  .message-status.ok { color: #1a7f37; }
.message-status.err { color: #b42318; }

/* Contenedor externo del mapa en el modal */
.modal-map {
    width: 100%;
    margin: 20px 0;
  }
  
  /* Caja que recorta el iframe */
  .map-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;          /* 🔑 CLAVE */
    border: 1px solid var(--color-neutro-claro);
    background: #fff;
  }
  
  /* Iframe controlado */
  .map-box iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
  }

  @media (max-width: 768px) {
    .map-box iframe {
      height: 260px;
    }
  }

/* Colapsar el bloque de tarjetas destacadas cuando el usuario ya está buscando/filtrando */
.filters.featured-categories.is-collapsed .featured-cards {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease;
  }
  
  .filters.featured-categories .featured-cards {
    max-height: 1200px; /* grande para desktop */
    transition: max-height .25s ease, opacity .2s ease;
  }
  
  /* En mobile, que colapse más agresivo */
  @media (max-width: 768px) {
    .filters.featured-categories .featured-cards { max-height: 900px; }
  }
  .filters.featured-categories.is-collapsed .featured-cards{
    max-height:0;
    overflow:hidden;
    margin-top:0;
    opacity:0;
    pointer-events:none;
    transition:max-height .25s ease, opacity .2s ease;
  }
  
  .filters.featured-categories .featured-cards{
    max-height:1200px;
    transition:max-height .25s ease, opacity .2s ease;
  }
    
/* Smooth scroll para navegación rápida */
html { scroll-behavior: smooth; }

/* Sticky actions */
.sticky-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.sticky-icon-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
  color: var(--color-principal);
  background: rgba(234, 200, 145, 0.35);
  border: 1px solid rgba(167, 128, 90, 0.35);
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.sticky-icon-btn i{
  font-size: 1rem;
}

.sticky-icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(234, 200, 145, 0.55);
  border-color: rgba(167, 128, 90, 0.55);
}

.sticky-icon-btn:active{
  transform: translateY(0);
}

/* En mobile dejamos solo íconos para que no explote el ancho */
@media (max-width: 768px){
  .sticky-actions{ gap:8px; }
  .sticky-icon-btn span{ display:none; }
  .sticky-icon-btn{ padding:8px 10px; }
  .sticky-btn{ display:none; } /* si querés mantenerlo visible en mobile, decime y lo adaptamos */
}

/* ===== Featured cards más compactas ===== */
.featured-cards{
    gap: 16px;
  }
  
  .featured-card{
    height: 200px;           /* antes estaban ~280/300 */
    border-radius: 16px;
  }
  
  .featured-card .card-image{
    background-position: center;
    filter: saturate(0.95) contrast(0.95);
  }
  
  .featured-card .card-label{
    font-size: 1rem;
    padding: 10px 12px;
    line-height: 1.2;
  }
  @media (max-width: 768px){
    .featured-cards{
      gap: 12px;
    }
  
    .featured-card{
      height: 140px;        /* 🔥 gran mejora */
    }
  
    .featured-card .card-label{
      font-size: 0.95rem;
      padding: 8px 10px;
    }
  }
  .featured-card{
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  .featured-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }

/* ===== FIX labels featured cards ===== */

.featured-card{
    position: relative;
    overflow: hidden;
  }
  
  /* Imagen ocupa todo */
  .featured-card .card-image{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  
  /* Label siempre visible abajo */
  .featured-card .card-label{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
  
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.25),
      transparent
    );
  
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    pointer-events: none;
  }
  
  /* Mobile más compacto aún */
  @media (max-width: 768px){
    .featured-card .card-label{
      font-size: 0.85rem;
      padding: 8px 10px;
    }
  }
  .featured-card:hover .card-label{
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.35),
      transparent
    );
  }
/* ===== Card image para SVG inline ===== */
.card-image{
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  
  .card-image svg{
    width: 100%;
    height: 100%;
    display: block;
  }

  /* =========================================================
   FIX DEFINITIVO: Featured cards con SVG (sin “caja blanca”)
   Pegalo AL FINAL del style.css para que sobreescriba todo.
   ========================================================= */

/* Grid */
.featured-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 0 0 40px 0;
  }
  
  /* Card */
  .featured-card{
    position: relative;
    height: 200px;            /* desktop */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
  }
  
  .featured-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }
  
  /* Imagen (contenedor del SVG) */
  .featured-card .card-image{
    position: absolute;
    inset: 0;
    display: block;
  
    /* IMPORTANTÍSIMO: anulamos el padding-top viejo */
    padding: 0 !important;
  
    /* por si el svg tarda o falla, queda un fondo lindo */
    background: linear-gradient(135deg, rgba(234,200,145,.9), rgba(247,242,232,.95));
  }
  
  /* El SVG ocupa toda la card */
  .featured-card .card-image svg{
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Label siempre visible abajo */
  .featured-card .card-label{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.72),
      rgba(0,0,0,0.28),
      transparent
    );
  
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    pointer-events: none;
  }
  
  /* Mobile */
  @media (max-width: 768px){
    .featured-cards{ gap: 12px; }
  
    .featured-card{
      height: 140px;          /* mobile */
    }
  
    .featured-card .card-label{
      font-size: 0.86rem;
      padding: 8px 10px;
    }
  }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 18px; }
  .section-head h2 { margin: 0 0 6px; font-size: clamp(22px, 3.5vw, 34px); }
  .section-head p { margin: 0; opacity: .85; }
  
  .map-ui { margin-top: 10px; }
  .map-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
  .chip{
    border:1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: inherit;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
  }
  .chip:hover{ transform: translateY(-1px); }
  .chip.is-active{ background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
  
  .map-wrap{
    display:grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .map{
    height: 62vh;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
  }
  .map-side{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    overflow: hidden;
  }
  .map-side__head{
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
    opacity: .9;
  }
  .map-list{ padding: 10px; display:flex; flex-direction:column; gap:10px; max-height: 38vh; overflow:auto; }
  .map-item{
    display:flex; gap:10px; align-items:flex-start;
    padding: 10px; border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
  }
  .map-item strong{ display:block; }
  .map-item small{ opacity:.8; display:block; margin-top:2px; }
  .map-item a{ margin-left:auto; white-space:nowrap; }
  
  @media (min-width: 900px){
    .map-wrap{ grid-template-columns: 1.4fr .6fr; align-items: stretch; }
    .map-list{ max-height: calc(62vh - 44px); }
  }
  
  /* Carrusel paseos */
  .carousel{ position:relative; }
  .car-viewport{ overflow:hidden; border-radius: 18px; }
  .car-track{
    display:flex; gap:14px;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    scroll-behavior:smooth;
    padding: 6px 2px 2px;
  }
  .car-track::-webkit-scrollbar{ height: 10px; }
  .car-btn{
    position:absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 999px;
    border:1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    color: #fff; font-size: 28px; line-height: 0;
    display:none; align-items:center; justify-content:center;
    cursor:pointer;
  }
  .car-btn.prev{ left: -10px; }
  .car-btn.next{ right: -10px; }
  @media (min-width: 900px){
    .car-btn{ display:flex; }
  }
  .paseo-card{
    min-width: min(82vw, 360px);
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
  }
  .paseo-card img{ width: 100%; height: 200px; object-fit: cover; display:block; }
  .paseo-card .body{ padding: 12px 12px 14px; }
  .paseo-card h3{ margin: 0 0 6px; font-size: 18px; }
  .paseo-card p{ margin: 0 0 10px; opacity:.85; }
  .paseo-card .meta{ display:flex; gap:10px; flex-wrap:wrap; opacity:.85; font-size: 13px; }
  .paseo-card a{ display:inline-flex; margin-top: 10px; }
  
  /* CTA */
  .cta-card{
    display:flex; gap:16px; align-items:center; justify-content:space-between;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
  }
  @media (max-width: 650px){
    .cta-card{ flex-direction:column; align-items:stretch; }
  }
/* ===== FIX MAPA LEAFLET ===== */
#map {
  width: 100%;
  height: 420px;
  min-height: 320px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  #map {
    height: 360px;
  }
}
    