/*/////////////////////////////////////////
///// RESET ///////
///////////////////////////////////////*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
    background-color: #998e7f;
    font-display: swap;
}

/* Screen Reader Only - Accesibilidad SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible para accesibilidad */
:focus-visible {
  outline: 2px solid #c0b3a1;
  outline-offset: 2px;
}

/*/////////////////////////////////////////
///// MENU ///////
///////////////////////////////////////*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 0 50px;
    height: 100px;
    gap: 100px;
    transition: all 0.4s ease;
    box-shadow: 0 0px 0px rgba(0,0,0,0);
}

.logo {
    height: 70px;
    width: auto;
    flex-shrink: 0;
    margin: 0px 50px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.shrunk .navMenu {
    height: 85px;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shrunk .logo {
    height: 45px;
    margin: 0px 30px;
}

.shrunk .menuPrincipal > li > a {
    font-size: 18px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.menuPrincipal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.menuPrincipal:first-of-type {
    justify-content: flex-end;
}

.menuPrincipal:last-of-type {
    justify-content: flex-start;
}

.menuPrincipal > li > a {
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
    top: 5px;
}

.menuPrincipal > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c0b3a1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menuPrincipal > li > a:hover::after {
    width: 100%;
}

.menuPrincipal > li > a:hover {
    color: #c0b3a1;
}

/* Botón Hamburguesa - SOLO VISIBLE EN MOBILE */
.botonHamburguesa {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    z-index: 1001;
}

.linea-hamburguesa {
    width: 25px;
    height: 3px;
    background-color: #867666;
    border-radius: 2px;
    transition: all 0.4s ease;
    display: block;
}

.botonHamburguesa.activo .linea-hamburguesa:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.botonHamburguesa.activo .linea-hamburguesa:nth-child(2) {
    opacity: 0;
}

