/* ============================================================
   LOBOS - Cooperativa Obrera
   Hoja de estilos principal
   ============================================================ */

/* ---------- Variables de color y tipografía ---------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  /* Colores de marca */
  --rojo: #D01E23;
  --rojo-cooperativa: #E30521;
  --azul: #154D9A;
  --azul-oscuro: #002a5c;
  --azul-medio: #1d6fb8;
  --celeste: #539FCC;
  --naranja: #E19314;
  --amarillo: #EBBD00;
  --lima: #8cc63f;
  --verde: #519F35;
  --violeta: #7C217E;
  --marron: #6b4a3a;

  /* Neutros */
  --negro: #1e1e1e;
  --gris-texto: #4a4a4a;
  --gris-medio: #8a8a8a;
  --gris-claro: #f4f4f4;
  --gris-borde: #e2e2e2;
  --blanco: #ffffff;

  /* Layout */
  --ancho-maximo: 1120px;
  --radio: 14px;
  --transicion: 0.25s ease;

  --fuente-base: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* ---------- Tamaños de fuente ---------- */
  --fs-display: 4.4rem;
  /* número countdown y "¡TE ESPERAMOS!" */

  --fs-titulo: 2.7rem;
  /* títulos de sección */

  --fs-titulo-v2: 2rem;
  /* títulos de sección */

  --fs-subtitulo: 1.5rem;
  /* --fs-subtitulo: 1.125rem; */
  /* subtítulos y textos destacados */

  --fs-parrafo: 1.1rem;
  /* --fs-parrafo: 1rem; */
  /* texto de párrafo */

  --fs-pequeno: 0.85rem;
  /* menú, botones, ítems, aclaraciones, "+ Info" */
}


/* ---------- Tamaños de fuente ---------- */
/* --fs-display: 2.5rem; */
/* número countdown y "¡TE ESPERAMOS!" */
/* --fs-titulo: 1.75rem; */
/* títulos de sección */
/* --fs-subtitulo: 1.125rem; */
/* subtítulos y textos destacados */
/* --fs-parrafo: 0.9rem; */
/* texto de párrafo */
/* --fs-pequeno: 0.75rem; */
/* menú, botones, ítems, aclaraciones, "+ Info" */


/* 0.9 -> 1.2 */


/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fuente-base);
  color: var(--gris-texto);
  background-color: var(--blanco);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  /* text-decoration: none; */
  color: inherit;
}

ul {
  list-style: none;
  line-height: 1.2;
}

/* Contenedor centrado reutilizable */
.contenedor {
  width: 100%;
  max-width: var(--ancho-maximo);
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================================================
   ENCABEZADO / NAVEGACIÓN
   ============================================================ */
.encabezado {
  position: sticky;
  top: 0;
  z-index: 100;
  /* border-bottom: 1px solid var(--gris-borde); */
  /* box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04); */
  /* border-radius: 0 0 16px 16px; */

  background-color: var(--blanco);
  background: #FFF;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);

  border-radius: 0 0 16px 16px;
}

.encabezado__contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;

  max-width: 1425px;
}

.encabezado__logo img {
  height: 38px;
  width: auto;
  background: none;
}

/* Menú principal */
.menu {
  display: flex;
  /* align-items: center; */
  align-items: stretch;
  /* gap: 26px; */
  gap: 15px;
  text-align: center;
}

.menu__enlace {
  font-size: var(--fs-pequeno);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  /* line-height: 1.1; */
  line-height: 1.3;
  text-align: center;
  /* color: var(--gris-texto); */
  transition: opacity var(--transicion);

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-item);
  background-color: transparent;
  /* padding: 6px 12px; */
  height: 100%;
  padding: 0 20px;
  /* border-radius: 6px; */
  transition: background-color var(--transicion), color var(--transicion);
}

/* .menu__enlace {
  color: var(--color-item);
  background-color: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color var(--transicion), color var(--transicion);
} */

.menu__enlace:hover {
  /* opacity: 0.7; */

  background-color: var(--color-item);
  color: var(--blanco);
}

/* Colores por sección del menú */
.menu__enlace--nuestra {
  color: var(--rojo);
}

.menu__enlace--economia {
  color: var(--naranja);
}

.menu__enlace--servicios {
  color: var(--amarillo);
}

.menu__enlace--lobos {
  color: var(--verde);
}

.menu__enlace--social {
  color: var(--azul-medio);
}

.menu__enlace--asociate {
  color: var(--violeta);
}

/* ----------------- */

.menu__enlace--nuestra {
  --color-item: var(--rojo);
}

.menu__enlace--economia {
  --color-item: var(--naranja);
}

.menu__enlace--servicios {
  --color-item: var(--amarillo);
}

.menu__enlace--lobos {
  --color-item: var(--verde);
}

.menu__enlace--social {
  --color-item: var(--azul-medio);
}

.menu__enlace--asociate {
  --color-item: var(--violeta);
}



/* Colores */

.azul {
  color: var(--azul);
}

.verde {
  color: var(--verde);
}

.naranja {
  color: var(--naranja);
}

.rojo {
  color: var(--rojo);
}

.celeste {
  color: var(--celeste);
}

/* Font Styles */

.italic {
  font-style: italic;
}

.bold {
  font-weight: bolder;
}


/*  ==========================================================================
	MEDIA QUERIES (DESKTOP / MOBILE) 
	========================================================================== */

@media (min-width:768px) {
  .mobile {
    display: none;
  }
}

@media (max-width:767px) {
  .desktop {
    display: none;
  }
}


