/* ==========================================================================
   Breeze Lingo · NOSOTROS · Hero (Fiel a la guía Figma)
   ========================================================================== */

.nos-hero {
  padding-top: calc(var(--bz-nav-alto) + 48px);
  padding-bottom: 64px;
  background: #fafcfb;
  overflow: hidden;
}

.nos-hero__cabecera {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.nos-hero__eyebrow {
  display: inline-block;
  font-family: var(--bz-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10b981;
  background: #ecfdf5;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.nos-hero__titulo {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.nos-hero__entrada {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 64ch;
  margin-inline: auto;
}

/* Mosaico exacto */
.nos-hero__mosaico {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
  max-width: 1140px;
  margin-inline: auto;
}

.nos-hero__card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nos-hero__card--foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* UI Mockup 1: Calendario */
.nos-hero__card--ui-calendar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nos-ui-cal__nav {
  display: flex;
  gap: 6px;
  background: #f3f4f6;
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.nos-ui-cal__tab {
  flex: 1;
  text-align: center;
  font-size: 0.725rem;
  font-weight: 600;
  color: #6b7280;
  padding: 4px 0;
  border-radius: 6px;
}

.nos-ui-cal__tab--active {
  background: #10b981;
  color: #ffffff;
}

.nos-ui-cal__days {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.nos-ui-cal__day {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  font-size: 0.675rem;
  color: #6b7280;
}

.nos-ui-cal__day strong {
  font-size: 0.825rem;
  color: #111827;
}

.nos-ui-cal__day--active {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}
.nos-ui-cal__day--active strong {
  color: #047857;
}

.nos-ui-cal__slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nos-ui-cal__slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.775rem;
  color: #374151;
  font-weight: 500;
}

.nos-ui-cal__slot--booked {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-weight: 600;
}

/* UI Mockup 2: Tarjeta Verde Progreso */
.nos-hero__card--ui-progress {
  background: #064e3b;
  color: #ffffff;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nos-ui-prog__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6ee7b7;
  letter-spacing: 0.05em;
}

.nos-ui-prog__dot {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34d399;
}

.nos-ui-prog__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 8px;
}

.nos-ui-prog__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.nos-ui-prog__bar-row {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  overflow: hidden;
}

.nos-ui-prog__bar-fill {
  height: 100%;
  background: #34d399;
  border-radius: 9999px;
}

.nos-ui-prog__footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.725rem;
  color: #a7f3d0;
}

@media (max-width: 900px) {
  .nos-hero__mosaico {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .nos-hero__mosaico {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Breeze Lingo · NOSOTROS · Métricas
   ========================================================================== */

.nos-metricas {
  padding-block: var(--bz-space-12);
  background: var(--bz-surface);
}

.nos-metricas__lista {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nos-metricas__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nos-metricas__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.nos-metricas__icono {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nos-metricas__icono--mint {
  background: #ecfdf5;
  color: #10b981;
}

.nos-metricas__icono--purple {
  background: #f3e8ff;
  color: #9333ea;
}

.nos-metricas__icono--orange {
  background: #ffedd5;
  color: #f97316;
}

.nos-metricas__cifra {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.nos-metricas__plus,
.nos-metricas__pct {
  color: #10b981;
  font-weight: 700;
}

.nos-metricas__de {
  font-size: 1.25rem;
  color: #9ca3af;
  font-weight: 500;
}

.nos-metricas__etiqueta {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

@media (max-width: 900px) {
  .nos-metricas__lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .nos-metricas__lista {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Breeze Lingo · NOSOTROS · Misión
   ========================================================================== */

.nos-mision {
  padding-block: var(--bz-space-16);
  background: var(--bz-surface);
}

/* Header Split */
.nos-mision__cabecera {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: var(--bz-space-12);
}

.nos-mision__eyebrow {
  display: inline-block;
  font-size: var(--bz-size-xs);
  font-weight: var(--bz-weight-semibold);
  letter-spacing: var(--bz-tracking-wider);
  text-transform: uppercase;
  color: #059669;
  background: #ecfdf5;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.nos-mision__titulo {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--bz-ink);
  letter-spacing: -0.02em;
}

.nos-mision__entrada {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Grid principal */
.nos-mision__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.nos-mision__foto-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nos-mision__foto {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* Derecha: Bloques informativos */
.nos-mision__bloques {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bloque Avatares */
.nos-mision__card-avatares {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nos-mision__avatares-grupo {
  display: flex;
  align-items: center;
}

.nos-mision__avatares-grupo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}

.nos-mision__avatares-grupo img:first-child {
  margin-left: 0;
}

.nos-mision__avatares-info {
  display: flex;
  flex-direction: column;
}

.nos-mision__avatares-cifra {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}

.nos-mision__avatares-label {
  font-size: 0.825rem;
  color: #6b7280;
}

/* Bloque Menta Destacado */
.nos-mision__card-destacada {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  padding: 28px 24px;
}

.nos-mision__destacada-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 10px;
  line-height: 1.3;
}

.nos-mision__destacada-texto {
  font-size: 0.925rem;
  line-height: 1.5;
  color: #047857;
  margin-bottom: 20px;
}

.nos-mision__cta {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nos-mision__cta:hover {
  background: #059669;
}

/* Responsive */
@media (max-width: 900px) {
  .nos-mision__cabecera,
  .nos-mision__grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Breeze Lingo · NOSOTROS · Método
   ========================================================================== */

.nos-metodo {
  padding-block: var(--bz-space-16);
  background: var(--bz-surface);
}

.nos-metodo__tarjeta-gran {
  background: #f4f8f6;
  border-radius: 28px;
  padding: 48px 40px;
  border: 1px solid #e5ebe7;
}

.nos-metodo__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}

/* Izquierda */
.nos-metodo__eyebrow {
  display: inline-block;
  font-size: var(--bz-size-xs);
  font-weight: var(--bz-weight-semibold);
  letter-spacing: var(--bz-tracking-wider);
  text-transform: uppercase;
  color: #059669;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.nos-metodo__titulo {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--bz-ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.nos-metodo__entrada {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 28px;
}

.nos-metodo__acciones {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nos-metodo__cta {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nos-metodo__cta:hover {
  background: #059669;
}

.nos-metodo__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nos-metodo__avatares {
  display: flex;
  align-items: center;
}

.nos-metodo__avatares img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
}

.nos-metodo__avatares img:first-child {
  margin-left: 0;
}

.nos-metodo__social-texto {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

/* Derecha: 2x2 Cuadrícula */
.nos-metodo__cuadricula {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nos-metodo__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid #e8ece9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.nos-metodo__icono {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.nos-metodo__icono--mint { background: #ecfdf5; color: #10b981; }
.nos-metodo__icono--purple { background: #f3e8ff; color: #9333ea; }
.nos-metodo__icono--orange { background: #ffedd5; color: #f97316; }

.nos-metodo__card-titulo {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.nos-metodo__card-texto {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #6b7280;
}

/* Pie del banner */
.nos-metodo__banner-pie {
  border-top: 1px solid #e1e8e4;
  padding-top: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .nos-metodo__grid {
    grid-template-columns: 1fr;
  }
  .nos-metodo__cuadricula {
    grid-template-columns: 1fr;
  }
  .nos-metodo__tarjeta-gran {
    padding: 32px 20px;
  }
}
/* ==========================================================================
   Breeze Lingo · NOSOTROS · Así se aprende en Breeze
   background-image sprite de nos-aprende.png (2 col top × 3 col bottom)
   ========================================================================== */

.nos-aprende {
  padding-block: 64px;
  background: #fafcfb;
}

.nos-aprende__cabecera-wrap {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.nos-aprende__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10b981;
  background: #ecfdf5;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.nos-aprende__titulo {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nos-aprende__entrada {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Grid de 4 tarjetas portrait */
.nos-aprende__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nos-aprende__card {
  position: relative;
  height: 400px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nos-aprende__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

/* Backgrounds recortados de nos-aprende.png
   La imagen tiene 2 filas y en total 5 fotos:
   - Fila 1: col1 (0-50% ancho) chica clase online | col2 (50-100% ancho) grupo
   - Fila 2: col1 (0-33%) chica IA | col2 (33-66%) pareja café | col3 (66-100%) chico tablet
   Usamos background-size y background-position exactos. */

.nos-aprende__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Card 1: Foto 8 */
.nos-aprende__bg--1 {
  background-image: url('/assets/nosotros/8.png');
}

/* Card 2: Foto 9 */
.nos-aprende__bg--2 {
  background-image: url('/assets/nosotros/9.png');
}

/* Card 3: Foto 10 */
.nos-aprende__bg--3 {
  background-image: url('/assets/nosotros/10.png');
}

/* Card 4: Foto 11 */
.nos-aprende__bg--4 {
  background-image: url('/assets/nosotros/11.png');
}

.nos-aprende__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.nos-aprende__badge {
  position: relative;
  z-index: 3;
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 9999px;
  width: fit-content;
  letter-spacing: 0.04em;
}

.nos-aprende__contenido {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.nos-aprende__texto-wrap { color: #ffffff; }

.nos-aprende__card-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.nos-aprende__card-texto {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.nos-aprende__btn-circ {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nos-aprende__card:hover .nos-aprende__btn-circ {
  background: #059669;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .nos-aprende__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .nos-aprende__grid { grid-template-columns: 1fr; }
  .nos-aprende__card { height: 300px; }
}
/* ==========================================================================
   Breeze Lingo · NOSOTROS · Equipo
   background-image sprite de nos-equipo.png (2 filas × 3 columnas)
   ========================================================================== */

.nos-equipo {
  padding-block: 64px;
  background: #fafcfb;
}

.nos-equipo__cabecera-wrap {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.nos-equipo__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10b981;
  background: #ecfdf5;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.nos-equipo__titulo {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nos-equipo__entrada {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Grid 3×2 */
.nos-equipo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nos-equipo__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nos-equipo__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Contenedor de la foto */
.nos-equipo__foto-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

/* Cada background-div recorta su celda de nos-equipo.png.
   La imagen es 2 filas × 3 columnas.
   - background-size: 300% 200% → escala para ver 1/3 ancho y 1/2 alto
   - background-position X: 0%, 50%, 100% para columnas 1, 2, 3
   - background-position Y: 0% para fila 1, 100% para fila 2            */
.nos-equipo__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.nos-equipo__card:hover .nos-equipo__bg {
  transform: scale(1.04);
}

/* Fila 1 */
.nos-equipo__bg--1 { background-image: url('/assets/nosotros/12.png'); }
.nos-equipo__bg--2 { background-image: url('/assets/nosotros/13.png'); }
.nos-equipo__bg--3 { background-image: url('/assets/nosotros/14.png'); }

/* Fila 2 */
.nos-equipo__bg--4 { background-image: url('/assets/nosotros/15.png'); }
.nos-equipo__bg--5 { background-image: url('/assets/nosotros/16.png'); }
.nos-equipo__bg--6 { background-image: url('/assets/nosotros/17.png'); }

/* Info pie de tarjeta */
.nos-equipo__info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nos-equipo__nombre {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.nos-equipo__cargo {
  font-size: 0.82rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .nos-equipo__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .nos-equipo__grid { grid-template-columns: 1fr; }
  .nos-equipo__foto-wrap { height: 200px; }
}
