/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Paleta de colores */
:root {
  --color-principal: #ffb6b9;
  --color-secundario: #ffdad3;
  --color-acento: #bbded6;
  --color-oscuro: #2f2f2f;
  --color-blanco: #fff;
  --color-borde: #f8c3c8;
  --color-footer: #222;
}

/* Tipografía */
body {
  font-family: 'Montserrat', 'Edu QLD Hand', cursive, sans-serif;
  background: #bbded6;
  color: var(--color-oscuro);
  line-height: 1.6;
  min-height: 100vh;
}

/* Header sticky */
header {
  background: var(--color-blanco);
  box-shadow: 0 2px 8px rgba(255,182,185,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Espacio vertical al apretar los botones header, a las diferentes secciones */
section {
  scroll-margin-top: -1px; 
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
}

.logo img {
  height: 60px;
  border-radius: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 200;
  font-size: 1.1rem;
  color: var(--color-oscuro);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}

.nav-links li a:hover {
  background: var(--color-principal);
  color: var(--color-blanco);
}

/* Hero - carrusel */
.hero {
  background: none;
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 70vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-images {
  width: 100vw;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-images img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
  z-index: 0;
  display: block; /* Cambia de none a block para todos */
}

.carousel-images img.active {
  opacity: 1;
  z-index: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2.5rem;
  color: var(--color-principal);
  cursor: pointer;
  z-index: 2;
  padding: 0.2em 0.6em;
  border-radius: 50%;
  transition: background 0.2s;
}

.carousel-arrow.left {
  left: 2vw;
}
.carousel-arrow.right {
  right: 2vw;
}

.carousel-arrow:hover {
  background: var(--color-principal);
  color: var(--color-blanco);
}

/* Productos */

/* Fila 1 */
.productos1 {
  background: linear-gradient(0deg, #FCC8C1 30%, #FCE9E4 100%);
  padding: 3rem 0 2rem 0;
  box-shadow: 0 4px 24px rgba(255,182,185,0.10);
}

.productos1 h2 {
  text-align: center;
  color: var(--color-oscuro);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

/* Fila 2 */
.productos2 {
  background: linear-gradient(0deg, #C5ECEA 30%, #E5E9E9 100%);
  padding: 3rem 0 2rem 0;
  box-shadow: 0 4px 24px rgba(255,182,185,0.10);
}

.productos2 h2 {
  text-align: center;
  color: var(--color-oscuro);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

/* Fila 3 */
.productos3 {
  background: linear-gradient(0deg, #FBE7AC 0%, #FBFBE2 100%);
  padding: 3rem 0 2rem 0;
  box-shadow: 0 4px 24px rgba(255,182,185,0.10);
}

.productos3 h2 {
  text-align: center;
  color: var(--color-oscuro);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

/* Fila 4 */
.productos4 {
  background: linear-gradient(0deg, #FCC8C1 30%, #FCE9E4 100%);
  padding: 3rem 0 2rem 0;
  box-shadow: 0 4px 24px rgba(255,182,185,0.10);
}

.productos4 h2 {
  text-align: center;
  color: var(--color-oscuro);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

.productos-carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1340px;        /* Ancho de el carrusel de productos */
  margin: 0 auto;
}

.productos-carousel {
  overflow: hidden;
  width: 100%;
  padding-top: 1.5rem;    
}

.productos-grid {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  gap: 2.2rem;
  padding-left: 2.1rem;     /* Padding izquierdo del grid de productos */
}

.producto {
  background: var(--color-blanco);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(255,182,185,0.13);
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid var(--color-borde);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 260px;
}

.productos-arrow {
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2.5rem;
  color: var(--color-principal);
  cursor: pointer;
  border-radius: 50%;
  width: 55px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s;
}

.productos-arrow:hover {
  background: var(--color-principal);
  color: var(--color-blanco);
}

.producto:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255,182,185,0.18);
  z-index: 10;
}

.producto img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(255,182,185,0.10);
}

.producto h3 {
  color: var(--color-principal);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.producto p {
  color: #7a3b3b;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-weight: 900;
}

.btn-whatsapp-comprar {
  display: inline-block;
  background: var(--color-principal);
  color: var(--color-blanco);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,182,185,0.10);
  transition: background 0.2s, color 0.2s;
}

.btn-whatsapp-comprar:hover {
  background: var(--color-acento);
  color: var(--color-oscuro);
}

/* Sección intermedia con degradado y ondas */

.seccion-intermedia {
  position: relative;
  background: linear-gradient(180deg, #FCC8C1 0%, #7fcfc1  100%);
  padding: 4rem 0 0 0;
  overflow: hidden;
  min-height: 680px;
}

.intermedia-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Primer bloque izquierda arriba */
.intermedia-col:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: end;
}
/* Segundo bloque izquierda abajo */
.intermedia-col:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: start;
}
/* Imagen central ocupa dos filas */
.intermedia-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Primer bloque derecha arriba */
.intermedia-col:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  align-self: end;
}
/* Segundo bloque derecha abajo */
.intermedia-col:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  align-self: start;
}

.intermedia-col {
  grid-column: auto;
  grid-row: auto;
  justify-self: center !important;
  align-self: center !important;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin: 1.5rem 0.5rem;
  padding: 0 1.2rem 0 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intermedia-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(187,222,214,0.14);
}

.intermedia-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.intermedia-col h3 {
  color: #7a3b3b;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-family: 'Montserrat', sans-serif;
}

.intermedia-col p {
  color: #3b3b3b;
  font-size: 1.05rem;
  font-weight: 500;
}

.intermedia-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  max-width: 2000px;
  margin: 0 1.5rem;
}

.intermedia-img {
  width: 800px;
  max-width: 900px;
  z-index: 2;
  margin-bottom: 1.2rem;
  display: block;
}

.intermedia-wow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #eb5e63;
  opacity: 0.8;
  pointer-events: none;
  text-align: center;
  line-height: 0.9;
  z-index: 1;
  letter-spacing: -0.1em;
  user-select: none;
  width: 100%;
}

.separador-difuminado {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to bottom,
    #7fcfc1 0%,
    #bbded6 100%
  );
  border: none;
  margin: 0;
  padding: 0;
}

/* Sobre nosotros */
.sobre-nosotros {
  background: var(--color-acento);
  padding: 3.5rem 1rem;
  margin: 0;
}

.sobre-nosotros-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.sobre-nosotros-fotos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 18px 0;
  flex-wrap: nowrap;
  background: #bbded6;
  min-height: 220px;
  border-radius: 18px;
}

