/* ============================================================
   LANDING.CSS — HONNE Sector Educativo
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --honne-blue:      #002e6d;
  --honne-orange:    #e65300;
  --honne-gray-bg:   #d6d6d6;
  --honne-mid-blue:  #5f8db5;
  --honne-dark:      #333333;
  --honne-text-muted:#949494;
  --honne-white:     #ffffff;
  --header-height:   70px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   BASE
   ============================================================ */
html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--honne-dark);
  background-color: var(--honne-white);
}

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

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

button {
  cursor: pointer;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  background: var(--honne-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
}

/* --- Left --- */
.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 40px;
  object-fit: contain;
  display: block;
}

.site-header__menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #212121;
  border-radius: 4px;
  transition: color 0.2s;
}

.site-header__menu-button:hover {
  color: var(--honne-blue);
}

/* --- Center nav (desktop) --- */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.site-header__nav a,
.site-header__nav .site-header__dropdown-toggle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16pt;
  color: #757575;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-header__nav a:hover,
.site-header__nav a.nav-link--active,
.site-header__nav .site-header__dropdown-toggle:hover,
.site-header__nav .site-header__dropdown-toggle[aria-expanded="true"] {
  font-weight: 700;
  color: #212121;
}

.site-header__dropdown-icon {
  font-size: 0.65em;
  transition: transform 0.2s;
  display: inline-block;
}

.site-header__dropdown-toggle[aria-expanded="true"] .site-header__dropdown-icon {
  transform: rotate(180deg);
}

/* Desktop dropdown */
.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--honne-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 10;
}

.site-header__dropdown:hover .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--honne-dark);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.site-header__dropdown-menu li a:hover {
  background: #f5f5f5;
  color: var(--honne-blue);
}

/* --- Right actions --- */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__lang {
  display: flex;
  align-items: center;
}

.site-header__lang-btn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #757575;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.site-header__lang-btn:first-child {
  border-right: 1px solid #fff;
}

.site-header__lang-btn.lang-active {
  color: #212121;
  font-weight: 700;
}

.site-header__lang-btn:hover {
  color: #212121;
}

.site-header__linkedin {
  display: flex;
  align-items: center;
  color: #757575;
  transition: color 0.2s;
}

.site-header__linkedin:hover {
  color: #212121;
}

/* --- Desktop breakpoint --- */
@media (min-width: 1200px) {
  .site-header__nav {
    display: flex;
  }

  .site-header__menu-button {
    display: none;
  }
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 300px;
  background: var(--honne-white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1200;
  padding: 16px;
  overflow-y: auto;
}

.drawer--open {
  transform: translateX(0);
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: none;
}

.drawer__overlay--visible {
  display: block;
}

.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s;
}

.drawer__close:hover {
  color: var(--honne-blue);
}

.drawer__logo {
  padding: 8px 0 24px;
  margin-top: 8px;
}

.drawer__logo img {
  height: 36px;
  object-fit: contain;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav-link,
.drawer__toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #212121;
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: color 0.2s;
}

.drawer__nav-link:hover,
.drawer__toggle:hover {
  color: var(--honne-blue);
}

.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__toggle-icon {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.drawer__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.drawer__submenu--open {
  max-height: 200px;
}

.drawer__submenu-link {
  display: block;
  padding: 10px 0 10px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #757575;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}

.drawer__submenu-link:hover {
  color: var(--honne-blue);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--honne-white);
  padding: 24px 32px;
  border-top: 1px solid #f0f0f0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__brand img {
  height: 40px;
  object-fit: contain;
}

.site-footer__legal {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--honne-text-muted);
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.site-footer__links a {
  color: var(--honne-text-muted);
  font-size: 0.7rem;
  margin: 0 4px;
  text-decoration: none;
  transition: text-decoration 0.1s;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--honne-text-muted);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--honne-text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__contact a:hover {
  color: var(--honne-blue);
}

.site-footer__contact img {
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__help {
  font-size: 0.875rem;
  color: var(--honne-text-muted);
  margin-bottom: 4px;
}

/* --- Footer responsive --- */
@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__brand {
    display: flex;
    justify-content: center;
  }

  .site-footer__contact {
    align-items: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.honne-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.honne-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height, 70px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
  background-color: #f5f8fc;
}

.honne-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(245, 248, 252, 0.38) 0%,
      rgba(245, 248, 252, 0.52) 42%,
      rgba(245, 248, 252, 0.22) 100%
    ),
    url("/landing/assets/img/fondo-mundo-2.jpg") left bottom / cover no-repeat;

  z-index: 0;
}

.honne-hero__shape--one {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(0, 46, 109, 0.08);
  animation: honneRotate 20s linear infinite;
  z-index: 0;
}

.honne-hero__shape--two {
  position: absolute;
  bottom: 60px;
  left: 40px;
  width: 120px;
  height: 120px;
  background: rgba(230, 83, 0, 0.05);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: honneFloat 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes honneRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes honneFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.honne-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.honne-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;

}
.honne-hero__div {
  display: block;
}
.honne-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--honne-orange);
  padding: .5rem 1.2rem;
}

.honne-hero__eyebrow-sep {
  color: #fff;
}

.honne-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--honne-blue);
  max-width: 540px;
}

.honne-hero__lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}

.honne-hero__text {
  font-size: 1.15rem;
  font-weight: 200;
  line-height: 1.7;
  color: #333;
}

/* ── FORMULARIO ─────────────────────────────────── */

.honne-hero__form-wrap {
  width: 100%;
}

