* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Hero-Bold', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F3F5FB;
    color: #1b1b1e;
    background: url('../Recursos/hero-contacto.webp');
    background-attachment:fixed; ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

h1{font-size: 4rem; font-family: "Schibsted Grotesk", serif;}
h2{font-size: 1.75em; font-family: "Schibsted Grotesk", serif;}
h3{font-size: 2rem;}
h4{font-size: 1.5rem; font-family: "Schibsted Grotesk", serif;}
p{font-size: 1.25rem; font-family: "Schibsted Grotesk", serif;}
ul{list-style: none; padding: 0; margin: 0;}
li{font-size: 1.25rem; font-family: "Schibsted Grotesk", serif;}

section {
    position: relative; /* Necesario para z-index */
    overflow: visible; /* Permite que el contenido salga */
    z-index: 1; /* Ajusta según sea necesario */
}

/* Inicialmente ocultos */
.container {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10%);
    transition: all .5s;
}
/* Cuando entran en la vista (30% inferior), aparecen */
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* Header */
header {
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 1rem 8%;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F5FB;
    border-bottom:1px  solid #000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: top 0.1s ease-in-out;
}

/* Espacio reservado para evitar el salto */
.header-placeholder {
    height: 100%; /* Ajusta esto a la altura del navbar */
    display: none; /* Se activará cuando el header cambie */
}

header.scrolled {
    position: fixed;
    left: 0;
    border: 1px solid #000;
    margin: .5rem auto;
    width: 50%;
    height: 4.5rem;
    background: #fff;
    padding: 0.05rem 7%;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
   
}

header.scrolled.visible {

    opacity: 1; /* Hace visible */
}

/* Cuando el navbar cambia a `fixed`, mostramos el espacio reservado */
header.scrolled + .header-placeholder {
    display: block;
}

header.scrolled .navlist a {
    color: #000;
}

/* Cuando el header tiene la clase scrolled */
header.scrolled .btn-content {
    border: 1px solid #000;
    background: #fff;
    color: #000000;
    box-shadow: none;
}

header.scrolled .btn-content:hover {

    transform: scale(1.1);
    color: #000000;
}

/* Ocultar back-btn cuando el header tiene la clase scrolled */
header.scrolled .back-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.logo img {
    width: 10rem;
    height: auto;
}

header.scrolled .logo img{
    width: 7rem;
    height: auto;
}

header.scrolled .logo:hover {
    
    transform: scale(1.1);
    color: #000000;
    
}

.navlist {
    display: flex;
}

.navlist a {
    display: inline-block;
    margin: 0 35px;
    color: #1b1b1e;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative; /* Necesario para el pseudo-elemento */
    text-decoration: none; /* Eliminamos el subrayado por defecto */
}

/* Subrayado animado */
.navlist a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Ajusta esta posición según tu diseño */
    width: 0;
    height: 2px; /* Grosor del subrayado */
    background-color: currentColor; /* Hereda el color del texto */
    transition: width 0.3s ease;
}

.navlist a:hover::after {
    width: 100%; /* Ancho completo al hacer hover */
}

.navlist a:hover {
    color: #f39c12;
}

header.scrolled a:hover {
    color: #f39c12;
}

/* Right Section (Button & Icon) */
.nav-right {
    display: flex;
    align-items: center;
}

.button-container {
    position: relative;
    width: 10rem; /* Ancho del botón */
    height: 3rem; /* Alto del botón */
    margin: 5px;
}

#blog-button{
    visibility: hidden;
}

/* Efecto hover en el contenedor */
.button-container:hover .btn-content {
    background-color: #fff;
    color: #000000; /* Desplaza el botón hacia arriba y la izquierda */
}

.button-container:hover .back-btn {
    transform: translate(5px, 5px); /* Desplaza el fondo hacia abajo y la derecha */
}

/* Estilo del botón */
.btn-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #031A6B; /* Fondo blanco */
    color: #ffffff; /* Texto negro */
    border: none;
    border-radius: 20px; /* Bordes redondeados */
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
}