.sobre-nosotros-fotos img {
  width: 300px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  object-fit: cover;
}

.sobre-nosotros h2 {
  font-size: 2rem;
  color: var(--color-oscuro);
  margin-bottom: 1.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

.sobre-nosotros p {
  margin-bottom: 1.3rem;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #3b3b3b;
}

.sobre-nosotros-content strong {
  color: #ee8285;
  font-weight: 700;
}

.separador-difuminado-sobre-ubicanos {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to bottom,
    #bbded6 0%,   /* color de fondo de "Sobre Nosotros" */
    #fffaf7 100%  /* color de fondo de "Ubícanos" */
  );
  border: none;
  margin: 0;
  padding: 0;
}

/* Ubícanos */
.ubicanos {
  background: #fffaf7;
  padding: 3.5rem 1rem 3rem 1rem;
}

.ubicanos h2 {
  text-align: center;
  color: var(--color-oscuro);
  font-size: 2.2rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
  margin-bottom: 2.5rem;
}

.ubicanos-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ubicanos-texto h3 {
  color: #7a3b3b;
  font-size: 1.5rem;
  margin-bottom: 2.8rem;
  font-family: 'Edu QLD Hand', cursive, sans-serif;
}

.ubicanos-texto p {
  color: #3b3b3b;
  font-size: 1.13rem;
  line-height: 1.7;
}

.ubicanos-texto {
  flex: 1 1 340px;
  border-radius: 18px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 320px;
  max-width: 480px;
}