/*  Scroll To Top
  ========================== */

.scrollToTop.active {
  bottom: 1.5rem;
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

.scrollToTop {
  /* width: 140px; */
  /* height: 140px; */
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 500;
  color: #FFF;
  /* background: rgba(0, 0, 0, .3); */
  background: #BEBEBE;
  transition: all .3s ease-in-out;
  cursor: auto;
}

.scrollToTop:hover {
  background: var(--celeste);
}

.scrollToTop span {
  margin-top: 6px;
}

/* .showScrollTop {
  font-size: 14px;
  opacity: 1;
} */

/* .btn-scrollToTop {
	margin: 0 5px 5px 0;
} */

.btn-scrollToTop {
  display: inline-block;
  /* padding: 6px 12px; */
  padding: 3px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  /* border-radius: 4px; */
  border-radius: 50px;
}

.icono-scroll-top {
  width: 30px;
  height: 30px;
  /* Opcional */
  display: block;
  /* margin: 20px auto; */
}




/* ----- */

.menu__enlace.activo {
  background-color: var(--color-item);
  color: var(--blanco);
}

.menu li {
  height: 64px;

  display: flex;
  align-items: center;
}

.menu li:hover {
  background: currentColor;
}

/* Botón hamburguesa (solo móvil) */
.menu-boton {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-boton span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--azul);
  border-radius: 2px;
  transition: var(--transicion);
}

/* ============================================================
   HÉROE (logo LOBOS + imagen circular de personas)
   ============================================================ */

/* Héroe secundario: usado en Economía, Servicios, En Lobos, Social */
.heroe-secundario {
  position: relative;
  padding: 42px;
  /* overflow: hidden; */
}

.heroe-secundario__logo {
  /* max-width: 460px; */
  max-width: 525px;
}

.heroe-secundario__decoracion {
  position: absolute;
  top: -6px;
  right: 0px;
  width: 460px;
  max-width: 45%;
  background: none;
  pointer-events: none;
}

/* ============================================================
   HÉROE DEL INDEX
   ============================================================ */
/* .heroe-index {
  padding: 30px 0 0;
} */

.heroe-index__fila {
  display: grid;
  /* grid-template-columns: 0.95fr 1.4fr; */
  grid-template-columns: 1.1fr 1.4fr;
  /* display: flex; */
  /* gap: 30px; */
  /* align-items: center; */
}

.heroe-index__presentacion {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  margin-bottom: 30px;
}

.heroe-index__logo {
  /* max-width: 340px; */
  max-width: 100%;
  padding-top: 65px;
  padding-bottom: 35px;
}

.heroe-index__lema {
  color: var(--rojo-cooperativa);
  font-size: var(--fs-titulo-v2);
  font-weight: 700;
  /* font-style: italic; */
  line-height: 1.2;
}

.heroe-index__cursor {
  width: 28px;
  height: auto;
  background: none;

  margin-top: -6px;
}

.heroe-index__badge {
  max-width: 240px;
}

.heroe-index__imagen-personas img {
  /* width: 100%; */
  width: 90%;
  border-radius: var(--radio);

  position: relative;
  left: 85px;
  top: -10px;
}

.heroe-lema-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;

  text-decoration: none;
}

/* .heroe-lema-box:hover {
  text-decoration: underline;
} */

/* Segunda fila del héroe index: bienvenida + formulario */
.bienvenida {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 30px;
  align-items: center;
  /* padding: 30px 0 40px; */
  padding: 0 0 20px;
}

.bienvenida__imagen img {
  width: 100%;
  border-radius: 18px;
}

.bienvenida__titulo {
  font-size: var(--fs-titulo);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 12px;

  display: flex;
  gap: 10px;
}

.bienvenida__titulo span {
  color: var(--rojo-cooperativa);
}

.bienvenida__texto {
  font-size: var(--fs-parrafo);
  color: var(--azul);
  margin-bottom: 14px;
}

.bienvenida__texto a {
  text-underline-offset: 3px;
}

.bienvenida__texto span {
  font-weight: 700;
}

.bienvenida__texto span:hover {
  opacity: .9;
}


.bienvenida__invitacion {
  text-align: center;
  font-size: var(--fs-parrafo);
  color: var(--gris-medio);
  margin: 14px 0;
}

.bienvenida__titulo .logo-lacoope {
  width: 134px;
  position: relative;
  top: 5px;
}

/* Espacio reservado para el formulario (lo completa el usuario) */
/* .formulario-espacio {
  min-height: 60px;
} */

/* ============================================================
   SECCIÓN "¡TE ESPERAMOS!" (banda azul + cuenta regresiva)
   ============================================================ */
.te-esperamos {
  /* background: linear-gradient(180deg, var(--azul-oscuro) 0%, #0a4d8c 100%); */
  background: linear-gradient(180deg, #002550 0%, #014898 100%);
  color: var(--blanco);
  text-align: center;
  padding: 40px 0 50px;

}

.te-esperamos__titulo {
  color: var(--amarillo);
  font-size: var(--fs-display);
  font-weight: 800;
  margin-bottom: 24px;
}

.te-esperamos__dato {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-subtitulo);
  margin: 10px 0;
}

.te-esperamos__dato img {
  width: 42px;
  height: 42px;
  background: none;
}

/* .te-esperamos__dato span {
  font-weight: 700;
} */