/* Fondo del botón */
.back-btn {
    position: absolute;
    top: 5px; /* Desplazamiento inicial */
    left: 5px; /* Desplazamiento inicial */
    width: 100%;
    height: 100%;
    background-color: #FF7700; /* Color naranja */
    z-index: 1;
    border-radius: 20px; /* Bordes redondeados */
    transition: all 0.2s ease-in-out;
}

#menu-icon {
    font-size: 34px;
    color: #000000;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

#hero {
    padding: 4rem 2rem;
    border-bottom: 3px solid var(--primary-color);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: transparent linear-gradient(
        0deg,  /* De negro abajo a transparente arriba */
        rgba(0, 0, 0, 0.2),  /* Más oscuro en la parte inferior */
        rgba(0, 0, 0, 0) /* Completamente transparente en la parte superior */
        );
}

#hero .container {
    max-width: 1200px;
    margin: 0 ;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.title-contacto{
    text-align: center;
    max-width: 650px;
}


.title-contacto h1 {
    text-align: center;
    font-size: 5rem;
    margin: 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: #ffffff;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.5));
}

.title-contacto span {
    font-size: 5rem;
    font-weight: lighter;

}

#whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: auto;
    background: linear-gradient( #25d366 0%, #128c7e 80%);
    padding: 100px 50px; /* Aumentamos el padding vertical */
    position: relative; /* Necesario para posicionar la imagen de manera absoluta */
    overflow: hidden; /* Evita que la imagen se desborde de la sección */
}

#whatsapp .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start; /* Alinea el contenido a la derecha */
    align-items: center;
    position: relative; /* Necesario para posicionar la imagen de manera absoluta */
    padding: 20px;
}

#whatsapp .whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinea el contenido a la derecha */
    justify-content: center;
    padding: 1.5rem;
    gap: 25px;
    text-align: center; /* Alinea el texto a la derecha */
    width: 100%; /* Limita el ancho del texto */
    max-width: 800px; /* Ancho máximo del texto */
    z-index: 2; /* Asegura que el texto esté por encima de la imagen */
}

#whatsapp .whatsapp-text h2 {
    font-size: 6.5rem; /* Tamaño grande para el título */
    margin-bottom: 20px; /* Espacio entre el título y el párrafo */
    color: #fff; /* Color del título */
}

#whatsapp .whatsapp-text h3 {
    font-size: 2.5rem; /* Tamaño adecuado para el párrafo */
    color: #fff; /* Color del texto */
}



.container .img-whatsapp {
    position: absolute; /* Permite superponer la imagen */
    left: 50%; /* Mueve la imagen hacia la izquierda */
    top: 65%; /* Centra verticalmente */
    transform: translateY(-55%); /* Ajusta el centrado vertical */
    z-index: 1; /* Asegura que la imagen esté por encima del contenido */
}

.img-whatsapp img {
    width: 45rem; /* Ajusta el tamaño de la imagen */
    height: auto;
    max-width: none; /* Permite que la imagen sea más grande que su contenedor */
    border-radius: 25px;
     transform: scaleX(-1);
}

.whatsapp-text .button-container{
    position: relative;
    width: 20rem; /* Ancho del botón */
    height: 5rem; /* Alto del botón */
    margin-top: 15px; 
}


.whatsapp-text .btn-content{
    border-radius: 25px; /* Bordes redondeados */
    background-color: #25d366;
    font-size: 1.8rem;
}

.bx.bxl-whatsapp {
    font-size: 3rem;      /* Hace el ícono más grande */
    margin-right: 10px;   /* Añade separación entre el ícono y el texto */
}

.whatsapp-text .button-container:hover .btn-content {
    background-color: #fff;
    color: #000000; /* Desplaza el botón hacia arriba y la izquierda */
    border: 0.15rem solid #000;
}




