@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');


/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;      /* Centrado vertical si fuera necesario */
  padding: 1rem 0;
  max-width: 110px;         /* Tamaño máximo del logo */
}

.logo img {
  width: 100%;              /* Hace que el logo se adapte al contenedor */
  height: auto;             /* Mantiene proporción */
  object-fit: contain;      /* Asegura buena calidad visual */
}

/* NAV */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
}

.menu-toggle {
  background: none;       /* Quita fondo */
  border: none;           /* Quita bordes */
  outline: none;          /* Quita borde al hacer foco */
  padding: 0;
  color: #d17335;         /* Color del ícono */
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle.rotated {
  transform: rotate(90deg);
}

.menu-toggle i {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.3s ease;
}

.menu-toggle i.rotated {
  transform: rotate(180deg);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
  }

  .nav-links {
    display: flex;               /* Siempre flex para animación */
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 0;
    background-color: #fff;
    width: 100%;
    text-align: center;
    gap: 1rem;
    padding: 0 0;               /* Elimina padding para ocultar */
    max-height: 0;              /* Oculto inicialmente */
    overflow: hidden;           /* Oculta contenido cuando cerrado */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-links.active {
    max-height: 500px;          /* Ajusta según tu menú */
    padding: 20px 0;            /* Aparece padding con menú abierto */
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color:#d17335;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

/* Línea oculta inicialmente */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #d37633;
  transition: transform 0.3s ease;
}

/* Hover: línea se expande desde el centro */
.nav-links li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Cambia también el color del texto en hover */
.nav-links li a:hover {
  color: #9c5726;
}

/* Submenú oculto por defecto */
.submenu {
  position: relative;
}

.submenu-items {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  z-index: 999;
  border-radius: 6px;
  min-width: 220px;
  text-align: left;
}

.submenu-items li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #d17335;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  transition: background 0.3s;
}

.submenu-items li a:hover {
  background-color: #f2f2f2;
  color: #9c5726;
}

/* Mostrar submenú al pasar el cursor */
.submenu:hover .submenu-items {
  display: block;
}

/* Flecha */
.submenu-toggle::after {
  content: " ▾";
  font-size: 0.8rem;
}


/* BANNER */ 

.banner {
  margin-top: 80px;
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(115, 25, 112, 0.5); /* capa oscura semitransparente */
  z-index: 1;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%; /* centra horizontal, baja verticalmente */
}

.banner-texto {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  max-width: 50%;
  z-index: 2;
}

.banner-texto h1 {
  font-family: 'Poppins',sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}


/* QUIENES SOMOS */

.quienes-somos {
  padding: 1rem 2rem;
  position: relative;
  background: #fff;
}

/* Layout superior: título izquierda, párrafo derecha */
.fila-superior-nosotros {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Título a la izquierda */
.titulo-nosotros {
  font-family: 'Gravitas One', serif;
  color: #d4743a;
  font-size: 3.5rem;
  width: 45%;
  margin: 0;
}

/* Flecha SVG animada */
.flecha-animada {
  width: 150px;
  height: 100px;
  stroke: #d4743a;
  stroke-width: 1.5;                /* Línea delgada */
  fill: none;
  stroke-dasharray: 300;            /* Longitud total */
  stroke-dashoffset: 300;           /* Oculta al inicio */
  animation: dibujarFlecha 30s ease-out forwards;
  position: absolute;
  top: 9rem;                      /* Justo debajo del título */
  left: 15%;                        /* Más a la derecha del centro del título */
  z-index: 1;
}

/* Párrafo a la derecha */
.parrafo-nosotros {
  width: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #731970;
  line-height: 1.6;
  margin: 0;
}

/* Valores debajo en dos columnas */
.valores-nosotros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  max-width: 95%;
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #731970;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.valor-item svg {
  color: #d4743a;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.valor-item p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}



/* Animación del trazo */
@keyframes dibujarFlecha {
  to {
    stroke-dashoffset: 0;
  }
}



/* CONTADOR */
.contador {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.562) 0%, #d4753a 2%, #d4753a 98%, rgba(255, 255, 255, 0.562) 100%);
  padding: .7rem 0;
  text-align: center;
}

.contador-container {
  display: flex;
  justify-content: center;
  gap: 8rem;
  flex-wrap: wrap;
}

.contador-box {
  width: 200px;
}

.contador-box span {
  font-size: 2.3rem;
  font-weight: 500;
  color: #fefbea;
}

.contador-box p {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #fefbea;
}

/* FlYERS */

.flyer-section {
  width: 100%;
  padding: 0 1rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.titulo-flyer {
  text-align: center;
  margin: 2rem auto;
  max-width: 90%;
  padding: 0 1rem;
}

.titulo-flyer h2 {
  font-family: 'Gravitas One', serif;
  font-size: 2.5rem;
  color: #d4743a;
  line-height: 1.4;
}

.flyer-container {
  max-width: 75%;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  overflow: hidden;
  border-radius: 8px;
}

.flyer-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.btn-flyer,
.btn-center {
  margin: 1.5rem 0;
  text-align: center;
}

.btn-flyer .btn,
.btn-center .btn-estilo-4 {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #d07338 0%, #d16826 100%);
  color: #fcf9f9;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background-color 0.6s ease-in-out, color 0.3s ease;
}

/* Brillo metálico */
.btn-flyer .btn::before,
.btn-center .btn-estilo-4::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    10deg,
    transparent 0%,
    rgba(255, 255, 255, 0.479) 50%,
    transparent 100%
  );
  transform: rotate(120deg);
  animation: shine 4s infinite linear;
  z-index: 0;
}