/* Cuenta regresiva */
.cuenta-regresiva {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cuenta-regresiva__etiqueta {
  color: var(--amarillo);
  font-size: var(--fs-titulo);
  font-weight: 800;
  margin-right: 10px;
  position: relative;
  top: -15px;
}

.cuenta-regresiva__bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.cuenta-regresiva__separador {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1;
  color: var(--blanco);
  align-self: start;
  /* lo alinea con los números, no con las unidades */
  margin: 0 -10px;
  position: relative;
  top: -6px;
}

.cuenta-regresiva__numero {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1;
}

.cuenta-regresiva__unidad {
  font-size: var(--fs-pequeno);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ============================================================
   SECCIÓN "¿QUIÉNES SOMOS?"
   ============================================================ */
.quienes-somos {
  padding: 44px 0 30px;
  text-align: center;
}

.quienes-somos__titulo {
  font-size: var(--fs-titulo);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 28px;
}

.quienes-somos__lista {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dato-cooperativa {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dato-cooperativa__icono {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background: none;
}

.dato-cooperativa__texto {
  font-size: var(--fs-parrafo);
  color: var(--azul);
}

.dato-cooperativa__texto strong {
  color: var(--azul);
}

/* ============================================================
   SECCIÓN "COMPROMISO PÚBLICO" (mosaico de 10 imágenes)
   ============================================================ */
.compromiso {
  padding: 30px 0 50px;
  text-align: center;
}

.compromiso__titulo {
  font-size: var(--fs-titulo);
  font-weight: 800;
  color: var(--azul);
  /* margin-bottom: 4px; */
  margin-bottom: 30px;
}

.compromiso__subtitulo {
  font-size: var(--fs-parrafo);
  color: var(--azul);
  margin-bottom: 26px;
}

.compromiso__subtitulo strong {
  color: var(--azul);
}

/* Mosaico 4x4 con áreas nombradas */
.mosaico-compromiso {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(4, 110px); */
  grid-template-rows: repeat(4, auto);
  gap: 12px;
  grid-template-areas:
    "img1 img1 img2 img3"
    "img4 img5 img6 img6"
    "img4 img7 img7 img8"
    "img9 img9 img10 img8";

  /* margin-top: 2rem; */
}

.mosaico-compromiso__celda {
  border-radius: 12px;
  overflow: hidden;
}

.mosaico-compromiso__celda img {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  object-fit: contain;

  width: 99%;
  height: 99%;
}

.celda--1 {
  grid-area: img1;
}

.celda--2 {
  grid-area: img2;
}

.celda--3 {
  grid-area: img3;
}

.celda--4 {
  grid-area: img4;
}

.celda--5 {
  grid-area: img5;
}

.celda--6 {
  grid-area: img6;
}

.celda--7 {
  grid-area: img7;
}

.celda--8 {
  grid-area: img8;
}

.celda--9 {
  grid-area: img9;
}

.celda--10 {
  grid-area: img10;
}

/* ============================================================
   PIE DE PÁGINA (paisaje + barra inferior)
   ============================================================ */
.pie {
  margin-top: 30px;
}

.pie__paisaje {
  width: 100%;
}

.pie__paisaje img {
  width: 100%;
  background: none;
}

.pie__barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  /* border-top: 1px solid var(--gris-borde); */
}

.pie__izquierda {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pie__enlace {
  font-size: var(--fs-parrafo);
  color: #0E253D;
  font-weight: 400;
}

.pie__redes {
  display: flex;
  gap: 10px;
}

.pie__redes img {
  width: 30px;
  height: 30px;
  background: none;
}

.pie__logo img {
  /* height: 38px; */
  /* width: auto; */
  width: 200px;
  background: none;
}

/* ============================================================
   PÁGINA ECONOMÍA FAMILIAR
   ============================================================ */
.titulo-seccion {
  text-align: center;
  font-size: var(--fs-titulo);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 4px;
}

.titulo-seccion span {
  color: var(--rojo);
}

.subtitulo-seccion {
  text-align: center;
  font-size: var(--fs-subtitulo);
  font-weight: 400;
  color: var(--azul-medio);
  margin: 18px 0 18px;
}

.subtitulo-seccion strong {
  color: var(--azul);
}

.titulo-seccion {
  /* display: flex;
  justify-content: center;
  gap: 10px; */
}

.titulo-seccion-coope {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.titulo-seccion .logo-lacoope {
  width: 142px;
  position: relative;
  top: 8px;
}


.economia {
  padding: 0 0 40px;
}

.aclaracion {
  text-align: center;
  font-size: var(--fs-parrafo);
  /* font-size: var(--fs-subtitulo); */
  color: var(--azul);
  margin-bottom: -1px;
  margin-top: -10px;

}

/* Tarjetas de marcas */
.grilla-marcas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 3.5rem;
}

.tarjeta-marca {
  border: 1px solid var(--gris-borde);
  /* border-radius: var(--radio); */
  background-color: var(--blanco);
  padding: 22px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */

  border-radius: 33.03px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.50);

  transition: all .3s;
}


.tarjeta-marca:hover {
  scale: 1.05;
}

.tarjeta-marca__logo img {
  /* height: 50px; */
  width: auto;
  background: none;
  /* padding: 24.87px 7.772px; */

  max-width: 150px;
}

.tarjeta-marca__texto {
  font-size: var(--fs-parrafo);
  /* color: var(--gris-texto); */
  font-weight: 500;
}

.tarjeta-marca__info {
  font-size: var(--fs-parrafo);
  font-weight: 700;
  color: var(--azul-medio);
  text-decoration: none;

  margin-top: auto;
}

.tarjeta-marca__info:hover {
  text-decoration: underline;
}

/* Tarjetas de ofertas */
.grilla-ofertas {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(3, 245px);
  justify-content: center;
  /* gap: 18px; */
  gap: 34px;
  margin-top: 6px;
}

.tarjeta-oferta__imagen img {
  /* width: 100%; */
  /* border-radius: var(--radio); */
  /* aspect-ratio: 1 / 0.95; */
  /* object-fit: cover; */

  display: flex;
  /* width: 300px; */
  /* height: 400.833px; */
  /* padding: 29.057px 9.08px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9.08px;
  flex-shrink: 0;
  border-radius: 38.592px;

  transition: all .3s;
}

.tarjeta-oferta__imagen img:hover {
  scale: 1.05;
}

.tarjeta-oferta__texto {
  font-size: var(--fs-parrafo);
  color: var(--azul);
  margin-top: 20px;
}

.ver-mas-fincanciacion {
  color: #E31F21;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-top: -25px;
  margin-bottom: 30px;
}

/* .tarjeta-oferta__texto strong {
  color: var(--rojo);
} */

/* Banner publicitario grande (imagen única) */
.banner-imagen {
  margin: 36px 0 26px;
}

.banner-imagen .canal-wapp {
  /* padding: 2rem 0; */
  margin: 5rem 0;
}

.banner-imagen img {
  width: 100%;
  border-radius: var(--radio);
}

.banner-imagen .modo {
  width: 100%;
  border-radius: 0;
}

.beneficio-titulo-contenedor {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  align-items: center;
}

.beneficio-titulo-contenedor h2 {
  margin-top: 40px;
  font-size: var(--fs-titulo-v2);
  color: var(--azul);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.beneficio-titulo-contenedor h3 {
  margin-top: 40px;
  font-size: var(--fs-titulo-v2);
  color: var(--azul);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  /* text-transform: uppercase; */
}

.beneficio-titulo-contenedor .coopeplus-tarjeta {
  width: 115px;
}

.coopeplus-titulo {
  position: relative;
  top: 24px;
}

.beneficios-titulo {
  /* text-align: center; */
  /* font-size: var(--fs-subtitulo); */
  margin-bottom: 22px;

  text-align: center;
  font-size: var(--fs-subtitulo);
  font-weight: 400;
  color: var(--azul-medio);
  margin: 18px 0 18px;
}

.beneficios-titulo strong {
  color: var(--azul);
}

/* Grilla de beneficios con bordes de colores */
.grilla-beneficios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.beneficio {
  /* border: 2px solid; */
  border-radius: 35px;
  padding: 16px 30px;
  font-size: var(--fs-parrafo);
  font-weight: 400;
  color: #1e1e1e;
  /* min-height: 64px; */
  /* display: flex; */
  /* align-items: center; */

  display: flex;
  height: 100px;
  /* padding: 35.535px 39.211px; */
  align-items: center;
  /* gap: 12.254px; */
  /* flex: 1 0 0; */


  /* border-radius: 49.014px; */
  border: 4.127px solid #154D9A;
  background: #FFF;
}

.beneficio strong {
  font-weight: 800;
}

.beneficio--azul {
  border-color: var(--azul-medio);
}

.beneficio--rojo {
  border-color: var(--rojo);
}

.beneficio--verde {
  border-color: var(--verde);
}

.beneficio--celeste {
  border-color: var(--celeste);
}

.beneficio--naranja {
  border-color: var(--naranja);
}

.beneficio--violeta {
  border-color: var(--violeta);
}

.beneficio--amarillo {
  border-color: var(--amarillo);
}

/* Botón destacado (Pedí tu tarjeta) */
.beneficio--boton {
  background-color: #1063ac;
  border-color: #1063ac;
  color: var(--blanco);
  justify-content: space-between;
  text-decoration: none;
  gap: 8px;
  display: flex;
  padding: 0;
  overflow: hidden;
}

.beneficio--boton:hover {
  /* background-color: var(--azul-medio); */
  /* border-color: var(--azul-medio); */
  /* scale: 1.01; */
}

.beneficio--boton:hover .icono-flecha {
  /* scale: 1.1; */
  padding-left: 8px;
}

.beneficio--boton img {
  /* height: 18px; */
  /* width: auto; */
  /* width: 140px; */
  background: none;
  width: 308px;
  margin: 0 auto;
}

.beneficio--boton .icono-flecha {
  width: 30px;

  transition: all .3s;
}

.logo-coopeplus {
  position: relative;
  top: 4px;
}

/* Accordion */
.promos {
  width: 100%;
  /* max-width: var(--ancho-maximo); */
  margin: 0 auto;
  /* padding: 48px 24px 64px; */
}

/* ---------- Encabezado ---------- */
.promos-encabezado {
  text-align: center;
  margin-bottom: 36px;
}

.promos-titulo {
  /* font-size: clamp(1.75rem, 4vw, 2.75rem); */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
  color: var(--azul);
  font-size: var(--fs-titulo);
}

.promos-subtitulo {
  /* font-size: clamp(0.9rem, 1.5vw, 1.05rem); */
  font-weight: 500;
  /* margin-top: 4px; */
  font-size: var(--fs-parrafo);
  color: var(--azul);
}

/* ============= Acordeón ============ */
.acordeon {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 4rem;
}

.acordeon-item {
  border: 3px solid var(--color-banco);
  border-radius: var(--radio-item);
  background-color: #ffffff;
  overflow: hidden;
  transition: border-radius 0.35s ease;

  border-radius: 32px;
}

.acordeon-item.abierto {
  border-radius: 32px;
}

/* ---------- Botón (cabecera del ítem) ---------- */
.acordeon-boton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  /* padding: 16px 28px; */
  padding: 14px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--azul);
}

.acordeon-boton:focus-visible {
  outline: 3px solid var(--color-banco);
  outline-offset: -6px;
  border-radius: var(--radio-item);
}

.acordeon-nombre {
  line-height: 1.2;
}

/* ---------- Flecha ---------- */
.acordeon-flecha {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.acordeon-item.abierto .acordeon-flecha {
  transform: rotate(180deg);
}

/* ---------- Panel desplegable ---------- */
/* Técnica de grid 0fr → 1fr: animación de altura fluida
   sin necesidad de calcular alturas en JavaScript */
.acordeon-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.acordeon-item.abierto .acordeon-panel {
  grid-template-rows: 1fr;
}

.acordeon-contenido {
  overflow: hidden;
  display: flex;
  /* flex-direction: column; */
  gap: 16px;
  min-height: 0;

  flex-direction: row;
  justify-content: center;
}

/* Separación entre la cabecera y la primera imagen */
.acordeon-item.abierto .acordeon-contenido {
  padding: 4px 20px 20px;
}

/* ---------- Imágenes de promoción ---------- */
.promo-imagen img {
  width: 100%;
  border-radius: 18px;
}

.logo-banco {
  width: 180px;
  height: 35px;
}

/* ---------- Accesibilidad: usuarios con movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {

  .acordeon-item,
  .acordeon-panel,
  .acordeon-flecha {
    transition: none;
  }
}

/* ==========================================================================
   RESPONSIVE — Mobile (hasta 767px) */
@media (max-width: 767px) {
  .promos {
    padding: 15px 16px 48px;
  }

  .promos-encabezado {
    margin-bottom: 28px;
  }

  .acordeon {
    gap: 16px;
  }

  .acordeon-boton {
    padding: 14px 20px;
  }

  .acordeon-item.abierto {
    border-radius: 24px;
  }

  .acordeon-item.abierto .acordeon-contenido {
    padding: 2px 12px 12px;
  }

  .promo-imagen img {
    border-radius: 12px;
  }
}


/* ============================================================
   PÁGINA SERVICIOS
   ============================================================ */
.servicios {
  padding: 26px 0 40px;
}

.grilla-servicios {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-template-columns: repeat(5, 175px);
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  margin-top: 30px;
}

.tarjeta-servicio {
  border: 1px solid var(--gris-borde);
  /* border-radius: var(--radio); */
  background-color: var(--blanco);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */

  border-radius: 33.03px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.50);

  transition: all .3s;
}

.tarjeta-servicio:hover {
  scale: 1.05;
}

.tarjeta-servicio__icono img {
  height: 42px;
  width: auto;
  background: none;
}

.tarjeta-servicio__texto {
  font-size: var(--fs-pequeno);
  font-weight: 500;
}

.tarjeta-servicio__info {
  font-size: var(--fs-pequeno);
  font-weight: 700;
  color: var(--azul-medio);

  text-decoration: none;
}

.tarjeta-servicio__info:hover {
  text-decoration: underline;
}

/* Bloque Coopemail */
.coopemail {
  /* display: grid; */
  /* grid-template-columns: 0.9fr 1.1fr; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 20px;
  margin-top: 5rem;
}

.coopemail__contenido {
  max-width: 510px;
}


.coopemail__logo img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radio);
  /* margin: 0 auto; */
  margin: 0;
}

.coopemail__titulo {
  font-size: var(--fs-subtitulo);
  color: var(--azul);
  margin-bottom: 14px;
}

.coopemail__titulo strong {
  color: var(--azul);
}

.coopemail__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.coopemail__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-parrafo);
  height: 38px;
}

.coopemail__item img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: none;
}