#ubicacion{
    padding: 3rem 15rem;
    background: linear-gradient(120deg, #FFE01B 0%, #F43627 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#ubicacion .container{
    max-width: 1200px;
    margin: 0 ;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#ubicacion .container .ubicacion-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 0 5rem;
    margin-bottom: 3rem;
    margin-top: 50px;
    
}

.ubicacion-title h2{
   filter: drop-shadow(10px 10px 5px rgba(0,0,0,0.5)) ;
    margin-bottom: 20px;
}

.map-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.map-container .map-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
}

.map-card .mapa{
    width: 500px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.datos-ubicacion{
    width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    background-color: #031a6b;
    border-radius: 15px;
}

.datos-ubicacion h3{
    font-size: 4rem;
    margin-bottom: 10px;
    color: #fff;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.3)) ;
}

.datos-ubicacion p{
    font-size: 1.4rem;
    color: #fff;
    
}

#faq-section{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: auto;
    width: 100%; 
    background: linear-gradient(120deg, #0077B6 0%, #031A6B 80%);
    padding: 30px 15px;
    padding-bottom: 0;
    overflow: hidden; /* Evita el desbordamiento */
    position: relative;
    scroll-margin-top: 80px;
}

#faq-section .container{
    width: 100%; /* Permite que el contenedor se adapte al ancho disponible */
    max-width: 1100px; /* Controla el ancho máximo del contenedor */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 30px;
    
}

.title-container{
    margin-bottom: 50px;
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.3)) ;
}

.accordion-container {
    
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0px 30px;
}

.accordion {
    position: relative;
    width: 100%;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 10px;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.accordion-title {
    text-align: start;
    padding: 25px;
    width: 100%;
    cursor: pointer;
    background: #FF7700;
    border-radius: 10px 10px 0 0;
}

.accordion-title h3{
    color: #fff;
    font-size: 1.2rem;
    padding-left: 20px;
    
}


.accordion-content {
    padding: 0 20px;
    text-align: start;
    line-height: 1.5;
    color: #514c4c;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.accordion-content p{
    font-size: 1.2rem;
    padding: 20px;
}

/* Cuando el acordeón está expandido */
.accordion.expanded .accordion-content {
    padding: 0 20px;
}


footer {
    background: #001524;
    color: #fff;
    padding: 40px 0;
    padding-bottom: 0;
}

.containfoot {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5rem;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    padding-bottom: 20px;
}

.visitanos, .enlaces, .info-contacto, .social-neworks {
    flex: 1;
    min-width: 300px;
}

.visitanos  {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.enlaces{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-contacto .datos-contacto{
    margin-top: 4rem;
    
}

.title-visitanos h3, .title-enlaces h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0a500;
    display: inline-block;
    padding-bottom: 5px;
}

.title-visitanos h4 {
    font-size: 1.5rem;
    margin: 10px 0 5px;
    color: #ffffff;
}

p {
    font-size: 1.04rem;
    margin: 5px 0;
    line-height: 1.5;
}

.menu-enlaces ul {
    list-style: none;
    padding: 0;
}

.menu-enlaces ul li {
    margin: 8px 0;
}

.menu-enlaces ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.menu-enlaces ul li a:hover {
    color: #00B4D8;
}

.datos-contacto i {
    color: #ffffff;
    margin-right: 1px;
    font-size: 1.5rem;
}

.datos-contacto li {
    margin: 8px 0;
    font-size: 1.2rem;
}

.datos-contacto li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.datos-contacto li a:hover {
    color: #00B4D8;
}

.social-neworks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-aso img {
    max-width: 15rem;
    margin-bottom: 10px;
}

.redes-sociales ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.redes-sociales ul li a {
    color: #fff;
    font-size: 3rem;
    transition: color 0.3s ease;
}

.redes-sociales ul li a:hover {
    color: #00B4D8;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
    color: #fff; /* Texto en blanco para contraste */
    font-size: 14px;
   margin: 0;
}

.footer-bottom .containfoot {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copy-right p {
    margin: 0;
    font-weight: 300; /* Texto más liviano */
    letter-spacing: 0.5px;
}

.copy-right p:hover {
    color: #f39c12; /* Cambio de color al pasar el cursor */
    transition: color 0.3s ease;
}


@media (max-width: 1536px) {

    header.scrolled {
        padding: 0.05rem 4%;   
    }
    
    .visitanos{
        margin-right: 1rem;
    }

    .containfoot{
        gap: 1rem;
    }
}
@media (max-width: 1400px) {
    header.scrolled {
        padding: 0.05rem 5%;
    }
    
    .visitanos{
        margin-right: 2rem;
    }

    .containfoot{
        gap: 1rem;
    }
}


@media (max-width: 1200px) {
    
    header {
        padding: 20px 4%;
    }

    header.scrolled{
        width:90%;
    }
    
    #whatsapp .whatsapp-text{
        width: 60%;
    }
    
    #whatsapp .whatsapp-text h2 {
        font-size: 5rem;
    }
    
    #whatsapp .whatsapp-text h3{
        font-size: 2rem;
    }
    
    
    .containfoot{
        padding: 0 25px;
        gap: 0;
    }
    .social-neworks{
        margin: 0;
    }

    .logo-aso img {
        margin-top: 30px;
      }

}