/* Línea delgada recorriendo el borde */
.btn-flyer .btn::after
.btn-center .btn-estilo-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(112, 112, 112);
  border-radius: 4px;
  box-sizing: border-box;
  pointer-events: none;
  animation: borderSweep 3s linear infinite;
  z-index: 2;
}

/* Texto encima de todo */
.btn-flyer .btn span,
.btn-center a {
  position: relative;
  z-index: 3;
}

/* Animación del brillo */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* Animación del borde */
@keyframes borderSweep {
  0% {
    clip-path: inset(0 100% 100% 0);
  }
  25% {
    clip-path: inset(0 0 100% 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 100% 0);
  }
}

/* Hover */
.btn-flyer .btn:hover {
  background: linear-gradient(135deg, #a07a09, #cfa23d);
  color: white;
}

/* ALIADOS */ 

.aliados {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.aliados h2 {
  font-family: 'Gravitas One', serif;
  letter-spacing: .5px;
  font-weight: 550;
  font-size: 2.5rem;
  color: #dd792e;
  margin-bottom: 1rem;
}

.aliados p {
  font-family: 'Poppins',sans-serif;
  color: #731970;
  font-weight: 200;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
  letter-spacing: .3px;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.categoria-card {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(218, 120, 45, 0.3);
}

.categoria-card .i {
  width: 45px;
  height: 45px;
  color: #da782d;
  margin-bottom: 1rem;
}

.categoria-card span {
  font-family: 'Poppins',sans-serif;
  letter-spacing: 1px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #731970;
}


/* CONTENEDOR GENERAL MAPS */
.comercios {
  padding: 3rem 0;
  background-color: #fff; /* fondo claro y limpio */
  text-align: center;
}

/* FILTROS MAPS */
.comercios .subtitulo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #731970;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.filtros select {
  font-family: 'Poppins', sans-serif;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  background-color: #fff;
  color: #d07338;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.filtros select:focus {
  outline: none;
  border-color: #d07338;
  box-shadow: 0 0 0 3px rgba(191, 147, 13, 0.2);
}

/* MAPA */
#map {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #fff;
}

/* Loader circular mientras carga el mapa */
#map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #dd792e;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

/* Cuando el mapa ya se cargó, ocultamos el loader */
#map.cargado::before {
  content: none;
}