.boton-verde {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #98BF13;
  color: var(--blanco);
  font-weight: 700;
  font-size: var(--fs-parrafo);
  padding: 8px 22px;
  /* border-radius: 22px; */
  border: none;
  cursor: pointer;
  border-radius: 11.2px;
  text-decoration: none;

  transition: background-color ease-in-out .2s;
}

.boton-verde:hover {
  background-color: #67820C;
}

.boton-verde img {
  /* height: 16px; */
  height: 35px;
  width: auto;
  background: none;
}

.boton-suscribite {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-left: 56px;
  padding-top: 10px;
}

.boton-suscribite p {
  font-size: var(--fs-pequeno);
  text-align: end;
  color: var(--azul);
  line-height: 1.1;
}

.banner-coopehogar {
  margin-top: -39px;
  margin-bottom: -22px;
}



/* ============================================================
   PÁGINA EN LOBOS
   ============================================================ */
.como-comprar {
  padding: 26px 0 40px;
}

.como-comprar__eyebrow {
  text-align: center;
  font-size: var(--fs-subtitulo);
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 2px;

  display: flex;
  justify-content: center;
  gap: 10px;
}

.como-comprar__eyebrow .logo-lacoope {
  width: 100px;
  position: relative;
  top: -2px;

}

.como-comprar__eyebrow span {
  color: var(--rojo);
}