@media (max-width: 1175px){

    .logo img {
        width: 100px;
        height: auto;
    }
    .navlist a {
        margin: 0 25px;
    }
    .btn {
        padding: 11px 23px;
    }

    header.scrolled{
        width:90%;
    }

    .container .img-whatsapp{
        left: 45%;
    }

    .map-container .map-card{
        max-width: 850px;
    }

    .container .img-whatsapp img {
        width: 600;
        height: auto;
    }
}

@media (max-width: 940px ){
    header,
    header.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px 8%;
        background: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        color: #ffffff;
        opacity: 1; /* Siempre visible */
        transition: none; /* Deshabilita las transiciones */
    }
    
    /* Ocultamos el placeholder, ya que no se necesita para móviles */
    .header-placeholder {
        display: none;
    }
    
    /* Ajustamos el menú responsive */
    #menu-icon {
        display: block;
    }
    
    .navlist {
        position: fixed;  /* Lo cambiamos a fixed para que se superponga */
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(32px);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 180px;
        transition: right 0.7s ease;
        z-index: 1000;
    }
    
    .navlist a {
        display: block;
        padding: 0;
        margin-bottom: 50px;
        font-size: 1.7rem;
        color: #fff;
    }
    
    .navlist.open {
        right: 0;
    }
    

    
    header .button-container{
        display: none;
    }

    #whatsapp .whatsapp-text h2 {
        font-size: 3rem;
    }

    #whatsapp .whatsapp-text h3{
        font-size: 1.5rem;
    }

    .container .img-whatsapp img{
        width: 600px;
    }

    .datos-ubicacion p {
  font-size: 1.4rem;
  color: #fff;
  padding: 2rem;
}

}

@media (max-width: 720px) {

    .title-contacto h1, .title-contacto span  {
        font-size: 4rem;
    }        

    #whatsapp {
        padding: 35px 50px;
    }

    .container .img-whatsapp img {
        width: 429px;
      }

    #ubicacion {
        padding: 2rem 1rem;
      }
      
      /* Asegurarse que el container se acomode en columna */
      #ubicacion .container {
        flex-direction: column;
        padding: 0;
      }
      
      
      #ubicacion .container .ubicacion-title{
        font-size: 2.5rem;
        margin: 0 1rem 2rem;
      }
    
      .ubicacion-title h2 {
        filter: drop-shadow(10px 10px 5px rgba(0,0,0,0));
        margin-bottom: 20px;
        font-size: 3rem;
      }
      
      .ubicacion-title h3 {
        filter: drop-shadow(10px 10px 5px rgba(0,0,0,0));
        margin-bottom: 20px;
        font-size: 1.5rem;
      }
      /* Cambiar la disposición de cada map-card para que se apilen verticalmente */
      .map-container .map-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 30rem;
      }
      
      /* Hacer que tanto el mapa como la caja de datos se ajusten al ancho del contenedor */
      .map-card .mapa,
      .datos-ubicacion {
        width: 100%;
        height: auto;
      }

      .map-card .mapa {
        width: 100%;
        height: 300px;
      }
    
      .datos-ubicacion {
        gap: 5px;
        padding: 1rem;
      }
      
      /* Ajustar tamaños de textos en datos-ubicacion para mayor legibilidad */
      .datos-ubicacion h3 {
        font-size: 2rem;
        
      }
      
      .datos-ubicacion p {
        font-size: 1rem;
        padding: 0;
      }
}