.honne-form-card {
  background: #b4cdfc;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 46, 109, 0.10);
  padding: 36px 32px;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.honne-form-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--honne-blue);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.honne-form-card__desc {
  font-size: 0.875rem;
  color: #213564;
  line-height: 1.6;
  margin-bottom: 24px;
}

.honne-form-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.honne-form-card__field {
  display: flex;
  flex-direction: column;
}

.honne-form-card__field--full {
  grid-column: 1 / -1;
}

.honne-form-card__field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.honne-form-card__field input:focus {
  border-color: var(--honne-blue);
  background: #fff;
}

.honne-form-card__field input::placeholder {
  color: #aaa;
}

.honne-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 48px 14px 20px;
  background: var(--honne-orange);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 92% 0, 80% 100%, 0 100%);
  transition: opacity 0.2s;
}

.honne-btn:hover    { opacity: 0.88; }
.honne-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.honne-btn__arrow {
  font-size: 1.1rem;
  margin-left: 8px;
}

.honne-form-card__msg {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  padding: 8px 12px;
  margin-top: 4px;
  border-left: 3px solid;
}

.honne-form-card__msg--ok {
  color: #0a7a2f;
  border-color: #0a7a2f;
  background: #f0faf4;
}

.honne-form-card__msg--error {
  color: #b00020;
  border-color: #b00020;
  background: #fff5f5;
}

/* ── RESPONSIVE HERO ───────────────────────────── */

@media (max-width: 991px) {
  .honne-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .honne-hero__title {
    font-size: 1.9rem;
  }

  .honne-hero {
    padding: 80px 0 60px;
      background-color: #f5f8fc;
  }
}

@media (max-width: 600px) {
  .honne-form-card {
    padding: 24px 16px;
  }

  .honne-form-card__grid {
    grid-template-columns: 1fr;
  }

  .honne-form-card__field {
    grid-column: 1 / -1;
  }

  .honne-hero__title {
    font-size: 1.6rem;
  }
}

.honne-sector-hero {
  padding: 110px 0 70px;
  background: #fff;
  overflow: hidden;
}

.honne-sector-hero__inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Imagen principal */
.honne-sector-hero__mundo {
  width: min(100%, 620px);
  margin: 0 auto 34px;
}

.honne-sector-hero__mundo img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  max-width: 25rem;
  margin: 0 auto;
}

/* Logo Honne */
.honne-sector-hero__logo {
  width: min(100%, 360px);
  margin: 0 auto 32px;
}

.honne-sector-hero__logo img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

/* Logos cloud */
.honne-sector-hero__logos {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 46, 109, 0.12);
}

.honne-sector-hero__logos img {
  width: 100%;
  max-width: 110px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.honne-sector-hero__logos img:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .honne-sector-hero {
    padding: 90px 0 54px;
  }

  .honne-sector-hero__mundo {
    width: min(100%, 520px);
    margin-bottom: 28px;
  }

  .honne-sector-hero__logo {
    width: min(75%, 320px);
    margin-bottom: 28px;
  }

  .honne-sector-hero__logos {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 420px);
    gap: 22px 28px;
  }

  .honne-sector-hero__logos img {
    max-width: 115px;
  }
}

@media (max-width: 480px) {
  .honne-sector-hero {
    padding: 80px 0 44px;
  }

  .honne-sector-hero__mundo {
    width: 100%;
  }

  .honne-sector-hero__logo {
    width: 82%;
  }

  .honne-sector-hero__logos {
    gap: 18px;
  }

  .honne-sector-hero__logos img {
    max-width: 95px;
  }
}

/* ══════════════════════════════════════════════
   HONNE EDUCACIÓN INTRO
══════════════════════════════════════════════ */

.honne-educacion-intro {
  padding: 0;
  background: var(--honne-white);
}

.honne-educacion-intro__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.honne-educacion-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(95, 141, 181, 0.16);
  color: var(--honne-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.honne-educacion-intro__eyebrow span {
  color: var(--honne-orange);
  opacity: 0.7;
}

.honne-educacion-intro__title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--honne-blue);
}

.honne-educacion-intro__text {
  max-width: 860px;
  margin: 0 auto 16px;
  color: var(--honne-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.honne-educacion-intro__cards {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.honne-educacion-intro__card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 42px;
  border-radius: 18px;
  background: rgba(214, 214, 214, 0.28);
  box-shadow: 0 14px 35px rgba(0, 46, 109, 0.08);
}

.honne-educacion-intro__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--honne-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 46, 109, 0.08);
}

.honne-educacion-intro__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--honne-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 46, 109, 0.08);
}

.honne-educacion-intro__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.honne-educacion-intro__card h3 {
  margin: 0 0 18px;
  color: var(--honne-blue);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.honne-educacion-intro__card p {
  margin: 0;
  color: var(--honne-dark);
  font-size: 1.02rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .honne-educacion-intro__cards {
    grid-template-columns: 1fr;
  }

  .honne-educacion-intro__card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .honne-educacion-intro__card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: center;
  }

  .honne-educacion-intro__icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .honne-educacion-intro {
    padding: 64px 0;
  }

  .honne-educacion-intro__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .honne-educacion-intro__text {
    font-size: 1rem;
  }
}

/* CONTENEDOR DE OFERTAS */
.honne-educacion-intro__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITULOS DE CADA OFERTA */
.honne-educacion-intro__list h4 {
  margin: 0 0 6px;
  color: var(--honne-blue);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

/* LISTAS */
.honne-educacion-intro__list ul {
  margin: 0;
  padding-left: 18px;
}

.honne-educacion-intro__list li {
  margin-bottom: 6px;
  color: var(--honne-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}