.como-comprar__cuerpo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 36px; */
  align-items: center;
  margin-top: 26px;
}

/* .como-comprar__mapa img {
  width: 100%;
  border-radius: var(--radio);
} */

.como-comprar__mapa iframe {
  width: 85%;
  aspect-ratio: 210 / 175;
  border: 0;
  border-radius: 33px;
  display: block;
}

.como-comprar__datos {
  display: flex;
  flex-direction: column;
  /* gap: 26px; */
  gap: 50px;
}

.dato-comercio {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dato-comercio .icono-reloj {
  position: relative;
  top: -33px;
}

.dato-comercio__icono img {
  width: 50px;
  height: 50px;
  background: none;
}

.dato-comercio__texto {
  font-size: var(--fs-parrafo);
  color: var(--azul);
}

.dato-comercio__texto strong {
  display: block;
  font-size: var(--fs-subtitulo);
  color: var(--azul);
}

.como-comprar__cierre {
  text-align: center;
  font-size: var(--fs-subtitulo);
  color: var(--azul);
  margin-top: 22px;
}

.como-comprar__cierre strong {
  color: var(--azul);
}

/* ============================================================
   PÁGINA SOCIAL Y CULTURAL
   ============================================================ */
.social {
  padding: 26px 0 30px;
}

.social__intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 36px;
}