/* Animación del spinner */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mensaje-adherir {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin: 2rem;
  font-size: 1.2rem;
  color: #731970;

}

.faq {
  position: relative;
  padding: 5rem 4rem;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: #fff;

}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  transition: opacity .7s ease;
}

.faq-item {
  flex: 1 1 calc(50% - 1rem);
  background-color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  padding: 1rem 1rem;
  cursor: pointer;
  text-align: left;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  background-color: #fdfcf9;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #731970;
  font-weight: 600;
  padding-right: 2rem;
  position: relative;
}

.faq-item h3::after {
  content: "➤";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #d07338;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-respuesta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Lo centra respecto a su propio tamaño */
  background: #fff;
  color: #731970;
  padding: 2rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.1s ease-in;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.faq-respuesta.activo {
  display: flex;
  opacity: 1;
}

.faq-grid.oculto {
  opacity: 0;
  pointer-events: none;
}

.btn-cerrar {
  align-self: flex-end;
  background: #d07338;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: .8rem;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.btn-cerrar:hover {
  background: #a1760a;
}

#contenido-faq {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
}

.faq-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 1300px;
}

/* Info lateral */
.faq-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e0e0;
  padding-right: 2rem;
}

.faq-info p {
  color: #731970;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  max-width: 400px;
}

/* Formulario */
.faq-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Filas dobles */
.faq-form .row {
  display: flex;
  gap: 1rem;
}

.faq-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-form .form-group.full {
  width: 100%;
}

/* Inputs y textarea */
.faq-form input,
.faq-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-form input:focus,
.faq-form textarea:focus {
  border-color: #dd792e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(191, 147, 13, 0.2);
}

.faq-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Botón */
.faq-form button {
  background-color: #dd792e;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(221, 121, 46, 0.2);
}

.faq-form button:hover {
  background-color: #731970;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(115, 25, 112, 0.3);
}



.footer {
  background-color: #222;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* fuerza a que todas las columnas se estiren */
}

.footer-column {
  flex: 0 0 300px;
  min-width: 250px;
  background-color: #222; /* si querés que se note el alto */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribuye el contenido */
  padding: 1rem; /* opcional */
  box-sizing: border-box;
}

.footer-column h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .8px;
}

.footer-column p {
  margin: 0;
  color: #e6e4e4;
  line-height: 1.5;
  letter-spacing: .7px;
}

.footer-column i {
  margin-right: 8px;
  color: #dd792e;
}

.footer-column a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: #dd792e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.footer-column a:hover {
  background-color: #f38946;
}

.footer-contact {
  text-align: center;
  margin: 30px 0 15px;
}

.footer-contact p a {
  margin: 0;
  color: #e6e4e4;
  font-size: 1.3rem;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin: 0 10px;
  font-size: 1.3rem;
  color: #e6e4e4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #dd792e;
}

.footer-line {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0 10px;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
}

.footer-copy p,
.footer-copy .admin {
  font-size: 0.9rem;
  color: #e6e4e4;
  text-decoration: none;
}
.footer-copy .figles {
  color: #4e84a7;
  font-size: 1rem;
  text-decoration: none;
}

/* BOTÓN WHATSAPP FLOTANTE */
.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  transition: transform 0.2s;
  color: white;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

.btn-whatsapp i {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* Animación pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#comercios {
  scroll-margin-top: 80px;
}



/* DISEÑO RESPONSIVE */ 

/* TABLETS */