@media(max-width: 512px){
    .map-container .map-card {
        width: 24rem;
      }

      .container .img-whatsapp img{
        display: none;
    }

    #whatsapp .whatsapp-text {
        width: 100%;
      }
}
@media (max-width: 450px){

    /* Forzamos el header a ocupar el 100% sin márgenes ni animaciones */
    header,
    header.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px 8%;
        background: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        color: #000;
        opacity: 1; /* Siempre visible */
        transition: none; /* Deshabilita las transiciones */
    }
    
    /* Ocultamos el placeholder, ya que no se necesita para móviles */
    .header-placeholder {
        display: none;
    }
    
    /* Ajustamos el menú responsive */
    #menu-icon {
        display: block;
    }
    
    .navlist {
        position: fixed;  /* Lo cambiamos a fixed para que se superponga */
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(32px);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 180px;
        transition: right 0.7s ease;
        z-index: 1000;
    }
    
    .navlist a {
        display: block;
        padding: 0;
        margin-bottom: 50px;
        font-size: 1.7rem;
    }
    
    .navlist.open {
        right: 0;
    } 
    
    #hero {
        height: 350px;
      }
        
    #hero .title-contacto h1{
    font-size: 2.5rem;
    }

    #hero .title-contacto span{
        font-size: 2.5rem;
    }


    /* Reducir padding general del contenedor de la sección */
  #ubicacion {
    padding: 2rem 1rem;
  }
  
  /* Asegurarse que el container se acomode en columna */
  #ubicacion .container {
    flex-direction: column;
    padding: 0;
  }
  
  
  #ubicacion .container .ubicacion-title{
    font-size: 2.5rem;
    margin: 0 1rem 2rem;
  }

  .ubicacion-title h2 {
    filter: drop-shadow(10px 10px 5px rgba(0,0,0,0));
    margin-bottom: 20px;
    font-size: 3rem;
  }
  
  .ubicacion-title h3 {
    filter: drop-shadow(10px 10px 5px rgba(0,0,0,0));
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  /* Cambiar la disposición de cada map-card para que se apilen verticalmente */
  .map-container .map-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  /* Hacer que tanto el mapa como la caja de datos se ajusten al ancho del contenedor */
  .map-card .mapa,
  .datos-ubicacion {
    width: 100%;
    height: auto;
  }

  .datos-ubicacion {
    gap: 5px;
    padding: 1rem;
  }
  
  /* Ajustar tamaños de textos en datos-ubicacion para mayor legibilidad */
  .datos-ubicacion h3 {
    font-size: 2rem;
    
  }
  
  .datos-ubicacion p {
    font-size: 1rem;
    padding: 0;
  }

  #faq-section .container {
    padding: 30px 0;
    margin: 0;
  }

  .accordion-title h3 {
    font-size: 0.8rem;
  }

  .accordion-title {
    padding: 10px;
    
  }

  .accordion-container {
    padding: 0px 10px;
  }

  .accordion-content p {
    font-size: 0.8rem;
   
  }

  .enlaces {
    margin-top: 30px;
    gap: 0;
  }
}