.botonHamburguesa.activo .linea-hamburguesa:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú Mobile - OCULTO POR DEFECTO */
.menuMobile {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.menuMobile.activo {
    max-height: 400px;
}

.menuMobileItems {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menuMobileItems li {
    border-bottom: 1px solid #f0f0f0;
}

.menuMobileItems li:last-child {
    border-bottom: none;
}

.enlace-menu-mobile {
    display: block;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.enlace-menu-mobile:hover {
    background-color: #f5f5f5;
    color: #c0b3a1;
    padding-left: 30px;
}

/* Enlaces Rápidos Mobile - Reserva y Contacto */
.enlacesRapidosMobile {
    display: none;
    list-style: none;
    flex-direction: row;
    gap: 12px;
    align-items: end;
    margin: 0;
    padding: 0;
}

.enlaceRapido {
    text-decoration: none;
    color: #333;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid #c0b3a1;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

.enlaceRapido:hover {
    background-color: #c0b3a1;
    color: #fff;
}

/* Media Query Tablet + Mobile (hasta 1024px) - INCLUYE HAMBURGUESA */
@media (max-width: 1024px) {
    .navMenu {
        padding: 0 15px;
        height: 70px;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo {
        height: 50px;
        margin: 0 10px;
        margin-right: auto;
        flex-shrink: 0;
    }
    
    .menuPrincipal {
        display: none;
    }
    
    .botonHamburguesa {
        display: flex;
        flex-shrink: 0;
    }
    
    .enlacesRapidosMobile {
        display: flex;
        margin: 0;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
    }
    
    .menuMobile {
        display: block;
        top: 70px;
    }
    
    .shrunk .navMenu {
        height: 70px;
    }
    
    /* Desactivar efecto shrunk en responsive */
    .shrunk .logo {
        height: 50px;
        margin: 0 10px;
    }
    
    /* Ocultar Reserva y Contacto en el menú móvil */
    .menuMobileItems li:nth-child(1),
    .menuMobileItems li:nth-child(5) {
        display: none;
    }
}

/* Media Query Mobile (hasta 768px) */
@media (max-width: 1024px) {
    .navMenu {
        padding: 0 15px;
        height: 70px;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo {
        height: 50px;
        margin: 0 10px;
        margin-right: auto;
        flex-shrink: 0;
    }
    
    .menuPrincipal {
        display: none;
    }
    
    .botonHamburguesa {
        display: flex;
        flex-shrink: 0;
    }
    
    .enlacesRapidosMobile {
        display: flex;
        margin: 0;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .menuMobile {
        display: block;
        top: 70px;
    }
    
    .shrunk .navMenu {
        height: 70px;
    }
    
    /* Desactivar efecto shrunk en responsive */
    .shrunk .logo {
        height: 50px;
        margin: 0 10px;
    }
    
    /* Ocultar Reserva y Contacto en el menú móvil */
    .menuMobileItems li:nth-child(1),
    .menuMobileItems li:nth-child(5) {
        display: none;
    }
}

/*/////////////////////////////////////////
///// TITULO ///////
///////////////////////////////////////*/
.titulo {
    background-color: #867666;
    padding: 30px 20px;
    border-bottom: 4px solid #c0b3a1;
    text-align: center;
    padding-top: 130px;
}

.titulo h1 {
    color: #fcf9f5;
    font-size: 58px;
    font-weight: 800;
    margin: 0 auto;
    letter-spacing: -1px;
}

.titulo h3 {
    color: #c0b3a1;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
    font-weight: 400;
}


/*/////////////////////////////////////////
///// CARRUSEL ///////
///////////////////////////////////////*/
.carousel-inner img {
    width: 100%;
    height: 544px;
    object-fit: cover;
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.19);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    max-width: 650px;
    background-color: rgba(134, 118, 102, 0.9); 
    border-radius: 12px;
    padding: 35px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: rgba(0, 0, 0, 0.526) 0px 0px 10px;
}

.carousel-caption h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 35px;
}

.carousel-caption .botonCarousel {
    background-color: #e1b80d;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.carousel-caption .botonCarousel:hover {
    background-color: #9a7d0b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/*/////////////////////////////////////////
///// TARJETA INICIO ///////
///////////////////////////////////////*/
.tarjetaInicio-section {
    background-color: #867666;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.tarjetaInicio-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 400px;
    position: relative;
}

.tarjetaInicio-texto {
    flex: 1;
    padding: 60px 7%;
    z-index: 2;
}

.tarjetaInicio-texto p {
    color: #fcf9f5;
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
    max-width: 650px;
}

.tarjetaInicio-imagen {
    width: 45%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0; 
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.tarjetaInicio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.2) contrast(1.1) brightness(0.9);
}



.separadorInicio {
    border: none;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    margin-top: 8px;
    margin-bottom: 8px;
}


/*/////////////////////////////////////////
///// TARJETAS MAIN ///////
///////////////////////////////////////*/

.mision-vision-fullwidth {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mision-row {
    display: flex;
    width: 100%;
    min-height: 520px;
    max-height: 520px;
    align-items: stretch;
}

.mision-row.reverse {
    flex-direction: row-reverse;
}

.mision-image {
    flex: 1;
    overflow: hidden;
}

.mision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mision-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcf9f5;
    padding: 40px 60px;
}

.reverse .mision-text {
    background-color: #867666;
}

.reverse .mision-text h3, 
.reverse .mision-text p {
    color: #fcf9f5;
}

.text-wrapper {
    max-width: 480px;
}

.mision-text h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #867666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.linea-dorada {
    width: 40px;
    height: 5px;
    background-color: #e1b80d;
    border: none;
    margin: 0 0 20px 0;
}

.mision-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}


/* Estado inicial de las filas */
.mision-row {
    opacity: 0;
    transform: translateY(30px); /* Ligero desplazamiento hacia abajo */
    transition: all 0.8s ease-out; /* Animación fluida */
}

/* Estado cuando la fila entra en pantalla */
.mision-row.mision-visible {
    opacity: 1;
    transform: translateY(0);
}



/*/////////////////////////////////////////
///// FORMULARIOS ///////
///////////////////////////////////////*/
:root {
    --cafeOscuro: #867666;
    --cafeClaro: #c0b3a1;
    --cremaFondo: #fcf9f5;
    --blancoPuro: #ffffff;
}

.seccionReserva { background-color: var(--cremaFondo); padding: 80px 20px; display: flex; justify-content: center; font-family: 'Segoe UI', sans-serif; }
.contenedorPrincipal { background: var(--blancoPuro); width: 100%; max-width: 850px; border-radius: 20px; box-shadow: 0 15px 45px rgba(0,0,0,0.07); overflow: hidden; }

/* Cabecera */
.cabeceraReserva { background-color: var(--cafeOscuro); padding: 40px; text-align: center; color: white; transition: 0.4s; }
.cabeceraReserva.modoOnline { background-color: #5a6b7d; }
.cabeceraReserva h2 { font-size: 30px; margin-bottom: 20px; }
.conmutadorModalidad { background: rgba(0,0,0,0.1); padding: 5px; border-radius: 50px; display: inline-flex; }
.botonToggle { border: none; background: none; color: white; padding: 10px 25px; border-radius: 50px; cursor: pointer; font-weight: 600; }
.botonToggle.activo { background: var(--cafeClaro); }

/* Cuerpo */
.cuerpoReserva { padding: 50px; min-height: 400px; }
.panelReserva { display: none; }
.panelReserva.visible { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.indicadorPaso { color: var(--cafeClaro); text-transform: uppercase; font-weight: 700; font-size: 12px; margin-bottom: 25px; letter-spacing: 1px; }

/* Custom Selects */
.controlInputCustom { margin-bottom: 25px; position: relative; }
.controlInputCustom label { display: block; margin-bottom: 8px; color: var(--cafeOscuro); font-weight: 600; font-size: 14px; }
.customSelect { position: relative; width: 100%; }
.selectTrigger { padding: 16px; border: 2px solid #eee; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; background: #fafafa; }
.selectTrigger:hover { border-color: var(--cafeClaro); }
.customSelect.open .selectTrigger { border-color: var(--cafeClaro); background: white; }

.customOptions { 
    position: absolute; top: 105%; left: 0; right: 0; background: white; 
    border: 1px solid #ddd; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    z-index: 100; display: none; max-height: 300px; overflow-y: auto;
}
.customSelect.open .customOptions { display: block; }

.optionItem { padding: 14px 20px; cursor: pointer; border-bottom: 1px solid #f5f5f5; font-size: 15px; transition: 0.2s; }
.optionItem:hover { background: var(--cremaFondo); color: var(--cafeOscuro); }

/* Diferenciación de Submenús */
.optionHeader { padding: 12px 20px; font-weight: 700; color: #999; font-size: 12px; text-transform: uppercase; background: #f9f9f9; }
.optionSubmenu .optionItem { padding-left: 40px; border-left: 3px solid var(--cafeClaro); font-style: italic; color: #666; }

/* Perfil Profesional en Select */
.optionContent { display: flex; align-items: center; gap: 12px; }
.optionProfilePic { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cremaFondo); }
.optionName { display: block; font-weight: 600; color: #333; }
.optionLabel { font-size: 12px; color: var(--cafeClaro); }

/* Inputs estándar */
.inputEstilizado { width: 100%; padding: 16px; border: 2px solid #eee; border-radius: 12px; margin-bottom: 15px; font-size: 15px; }
.filaDoble { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* Botones */
.botoneraFormulario { display: flex; gap: 15px; margin-top: 30px; }
.botonSiguiente, .botonFinalizar { flex: 2; background: var(--cafeClaro); color: white; border: none; padding: 16px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.botonSiguiente:disabled { background: #eee; color: #bbb; cursor: not-allowed; }
.botonAnterior { flex: 1; background: white; border: 2px solid #eee; border-radius: 50px; cursor: pointer; color: #888; }





/*/////////////////////////////////////////
///// TRATAMIENTOS ///////
///////////////////////////////////////*/
:root {
  --colorClaro: #c0b3a1;
  --colorOscuro: #867666;
  --blancoSuave: #fdfcfb;
  --transparenciaBlanca: rgba(255, 255, 255, 0.85);
}

.contenedorTratamientos {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-color: var(--blancoSuave);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#fondoMagico {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cabeceraSeccion {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 70px;
}

.tituloPrincipal {
  color: var(--colorOscuro);
  font-size: 3.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 4px solid var(--colorClaro);
  display: inline-block;
  padding-bottom: 12px;
}

.rejillaContenido {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas */
  gap: 30px;
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

.bloqueInformativo {
  padding: 40px;
  background: var(--transparenciaBlanca);
  border-top: 5px solid var(--colorClaro);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.bloqueInformativo:hover {
  border-top-color: var(--colorOscuro);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 1);
}

/* Clases de utilidad para el grid */
.columnaDoble {
  grid-column: span 2;
}

.subtituloSeccion {
  color: var(--colorOscuro);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.cuerpoTexto {
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
}

b {
  color: var(--colorOscuro);
}

.contenedorImagen {
  position: relative;
  width: 100%;
  min-height: 380px; /* Un poco más altas para equilibrar */
}

.imagenFondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- SOLUCIÓN: Recuperar y Definir Clip-Paths --- */

.clipUno {
  /* Forma geométrica asimétrica para la primera imagen */
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  grid-column: span 2; /* Sigue ocupando 2 columnas */
}

.clipTres {
  /* Forma geométrica distinta para la última imagen */
  clip-path: polygon(0% 15%, 85% 0%, 100% 85%, 15% 100%);
}

/* Responsivo */
@media (max-width: 1200px) {
  .tituloPrincipal { font-size: 2.8rem; }
  .rejillaContenido { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .columnaDoble, .clipUno { grid-column: span 2; }
}

@media (max-width: 768px) {
  .tituloPrincipal { font-size: 2.2rem; letter-spacing: 1px; }
  .rejillaContenido { grid-template-columns: 1fr; }
  .columnaDoble, .clipUno { grid-column: span 1; }
  .bloqueInformativo { padding: 30px; }
  .contenedorImagen { min-height: 250px; }
}













.contenedorEquipo {
  width: 100%;
  padding: 100px 5%;
  background-color: #867666;
  color: #fdfcfb;
  text-align: center;
}

.tituloEquipo {
  color: #c0b3a1;
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 2px solid #c0b3a1;
  display: inline-block;
  margin-bottom: 60px;
  padding-bottom: 10px;
}

.rejillaEquipo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 50px 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.perfilMinimalista {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marcoFoto {
  width: 110px;
  height: 110px;
  background-color: #c0b3a1;
  /* Clip-path circular solicitado */
  clip-path: circle(50% at 50% 50%);
  margin-bottom: 15px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perfilMinimalista:hover .marcoFoto {
  transform: scale(1.1);
}

.fotoPersona {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nombrePersona {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cargoPersona {
  font-size: 0.8rem;
  color: #c0b3a1;
  letter-spacing: 1px;
}

.botonMasInfo {
  margin-top: 70px;
  background: transparent;
  border: 2px solid #c0b3a1;
  color: #c0b3a1;
  padding: 15px 45px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;

}

.botonMasInfo:hover {
  background: #c0b3a1;
  color: #867666;
}

.botonMasInfo a {
  color: inherit;
  text-decoration: none;
}















:root {
    --colorFondoPrincipal: #e5e3df;
    --colorSecundarioOscuro: #867666;
    --colorTextoPrincipal: #555;
}

.seccionTestimonios {
    background-color: var(--colorFondoPrincipal);
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.tituloSeccion {
    color: var(--colorSecundarioOscuro);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    pointer-events: none;
}

.visorCarrusel {
    width: 100%;
    cursor: grab;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.visorCarrusel.estaArrastrando {
    cursor: grabbing;
}

.contenedorTarjetas {
    display: flex;
    gap: 20px; /* Separación sutil */
    padding: 0 10px;
    will-change: transform;
    user-select: none;
}

.tarjetaTestimonio {
    flex: 0 0 450px; /* Más anchas */
    height: 300px; /* Más cortas */
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.contenidoTestimonio {
    position: relative;
    z-index: 2;
    pointer-events: none; /* Evita interferencias al arrastrar */
}

.textoOpinion {
    color: var(--colorTextoPrincipal);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.nombreAutor {
    color: var(--colorSecundarioOscuro);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
    margin: 0;
}

.lienzoComillasFondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* Contenedor de la barra (el carril) */
.contenedorBarra {
    width: 200px; /* Ancho de la barra */
    height: 2px;
    background-color: rgba(134, 118, 102, 0.2); /* Tu color oscuro con opacidad */
    margin: 40px auto 0;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

/* El indicador que se mueve */
.indicadorProgreso {
    position: absolute;
    height: 100%;
    width: 0; /* Empezamos en 0 */
    background-color: #867666; /* Tu color oscuro sólido */
    transition: width 0.1s ease-out;
}

.contenedorTarjetas {
    display: flex;
    gap: 20px; /* Separación fija para cálculos exactos */
    padding: 0;
    margin: 0;
    will-change: transform;
    user-select: none;
}

















/* Sección General */
.seccionContacto {
  background-color: #e5e3df;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contenedorContacto {
  max-width: 1200px;
  width: 100%;
}

.tituloContacto {
  color: #867666;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

/* Grid de 3 Columnas */
.gridContacto {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(134, 118, 102, 0.15);
}

/* 1. Bloque de Info (Izquierda) */
.bloqueInfoCentro {
  background-color: #867666;
  color: #e5e3df;
  padding: 60px 40px;
  display: flex;
  align-items: center;
}

.infoContenedorInterno h3 {
  font-size: 1.6rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.datoContacto {
  margin-bottom: 30px;
}

.etiqueta {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: rgba(229, 227, 223, 0.6);
}

.valor {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

.redesSutiles {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.redesSutiles a {
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.redesSutiles a:hover { opacity: 1; }

/* 2. Bloque del Mapa (Centro) */
.bloqueMapa {
  position: relative;
  filter: grayscale(0.5);
  transition: filter 0.5s ease;
}

.bloqueMapa:hover { filter: grayscale(0); }

.marcoMapa {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* 3. Bloque del Formulario (Derecha) */
.bloqueFormulario {
  padding: 60px 50px;
  background-color: #ffffff;
}

.grupoInput {
  margin-bottom: 25px;
}

.grupoInput label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #867666;
  margin-bottom: 10px;
  font-weight: 700;
}

.grupoInput input, 
.grupoInput select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #c0b3a1;
  background: transparent;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.grupoInput input:focus {
  outline: none;
  border-bottom: 1px solid #867666;
  padding-left: 8px;
}

/* Botón y Legal */
.checkLegal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #867666;
}

.checkLegal a { color: #867666; font-weight: bold; }

.textoCaptcha {
  margin-top: 15px;
  font-size: 0.7rem;
  color: #aaa;
}

.botonEnviar {
  margin-top: 30px;
  width: 100%;
  background-color: #867666;
  color: #e5e3df;
  border: none;
  padding: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 4px;
}

.botonEnviar:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .gridContacto { grid-template-columns: 1fr; }
  .bloqueInfoCentro { order: 1; text-align: center; justify-content: center; }
  .bloqueFormulario { order: 2; }
  .bloqueMapa { order: 3; height: 350px; }
  .redesSutiles { justify-content: center; }
}













.footerPremium {
    background: linear-gradient(135deg, #867666 0%, #9d8d7d 100%);
    font-family: 'Segoe UI', sans-serif;
    margin-top: 30px;
}

.footerPremium p {
    color: #fcf9f5;
}

.footerPrincipal {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 10px;
}

.bloqueIdentidad {
    display: flex;
    flex-direction: column;
}

.logoFooter {
    height: 65px;
    width: auto;
    margin-bottom: 18px;
    animation: float 3s ease-in-out infinite;
}

.tagline {
    color: #c0b3a1;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.datosContacto {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.datosContacto p {
    color: #e5e3df;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.telefonoDestacado {
    font-size: 0.95rem !important;
    color: #fcf9f5 !important;
    font-weight: 600;
}

.rrss {
    display: flex;
    gap: 16px;
    align-items: center;
}

.rrss a {
    display: inline-block;
    transition: all 0.3s ease;
}

.rrss img {
    max-width: 40px;
    max-height: 40px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.rrss a:hover img {
    transform: scale(1.15);
    opacity: 1;
}

.columnaEnlaces {
    display: flex;
    flex-direction: column;
}

.columnaEnlaces h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c0b3a1;
    margin-bottom: 24px;
    font-weight: 700;
    border-bottom: 2px solid #c0b3a1;
    padding-bottom: 12px;
}

.columnaEnlaces nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.columnaEnlaces nav a {
    color: #e5e3df;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
}

.columnaEnlaces nav a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #c0b3a1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.columnaEnlaces nav a:hover {
    color: #c0b3a1;
    padding-left: 18px;
}

.columnaEnlaces nav a:hover::before {
    opacity: 1;
}


.franjaAcreditacion {
    background-color: rgba(9, 83, 147, 0.423);
    padding: 28px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contenidoAcreditacion {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.selloVasco {
    height: 100px;
    opacity: 0.9;
    flex-shrink: 0;
    margin: 0;
    padding: 0%;
}

.contenidoAcreditacion p {
    font-size: 0.9rem;
    color: #c0b3a1;
    font-weight: 500;
    margin: 0;
}

/* Footer Legal */
.footerLegal {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.enlacesLegales {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.enlacesLegales a {
    color: #c0b3a1;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0 16px;
    position: relative;
    transition: color 0.3s ease;
}

.enlacesLegales a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.1);
}

.enlacesLegales a:hover {
    color: #e1b80d;
}

.footerLegal p {
    color: #c0b3a1;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .footerPrincipal {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 5%;
    }
}

@media (max-width: 768px) {
    .footerPrincipal {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 5%;
    }
    
    .bloqueIdentidad {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }
    
    .contenidoAcreditacion {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .enlacesLegales {
        flex-direction: column;
        gap: 8px;
    }
    
    .enlacesLegales a {
        padding: 0 8px;
    }
    
    .enlacesLegales a::after {
        content: none;
    }
}


/*/////////////////////////////////////////
///// RESPONSIVE GENERAL MOBILE & TABLET ///////
///////////////////////////////////////*/

/* ===== QUITAR ANIMACIONES EN MOBILE ===== */
@media (max-width: 1024px) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .animarIzquierda,
    .animarDerecha,
    .animarSuave,
    .animarEntrada,
    .mision-visible {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .animarIzquierda,
    .animarDerecha,
    .animarSuave,
    .animarEntrada,
    .mision-row,
    .mision-visible {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* TITULO - SIEMPRE VISIBLE */
@media (max-width: 1024px) {
    .titulo {
        padding-top: 120px;
        padding: 10px 15px;
        margin-top: 70px;
    }
    
    .titulo h1 {
        font-size: 48px;
    }
    
    .titulo h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .titulo {
        padding-top: 100px;
        padding: 30px 15px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 40px !important;
}
    
    .titulo h1 {
        font-size: 36px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
    
    .titulo h3 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-top: 0;
    }
}

/* CARROUSEL - TEXTO MÁS TRANSPARENTE */
@media (max-width: 1024px) {
    .carousel-inner img {
        height: 400px;
    }
    
    .carousel-caption {
        max-width: 500px;
        padding: 25px;
    }
    
    .carousel-caption h2 {
        font-size: 28px;
        margin-bottom: 12px;
        
        opacity: 0.9;
    }
    
    .carousel-caption p {
        font-size: 14px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: 300px;
    }
    
    .carousel-caption {
        max-width: 90%;
        padding: 15px 20px;
        border-radius: 8px;
        background-color: rgba(134, 118, 102, 0.95);
    }
    
    .carousel-caption h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .carousel-caption p {
        font-size: 12px;
        line-height: 1.4;
        opacity: 0.6;
    }
    
    .carousel-caption .botonCarousel {
        padding: 10px 20px;
        font-size: 11px;
        margin-top: 8px;
    }
}

/* TARJETA INICIO - CON BOTÓN DE RESERVA VISIBLE - SIN IMAGEN EN MOBILE */
@media (max-width: 1024px) {
    .tarjetaInicio-container {
        min-height: 120px;
        flex-direction: column;
    }
    
    .tarjetaInicio-imagen {
        display: none;
    }
    
    .tarjetaInicio-texto {
        padding: 40px 50px;
    }
    
    .tarjetaInicio-texto p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .tarjetaInicio-container {
        min-height: auto;
        flex-direction: column;
    }
    
    .tarjetaInicio-imagen {
        display: none;
    }
    
    .tarjetaInicio-texto {
        padding: 25px 20px;
        flex: 1;
        z-index: 2;
    }
    
    .tarjetaInicio-texto p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .tarjetaInicio-texto::after {
        content: '';
        display: block;
        text-align: center;
    }
}

/* MISION/VISION - IMÁGENES MÁS PEQUEÑAS */
@media (max-width: 1024px) {
    .mision-row {
        min-height: 250px;
        max-height: none;
        flex-direction: column !important;
    }
    
    .mision-row.reverse {
        flex-direction: column !important;
    }
    
    .mision-image {
        max-height: 280px;
    }
    
    .mision-text {
        padding: 30px 40px;
    }
    
    .mision-text h2 {
        font-size: 26px;
    }
    
    .mision-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .mision-row {
        min-height: auto;
        flex-direction: column !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .mision-image {
        max-height: 250px;
        min-height: 100px;
    }
    
    .mision-text {
        padding: 20px 15px;
    }
    
    .mision-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .linea-dorada {
        width: 25px;
        margin: 0 0 12px 0;
    }
    
    .mision-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .text-wrapper {
        max-width: 100%;
    }
}

/* FORMULARIO RESERVA */
@media (max-width: 1024px) {
    .seccionReserva {
        padding: 60px 15px;
    }
    
    .contenedorPrincipal {
        border-radius: 15px;
    }
    
    .cabeceraReserva {
        padding: 30px 25px;
    }
    
    .cabeceraReserva h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cuerpoReserva {
        padding: 40px;
        min-height: auto;
    }
    
    .filaDoble {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seccionReserva {
        padding: 40px 15px;
    }
    
    .cabeceraReserva {
        padding: 25px 20px;
    }
    
    .cabeceraReserva h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .cuerpoReserva {
        padding: 25px 20px;
    }
    
    .indicadorPaso {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .controlInputCustom label {
        font-size: 13px;
    }
    
    .selectTrigger {
        padding: 12px;
        font-size: 14px;
    }
    
    .inputEstilizado {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .botoneraFormulario {
        gap: 10px;
        margin-top: 20px;
    }
    
    .botonSiguiente, .botonFinalizar {
        padding: 12px;
        font-size: 13px;
    }
}

/* TRATAMIENTOS - SIMÉTRICO Y ALINEADO - IMÁGENES MÁS BAJAS */
@media (max-width: 1024px) {
    #fondoMagico {
        display: none !important;
    }
    
    .contenedorTratamientos {
        padding: 60px 0;
    }
    
    .tituloPrincipal {
        font-size: 2.4rem;
    }
    
    .cabeceraSeccion {
        margin-bottom: 50px;
    }
    
    .rejillaContenido {
        padding: 0 3%;
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .bloqueInformativo {
        padding: 30px;
    }
    
    .subtituloSeccion {
        font-size: 1.3rem;
    }
    
    .cuerpoTexto {
        font-size: 1rem;
    }
    
    .columnaDoble, .clipUno {
        grid-column: span 1;
    }
    
    .contenedorImagen {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    #fondoMagico {
        display: none !important;
    }
    
    .contenedorTratamientos {
        padding: 40px 0;
    }
    
    .cabeceraSeccion {
        margin-bottom: 30px;
    }
    
    .tituloPrincipal {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .rejillaContenido {
        grid-template-columns: 1fr !important;
        padding: 0 4%;
        gap: 15px;
        display: grid;
    }
    
    .bloqueInformativo {
        padding: 20px;
        text-align: center;
    }
    
    .columnaDoble, .clipUno {
        grid-column: span 1 !important;
    }
    
    .contenedorImagen {
        min-height: 120px;
        display: none;
    }
    
    .subtituloSeccion {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .cuerpoTexto {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* EQUIPO */
@media (max-width: 1024px) {
    .contenedorEquipo {
        padding: 80px 3%;
    }
    
    .tituloEquipo {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .rejillaEquipo {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 40px 20px;
    }
    
    .marcoFoto {
        width: 100px;
        height: 100px;
    }
    
    .nombrePersona {
        font-size: 0.9rem;
    }
    
    .cargoPersona {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .contenedorEquipo {
        padding: 50px 3%;
    }
    
    .tituloEquipo {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .rejillaEquipo {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 30px 15px;
    }
    
    .marcoFoto {
        width: 85px;
        height: 85px;
        margin-bottom: 10px;
    }
    
    .nombrePersona {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .cargoPersona {
        font-size: 0.7rem;
    }
    
    .botonMasInfo {
        margin-top: 40px;
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* TESTIMONIOS */
@media (max-width: 1024px) {
    .seccionTestimonios {
        padding: 60px 0;
    }
    
    .tituloSeccion {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .tarjetaTestimonio {
        flex: 0 0 350px;
        height: 280px;
        padding: 30px;
    }
    
    .textoOpinion {
        font-size: 1rem;
    }
    
    .nombreAutor {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .seccionTestimonios {
        padding: 40px 0;
    }
    
    .tituloSeccion {
        font-size: 1.6rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .tarjetaTestimonio {
        flex: 0 0 280px;
        height: 260px;
        padding: 25px;
    }
    
    .textoOpinion {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .nombreAutor {
        font-size: 0.95rem;
    }
    
    .contenedorBarra {
        width: 150px;
        height: 2px;
        margin: 30px auto 0;
    }
}

/* CONTACTO */
@media (max-width: 1024px) {
    .seccionContacto {
        padding: 80px 3%;
    }
    
    .tituloContacto {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }
    
    .gridContacto {
        grid-template-columns: 1fr;
    }
    
    .bloqueInfoCentro {
        order: 1;
        padding: 40px;
    }
    
    .bloqueMapa {
        order: 3;
        height: 350px;
    }
    
    .bloqueFormulario {
        order: 2;
        padding: 40px;
        border-left: none;
        border-top: 1px solid #e5e3df;
    }
}

@media (max-width: 768px) {
    .seccionContacto {
        padding: 50px 4%;
    }
    
    .tituloContacto {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .gridContacto {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }
    
    .bloqueInfoCentro {
        padding: 30px 20px;
    }
    
    .infoContenedorInterno h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .datoContacto {
        margin-bottom: 20px;
    }
    
    .etiqueta {
        font-size: 0.65rem;
        margin-bottom: 5px;
    }
    
    .valor {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .redesSutiles {
        margin-top: 15px;
        gap: 10px;
    }
    
    .redesSutiles a {
        font-size: 0.75rem;
    }
    
    .bloqueMapa {
        height: 280px;
    }
    
    .marcoMapa {
        min-height: 280px;
    }
    
    .bloqueFormulario {
        padding: 25px 20px;
    }
    
    .grupoInput {
        margin-bottom: 18px;
    }
    
    .grupoInput label {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }
    
    .grupoInput input,
    .grupoInput select {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .selectTrigger {
        padding: 12px;
    }
    
    .botonEnviar {
        padding: 14px;
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-top: 20px;
    }
}




.marcoFoto img {
    content-visibility: auto; /* Solo renderiza la foto cuando el usuario hace scroll hacia ella */
    aspect-ratio: 1 / 1; /* Evita saltos de diseño mientras carga la imagen (mejora el CLS) */
}

/*/////////////////////////////////////////
///// PRINT STYLES ///////
///////////////////////////////////////*/
@media print {
  body {
    background-color: white;
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  /* Ocultar elementos innecesarios en impresión */
  .main-header,
  .botonHamburguesa,
  .enlacesRapidosMobile,
  .carousel,
  .footerPremium,
  .seccionReserva,
  .botonCarousel,
  button,
  .rrss,
  .botonMasInfo,
  .visorCarrusel,
  .seccionContacto,
  form {
    display: none !important;
  }
  
  /* Mostrar URLs en enlaces */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
  
  /* Evitar saltos de página */
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/*/////////////////////////////////////////
///// PERFORMANCE & SEO OPTIMIZATIONS ///////
///////////////////////////////////////*/
/* Optimización de imágenes para Core Web Vitals */
img {
  max-width: 100%;
  display: block;
  font-display: swap;
}

/* Lazy loading por defecto */
[loading="lazy"] {
  background: #f3f3f3;
}

/* Mejor rendimiento en animaciones */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.seoLocalBilbao {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: #ffffff;
}

.seoLocalContainer {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
}

.seoLocalContainer h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.3;
    color: #867666;
}

.seoLocalContainer p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #333333;
}

.seoListaProblemas {
    max-width: 600px;
    margin: 30px auto 0 auto;
    line-height: 1.8;
    padding-left: 20px;
    background: #ffffff;
}

.seoListaProblemas li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .seoLocalBilbao {
        padding: 50px 20px;
    }

    .seoLocalContainer h2 {
        font-size: 1.7rem;
    }

    .seoLocalContainer p {
        font-size: 1rem;
    }
}