.social__imagen img {
  width: 100%;
  border-radius: 18px;
}

.social__titulo {
  font-size: var(--fs-titulo);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 14px;
}

.social__texto {
  font-size: var(--fs-parrafo);
  color: var(--azul);
  margin-bottom: 12px;
}

.social__texto strong {
  color: var(--azul);
}

/* Banners de propuestas (imágenes únicas) */
.lista-propuestas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.propuesta img {
  width: 100%;
  border-radius: var(--radio);
}

/* Logo cultura */
.cultura-logo {
  text-align: center;
  margin: 30px 0 26px;
}

.cultura-logo img {
  max-width: 260px;
  /* margin: 0 auto; */
  margin: 58px auto;
  background: none;
}

/* Botones de acción social */
.social__acciones {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: 420px 420px;
  justify-content: center;
  gap: 18px 40px;
  /* gap: 18px 65px; */
  align-items: start;
  max-width: 940px;
  /* margin: 24px auto 0; */
  margin: 55px auto 0;
}

.boton-accion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-parrafo);
  padding: 12px 26px;
  border-radius: 12.8px;
  border: none;
  color: var(--blanco);
  cursor: pointer;
  text-decoration: none;

  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  will-change: transform;
}

.boton-accion:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  filter: brightness(1.08);
}

.boton-accion:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  filter: brightness(0.96);
}

.boton-accion:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

.boton-accion img {
  height: 38px;
  width: auto;
  background: none;
}

.boton-accion--azul {
  background-color: var(--azul);
}

.boton-accion--verde {
  background-color: var(--verde);
}

.social__contacto {
  grid-column: 2;
  text-align: left;
  align-self: start;
  font-size: var(--fs-parrafo);
  color: var(--azul);
  line-height: 1.5;
  margin: 0;
}

.social__contacto strong {
  color: var(--azul);
}

.social__redes {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 10px;
  margin-top: 50px;

  margin-left: -13px;
}

.social__red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-parrafo);
  color: var(--azul);
  text-decoration: none;
}

.social__red:hover {
  text-decoration: underline;
}

.social__red img {
  width: 35px;
  height: 35px;
  background: none;
}


/* ============================================================
   FORMULARIO  */

.ofertas-formulario {
  padding: 2rem 0;
}

.ofertas-formulario .titulo {
  /* font-size: calc(0.65vw + 1.5em); */
  font-size: var(--fs-subtitulo);
  font-weight: 900;
  margin: .5em auto 1em;
  text-align: center;
  color: var(--azul);
  font-style: normal;
  font-weight: 900;
  line-height: 123%;
  letter-spacing: 0.6px;
}

.ofertas-formulario .titulo strong {
  color: var(--rojo-cooperativa);
}