@media (max-width: 1024px) {
  .navbar {
    top: 75px;
    padding: 2rem;
    gap: 5rem;
  }

  .nav-links{
    top: 75px;
  }

  .logo {
    max-width: 100px;
  }

  .banner-texto {
    max-width: 100%;
    padding: 16px 30px;
  }

  .banner-texto h1 {
    font-size: 2rem;
  }

  .quienes-somos {
    padding: 2rem 1.5rem;
  }

  .fila-superior-nosotros {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .titulo-nosotros {
    font-size: 2.7rem;
    width: 100%;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 1rem;
  }

  .parrafo-nosotros {
    width: 95%;
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: justify;
    margin: 0 auto;
  }

  .flecha-animada {
    display: none;
  }

  .valores-nosotros {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .valor-item {
    gap: 0.75rem;
  }

  .valor-item svg {
    width: 26px;
    height: 26px;
  }

  .valor-item p {
    font-size: 1.1rem;
  }

  .contador-container {
    gap: 2rem;
  }

  .contador-box {
    width: 160px;
  }

  .contador-box span {
    font-size: 2rem;
  }

  .contador-box p {
    font-size: 0.95rem;
  }

  .flyer-container {
    height: auto;
    object-fit: contain;
    max-width: 90%;
  }

  .btn-flyer .btn,
  .btn-center .btn-estilo-4 {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }

  .aliados h2 {
    font-size: 1.8rem;
  }

  .aliados p {
    letter-spacing: .5px;
    font-size: 1.1rem;
  }

  .categorias-grid {
    gap: 1rem;
  }

  .categoria-card .i {
    width: 50px;
    height: 50px;
  }

  .categoria-card span {
    font-size: 1.5rem;
  }

  .filtros {
    gap: 2rem;
  }

  .filtros select {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    min-width: 180px;
  }

  .comercios .subtitulo {
    font-size: 1.6rem;
  }

  #map {
    height: 400px;
    width: 90%;
  }

  .mensaje-adherir {
    font-size: 1.1rem;
  }

  .faq {
    padding: 4rem 2rem;
  }

  .faq-grid {
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 90%;
  }

  .faq-item {
    flex: 1 1 100%; /* Para que ocupe toda la fila */
    padding: 1rem 1rem;
  }

  .faq-item h3 {
    font-size: 1.05rem;
    padding-right: 1.5rem;
  }

  .faq-respuesta {
    max-width: 90%;
    width: 95%;
    padding: 1.5rem;
  }

  #contenido-faq {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .faq-form-container {
    flex-direction: row;
    padding: 1rem;
  }

  .faq-info {
    border-right: none;
    padding-right: 0;
    margin-bottom: 2rem;
    align-content:center;
    justify-content: start;
  }

  .faq-info p {
    color: #731970;
    text-align: center;
    font-size: 1.3rem;
  }

  .faq-form .row {
    flex-direction: column;
  }

  .faq-form button {
    align-self: center;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-columns {
    gap: 30px;
    justify-content: center;
  }

  .footer-column {
    min-width: 220px;
    flex: 1 1 45%;
  }

  .footer-contact p {
    font-size: 1.2rem;
  }

  .footer-social a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .footer-copy {
    font-size: 0.85rem;
  }

  .footer-copy .figles {
    font-size: 0.95rem;
  }
}

/* DISPOSITIVOS MOVILES - CELULARES */ 

@media (max-width: 768px) {

  #main-header{
    margin-top: -2px;
  }
  
  /* Logo más chico y centrado verticalmente */
  .logo {
    max-width: 110px;
    padding: 0;
  }

  /* Banner: altura reducida */
  .banner {
    height: 50vh;
  }

  .banner img {
    object-position: 60% center; /* mueve la imagen hacia la izquierda */
  }

  /* Texto del banner más legible y centrado */
  .banner-texto {
    max-width: 100%;
    padding: 12px 20px;
    left: 30%;
    transform: translate(-45%, -50%);
    text-align: start;
  }

  .banner-texto h1 {
    font-size: 1.2rem;
  }

  .quienes-somos {
    padding: 1.5rem;
  }

  .fila-superior-nosotros {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .titulo-nosotros {
    font-size: 2.2rem;
    text-align: center;
    width: 100%;
    margin-top: -2rem;
    margin-bottom: -1rem;
  }

  .parrafo-nosotros {
    font-size: 1rem;
    line-height: 1.4;
    width: 100%;
    text-align: justify;
    max-width: 95%;
  }

  .flecha-animada {
    display: none;
  }

  /* NUEVO: Estilos responsivos para valores con íconos */
  .valores-nosotros {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .valor-item {
    gap: 0.75rem;
  }

  .valor-item i {
    width: 24px;
    height: 24px;
  }

  .valor-item p {
    font-size: 1rem;
  }

  .contador {
      background: #d4753a;

  }

  .contador-container {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }

  .contador-box {
    width: 100%;
    max-width: 250px;
  }

  .contador-box span {
    font-size: 1.8rem;
  }

  .contador-box p {
    font-size: 0.95rem;
  }

  .flyer-section {
    height: auto;
    padding: 0 1rem;
  }

  .titulo-flyer {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 0 1rem;
  }

  .titulo-flyer h2 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
  }

  .flyer-container {
    height: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  }

  .btn-flyer,
  .btn-center {
    margin-top: 1.2rem;
    text-align: center;
  }

  .btn-flyer .btn,
  .btn-center .btn-estilo-4 {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    white-space: nowrap;
  }

  .aliados {
    padding: 2rem 1rem;
  }

  .aliados h2 {
    font-size: 1.6rem;
  }

  .aliados p {
    text-align: justify;
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .categorias-grid {
    grid-template-columns: 1fr; /* una sola columna */
    gap: 1rem;
  }

  .categoria-card {
    padding: 1.5rem 1rem;
  }

  .categoria-card .i {
    width: 40px;
    height: 40px;
  }

  .categoria-card span {
    font-size: 1.3rem;
  }

  .comercios {
    padding: 2rem 1rem;
  }

  .comercios .subtitulo {
    text-align: center;
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .filtros {
    flex-direction: column;
    gap: 1.5rem;
  }

  .filtros select {
    width: 90%;
    min-width: auto;
    font-size: 0.95rem;
  }

  #map {
    height: 500px;
    width: 90%;
    border-radius: 0.75rem;
    margin: 1rem;
  }

  .mensaje-adherir {
    font-size: 1rem;
    margin: 3rem 1rem 0 1rem;
  }

  .adherir-comercio {
    padding: 0.5rem;
  }

  .faq {
    padding: 3rem 1rem;
  }

  .faq-grid {
    flex-direction: column;
    gap: 1rem;
    max-width: 95%;
    margin: 0 auto;
  }

  .faq-item {
    flex: 1 1 100%;
    padding: 0.8rem 1rem;
  }

  .faq-item h3 {
    font-size: 1rem;
    padding-right: 1rem;
  }

  .faq-item h3::after {
    font-size: 0.8rem;
  }

  .faq-respuesta {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 90%;
    padding: 1rem;
    background-color: #fff; /* o el color que uses */
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 8px;
  }

  .btn-cerrar {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  #contenido-faq {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .faq-form-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .faq-info {
    border-right: none;
    padding-right: 0;
    margin-bottom: 1rem;
    justify-content: center;
  }
  .faq-info p {
    font-size: 1.1rem;
    text-align: center;
  }
  .faq-form input,
  .faq-form textarea {
    font-size: 0.95rem;
  }
  .faq-form button {
    width: 100%;
    font-size: 1rem;
    align-self: stretch;
  }

  .footer {
    padding: 30px 15px 15px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    min-width: 100%;
    flex: none;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-column p {
    font-size: 1rem;
  }

  .footer-column a {
    margin: 20px auto 0 auto; /* top 20px, centrado horizontal, sin margen abajo */
    display: inline-block;    /* asegúrate de que no sea block completo */
  }

  .footer-contact {
    margin: 20px 0 10px;
  }

  .footer-contact p {
    font-size: 1.1rem;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-social a {
    font-size: 1.4rem;
    margin: 0 12px;
  }

  .footer-line {
    margin: 20px 0 10px;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .footer-copy .figles {
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