.ubicanos-locales {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.local-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(255,182,185,0.13);
  border: 1.5px solid var(--color-borde);
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

.local-card > img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.local-info {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.local-info h3 {
  color: #7a3b3b;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.local-info p {
  color: #3b3b3b;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.icono-local {
  width: 22px;
  height: 22px;
  margin-right: 0.5em;
  vertical-align: middle;
}

.btn-mapa {
  display: block;
  width: 100%;
  background: var(--color-principal);
  color: var(--color-blanco);
  text-align: center;
  padding: 0.9rem 0;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(255,182,185,0.10);
}

.btn-mapa:hover {
  background: var(--color-acento);
  color: var(--color-oscuro);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
  transform: scale(1.08);
}

/* Fondo crema para todo el footer */
footer, .footer-table {
  background: #fffaf7;
  width: 100%;
}

/* Footer */
.footer-table {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-bottom: 1.5px solid #f3e3d3;
  padding: 2.5rem 2rem 1.5rem 2rem;
  gap: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  padding: 0 2rem;
}

.footer-logo {
  align-items: center;
  border-right: 1.5px solid #f3e3d3;
  min-width: 220px;
  justify-content: center;
}

.footer-logo img {
  width: 150px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(255,182,185,0.10);
  background: #fff;
}

.footer-social {
  align-items: center;
  border-right: 1.5px solid #f3e3d3;
  min-width: 320px;
  text-align: center;
  justify-content: center;
  padding-top: 1rem;
}

.footer-social h3 {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.7rem;
}

.footer-social-icons {
  margin-bottom: 1rem;
}

.footer-social-icons a {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.footer-social-icons img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.footer-social-icons img:hover {
  transform: scale(1.1);
}

.footer-benefits {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
  padding-top: 1rem;
}

.footer-benefits > div {
  min-width: 120px;
  margin: 0 0.5rem;
}

.footer-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
}

/* Footer abajo abajo */
.footer-bottom {
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem 1.2rem 2rem;
  background: #fffaf7;
  border-top: 1.5px solid #f3e3d3;
}

.footer-copy {
  flex: 1 1 auto;
  font-size: 0.95rem;
  color: var(--color-oscuro);
  text-align: center;
}

.footer-cards {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-cards img {
  width: 200px;
}

.dark-logo{
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-dev {
  color: #7fcfc1; 
  font-weight: 600;
  letter-spacing: 0.5px;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Menú hamburguesa solo en móvil */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-oscuro);
  cursor: pointer;
  margin-left: 1rem;
  z-index: 110;
}

@media (max-width: 800px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: var(--color-blanco);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 5rem 2rem 2rem 2rem;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    transition: right 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 109;
  }
  .nav-links.open {
    right: 0;
  }
  .main-nav {
    padding: 0.7rem 1rem;
  }
}

/* Oculta menú hamburguesa en desktop */
@media (min-width: 801px) {
  .nav-links {
    flex-direction: row;
    position: static;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 800px) {
  /* Oculta flechas del carrusel de productos */
  .productos-arrow {
    display: none !important;
  }

  /* Carrusel y productos: scroll horizontal y margen */
  .productos-carousel-container {
    padding: 0 0.5rem;
  }
  .productos-carousel {
    overflow-x: auto;
    overflow-y: visible;
    width: 100vw;
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .productos-grid {
    display: flex;
    gap: 1.2rem;
    padding-left: 4vw;
    padding-right: 4vw;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .producto {
    min-width: 80vw;
    max-width: 80vw;
    flex: 0 0 80vw;
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(255,182,185,0.13);
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    scroll-snap-align: start;
  }
  .producto img {
    max-width: 90%;
    width: 90vw;
    margin-bottom: 1rem;
  }
}

@media (max-width: 800px) {
  .productos1 h2,
  .productos2 h2,
  .productos3 h2,
  .productos4 h2
   {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
    line-height: 1.2;
  }
}

@media (max-width: 1200px) {
  /* Sección intermedia: apilar todo y centrar */
  .seccion-intermedia {
    padding: 2.5rem 0 0 0;
    min-height: unset;
  }
  .intermedia-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    max-width: 98vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .intermedia-col {
    width: 100%;
    max-width: 95vw;
    min-width: 0;
    margin: 0.7rem 0;
    padding: 0 0.5rem;
    display: block;
    text-align: center;
  }
  .intermedia-center {
    width: 100%;
    max-width: 99vw;
    min-width: 0;
    margin: 1.2rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  .intermedia-img {
    width: 90vw;
    margin-bottom: 1.2rem;
    z-index: 2;
    position: relative;
  }
  .intermedia-wow {
    font-size: 25vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
  }
  .intermedia-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(187,222,214,0.14);
    display: block; /* Cambia a block */
    text-align: center;
    line-height: 60px; /* Centra verticalmente el icono */
  }
  .intermedia-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: inline-block; /* Cambia a inline-block */
    vertical-align: middle;
    margin: 0;
  }
  .intermedia-col h3,
  .intermedia-col p {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 800px) {
  .sobre-nosotros-content {
    padding: 0 0.5rem;
  }
  .sobre-nosotros-fotos {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    margin: 24px 0 18px 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .sobre-nosotros-fotos img {
    width: 85vw;
    max-width: 400px;
    min-width: 220px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    scroll-snap-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 0 0 auto;
  }
}

@media (max-width: 800px) {
  .ubicanos {
    padding: 2.2rem 0.5rem 2rem 0.5rem;
  }
  .ubicanos h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .ubicanos-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
    max-width: 100vw;
  }
  .ubicanos-texto {
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
    min-width: unset;
    max-width: 95vw;
    width: 100%;
  }
  .ubicanos-texto h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .ubicanos-locales {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 100vw;
  }
  .local-card {
    max-width: 95vw;
    width: 100%;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  .local-card > img {
    height: 38vw;
    min-height: 160px;
    max-height: 220px;
    object-fit: cover;
  }
  .local-info {
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .local-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    text-align: center;
  }
  .btn-mapa {
    font-size: 1rem;
    padding: 0.7rem 0;
    margin-top: 0.8rem;
  }
}

@media (max-width: 1100px) {
  .footer-row {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    gap: 0;
  }
  .footer-col {
    border-right: none !important;
    border-bottom: 1.5px solid #f3e3d3;
    padding: 1.2rem 0;
    min-width: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-logo {
    border-right: none !important;
    border-bottom: 1.5px solid #f3e3d3;
    min-width: 0;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .footer-logo img {
    margin: 0 auto;
    display: block;
    width: 120px;
    max-width: 60vw;
  }
  .footer-social {
    border-right: none !important;
    border-bottom: 1.5px solid #f3e3d3;
    min-width: 0;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-benefits {
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-benefits > div {
    min-width: 0;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 0.5rem;
    align-items: center;
    text-align: center;
  }
  .footer-cards {
    justify-content: center;
    margin-top: 0.7rem;
  }
  .footer-cards img {
    width: 140px;
    max-width: 80vw;
  }
}