.newsletter {
  -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
  animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

.newsletter--sent {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.newsletter--sent .newsletter__form {
  flex: 0 1 auto;
  margin-top: auto;
  margin-bottom: auto;
}


.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  /* max-width: 360px; */
  /* margin: 4% auto 2%; */
  padding-top: 10px;
}

.form__row {
  /* margin-bottom: 1em; */
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: fadeIn 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  position: relative;
}

.form__row:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.form__row:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.form__row:nth-of-type(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.form__row:nth-of-type(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.form__row:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.form__status,
.form__note {
  font-size: calc(0.65vw + 1.4em);
  margin-bottom: 0.5em;
  /* margin-top: 1em; */
  font-family: "Inter", sans-serif;
}

.form__status.success {
  color: #00b63e;
}

.form__status.error {
  color: #b00606;
}

.form__field {
  display: flex;
  width: 240px;
  padding: 13.714px 16.457px;
  align-items: center;
  gap: 13.714px;

  border-radius: 10.971px;
  background: #E3E3E3;

  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16.457px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;

  border: none;
}

/* .campo_correo {
  width: 380px;
} */

.form__field:focus {
  outline: none;
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

.form span.error {
  background: #b00606;
  border-radius: 0.3em 0 0.3em 0;
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
  /* font-size: calc(0.3125vw + 1em); */
  font-size: calc(0.0125vw + 1em);
  padding: 0.2em 0.33em;
  position: absolute;
  right: 0;
  bottom: 0;
  letter-spacing: 0;
}

.buttons {
  font-size: 0.8em;
}

.btn {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* width: 100%; */
  /* width: 194px; */

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.btn:active,
.btn:focus {
  outline: none;
}

.btn:hover {
  /* -webkit-transform: scale(1.05); */
  /* -moz-transform: scale(1.05); */
  /* -ms-transform: scale(1.05); */
  /* -o-transform: scale(1.05); */
  /* transform: scale(1.05); */
  text-decoration: none;
}


.btn {
  display: flex;
  width: 240px;
  height: 48px;
  padding: 14px 16.8px;
  justify-content: center;
  align-items: center;
  gap: 14px;

  border-radius: 11.2px;
  background: #154D9A;
  font-family: "Inter", sans-serif;
  color: #fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.btn:hover {
  background-color: #E1291B;
}

.btn:focus,
.btn:active {
  outline: none;
}

.btn:active {
  opacity: 0.7;
}

.btn:hover {
  /* -webkit-transform: scale(1.025); */
  /* -ms-transform: scale(1.025); */
  /* transform: scale(1.025); */
  -webkit-filter: contrast(1.1) brightness(1.1);
  filter: contrast(1.1) brightness(1.1);
  -webkit-box-shadow: 0 0.8em 0.25em -0.6em rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.8em 0.25em -0.6em rgba(0, 0, 0, 0.5);
  cursor: pointer;
}


.btn:active {
  -webkit-transition: transform 0.1s linear, box-shadow 0.1s linear;
  -moz-transition: transform 0.1s linear, box-shadow 0.1s linear;
  -ms-transition: transform 0.1s linear, box-shadow 0.1s linear;
  -o-transition: transform 0.1s linear, box-shadow 0.1s linear;
  transition: transform 0.1s linear, box-shadow 0.1s linear;
  -webkit-transform: translateY(0.2em);
  -ms-transform: translateY(0.2em);
  -o-transform: translateY(0.2em);
  transform: translateY(0.2em);
  -webkit-box-shadow: 0 0.4em 0.125em -0.3em rgba(0, 0, 0, 0.75);
  box-shadow: 0 0.4em 0.125em -0.3em rgba(0, 0, 0, 0.75);
}



.form__field.invalid:focus,
.form__field.invalid {
  background-color: rgba(238, 0, 0, 0.3);
  outline: 1px dashed #f00;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

  /* Menú colapsable */
  .menu-boton {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--blanco);
    /* border-bottom: 1px solid var(--gris-borde); */
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transicion);
  }

  .menu.abierto {
    max-height: 420px;
  }

  .menu__enlace {
    width: 100%;
    padding: 16px 20px;
    /* border-bottom: 1px solid var(--gris-borde); */
  }

  /* .menu__enlace.activo {
    border-bottom: 1px solid var(--gris-borde);
    padding-bottom: 16px;
  } */

  /* Héroe index */
  .heroe-index__fila,
  .bienvenida {
    grid-template-columns: 1fr;
  }

  /* Héroe secundario: decoración más discreta */
  .heroe-secundario__decoracion {
    width: 220px;
    opacity: 0.9;
  }

  .heroe-secundario__logo {
    max-width: 70%;
  }

  /* Grillas a menos columnas */
  .grilla-marcas,
  .grilla-servicios {
    grid-template-columns: repeat(2, 1fr);
  }

  .grilla-ofertas {
    grid-template-columns: repeat(2, 1fr);
  }

  .grilla-beneficios {
    grid-template-columns: 1fr;
  }

  .coopemail,
  .como-comprar__cuerpo,
  .social__intro {
    grid-template-columns: 1fr;
  }

  /* Mosaico compromiso: dos columnas apiladas */
  .mosaico-compromiso {
    /* grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "img1 img1"
      "img2 img3"
      "img4 img5"
      "img6 img6"
      "img7 img7"
      "img8 img8"
      "img9 img9"
      "img10 img10"; */

    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mosaico-compromiso__celda {
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 0;
  }

  .celda--1 {
    /* aspect-ratio: 2 / 1; */
    aspect-ratio: 0;
  }

  .heroe-index__imagen-personas img {
    left: 0;
  }

  .heroe-index__logo {
    width: 95%;
    padding-top: 40px;
    margin-bottom: -20px;
  }
}

@media (max-width: 560px) {

  /* Tamaños reducidos para pantallas chicas (se ajustan desde la raíz) */
  :root {
    --fs-display: 2.4rem;
    /* --fs-titulo: 1.5rem; */
    /* --fs-titulo: 2.2rem; */
    --fs-titulo: 1.8rem;
  }

  .grilla-marcas,
  .grilla-servicios,
  .grilla-ofertas {
    grid-template-columns: 1fr;
  }

  .pie__barra {
    flex-direction: column;
    /* gap: 16px; */
    gap: 45px;
    text-align: center;
    margin-bottom: 12px;
  }

  .social__acciones {
    grid-template-columns: 1fr;
  }

  .social__contacto {
    grid-column: 1;
    text-align: center;
  }

  .pie__izquierda {
    display: flex;
    align-items: center;
    gap: 27px;
    flex-direction: column;
  }

  .pie__enlace {
    font-size: var(--fs-parrafo);
    color: #0E253D;
    font-weight: 500;
  }

  .pie__redes {
    display: flex;
    gap: 21px;
  }

  .pie__logo img {
    /* height: 38px; */
    /* width: auto; */
    width: 215px;
    background: none;
  }

  .btn-scrollToTop {
    display: none;
  }

  .encabezado__contenido {
    flex-direction: row-reverse;
    margin-left: -70px;
  }

  .form__field {
    display: flex;
    width: 300px;
  }

  .btn {
    width: 300px;
    margin-top: 15px;
  }

  .bienvenida__titulo {
    display: ruby-text;
    gap: 10px;
  }

  .bienvenida__titulo .logo-lacoope {
    width: 105px;
    position: relative;
    top: 7px;
    margin-right: 3px;
    margin-left: 1px;
  }

  .bienvenida__texto {
    font-size: var(--fs-parrafo);
    color: var(--azul);
    margin-bottom: 14px;
    margin-top: -9px;
  }

  .heroe-index__fila {
    grid-template-columns: 1fr;
    /* una sola columna */
    justify-items: center;
    /* centra el contenido horizontalmente */
    text-align: center;
  }

  /* La imagen de personas va primero (arriba del logo) */
  .heroe-index__imagen-personas {
    order: -1;
  }

  .heroe-index__imagen-personas img {
    width: 100%;
  }

  .bienvenida__imagen img {
    width: 95%;
    border-radius: 18px;
    margin: 0 auto;
  }

  .heroe-index__badge {
    max-width: 280px;
  }

  .ofertas-formulario {
    /* padding: 1rem 0 2.5rem; */
    padding: 1rem 0 1rem;
  }

  .te-esperamos__dato {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    font-size: 23px;
    margin: 10px 0;
    text-align: left;
  }

  .te-esperamos__dato img {
    width: 50px;
    height: 50px;
    background: none;
  }

  .cuenta-regresiva {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 35px;
    flex-wrap: wrap;
    margin-left: -17px;
  }

  .cuenta-regresiva__etiqueta {
    color: var(--amarillo);
    font-size: var(--fs-titulo);
    font-weight: 800;
    margin-right: 10px;
    position: relative;
    top: -10px;
    left: 8px;
  }

  .heroe-secundario {
    /* position: relative; */
    display: flex;
    flex-direction: column-reverse;
    padding: 0px;
    gap: 15px;
    /* overflow: hidden; */
  }

  .heroe-secundario__decoracion {
    position: relative;
    top: -5px;
    right: 0px;
    width: 100%;
    max-width: 100%;
    background: none;
    pointer-events: none;
  }

  .heroe-secundario__decoracion {
    width: 100%;
    opacity: 0.9;
  }

  .heroe-secundario__logo {
    max-width: 95%;
    margin: 0 auto;
  }

  .beneficio-economia {
    font-weight: 500;
    color: var(--azul) !important;
    /* font-size: var(--fs-parrafo); */
    font-size: 22px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: -49px;
    line-height: 1.2;
  }

  .titulo-seccion-mb strong {
    font-size: 39px;
    color: var(--azul) !important;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .subtitulo-seccion {
    margin: 28px 0 18px;
  }

  .beneficio-titulo-contenedor {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    align-items: center;
    margin-top: 0px;
  }

  .tarjeta-oferta__imagen img {
    margin: 0 auto;
    width: 90%;
  }

  .tarjeta-oferta__texto {
    margin-left: 22px;
  }

  .tarjeta-marca {
    width: 90%;
    margin: 0 auto;
  }

  .grilla-marcas {
    gap: 30px;
  }

  .acordeon-contenido {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;

    /* flex-direction: row; */
    /* justify-content: center; */
  }

  .tarjeta-servicio {
    width: 80%;
    margin: 0 auto;
  }

  .tarjeta-servicio__icono img {
    height: 60px;
    width: auto;
    background: none;
  }

  .tarjeta-servicio__texto {
    font-size: var(--fs-parrafo);
    font-weight: 500;
  }

  .tarjeta-servicio__info {
    font-size: var(--fs-parrafo);
    font-weight: 700;
    color: var(--azul-medio);
    text-decoration: none;
  }

  .titulo-seccion-coope .logo-lacoope {
    width: 115px;
    position: relative;
    top: 0px;
  }

  .titulo-seccion-coope {
    margin-bottom: 11px;
  }

  .coopemail {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 34px;
  }

  .coopemail__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-parrafo);
    height: 38px;
    line-height: 1.2;
  }

  .coopemail__lista {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 18px;
  }

  .coopemail__item img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: none;
  }

  .boton-suscribite {
    flex-direction: column-reverse;
    margin-top: 35px;
    margin: 38px auto 0;
  }

  .como-comprar__mapa iframe {
    width: 95%;
    aspect-ratio: 210 / 175;
    border: 0;
    border-radius: 33px;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .como-comprar__datos {
    display: flex;
    flex-direction: column;
    /* gap: 26px; */
    gap: 50px;
    margin-left: 8px;
  }

  .social__imagen img {
    width: 95%;
    border-radius: 18px;
    margin: 0 auto;
  }

  .boton-accion {
    padding: 12px 0px;
  }

  .social__redes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
    margin-top: 50px;
    margin-left: -13px;
    flex-direction: column;
    align-items: center;
  }

  .logo-banco {
    width: 150px;
    height: 35px;
  }

  .beneficio-titulo-contenedor h2 {
    margin-top: 40px;
    padding-top: 38px;
    font-size: var(--fs-titulo-v2);
    color: var(--azul);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }

  .beneficio--boton img {
    /* height: 18px; */
    /* width: auto; */
    width: 280px;
    background: none;
  }

  .beneficio-titulo-contenedor {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 24px;
    align-items: center;
    margin-top: 0px;
    flex-direction: column;
  }

  .beneficio-titulo-contenedor h3 {
    margin-top: 40px;
    font-size: var(--fs-titulo-v2);
    color: var(--azul);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: -18px;
  }

  .bienvenida__titulo {
    font-size: var(--fs-titulo-v2);
  }

  .bloque-form-contador {
    display: flex;
    flex-direction: column;
  }

  .formulario-ofertas {
    order: 2;
  }

  .te-esperamos {
    order: 1;
  }

  .como-comprar {
    padding: 1px 0 40px;
  }
}