/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap');

/* ===========================
   BRAND TOKENS
=========================== */
:root {
  --color-navy:      #011638;   /* Azul marino oscuro — primario */
  --color-yellow:    #FDCF07;   /* Amarillo/dorado — acento principal */
  --color-blue:      #017EFE;   /* Azul brillante — secundario */
  --color-blue-mid:  #044FAA;   /* Azul medio */
  --color-orange:    #E2570A;   /* Naranja — acento */
  --color-white:     #FFFFFF;
  --color-gray-light:#F0F0F0;

  --font-heading:    'Montserrat', sans-serif;
  --font-body:       'Poppins', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-navy);
  overflow-x: hidden;
}

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

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.btn--blue {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ===========================
   HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-yellow);
  z-index: 1000;
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* MENU TOGGLE */
.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-icon span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--color-navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-top: 2px;
}

.menu-toggle.is-open .hamburger-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.is-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .hamburger-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===========================
   NAV OVERLAY
=========================== */
.nav-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: var(--color-navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 2px;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--color-yellow);
}

/* ===========================
   HERO
=========================== */
.hero {
  margin-top: 72px;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 500px;
  overflow: hidden;
  position: relative;
  background: var(--color-navy);
  display: flex;
  align-items: center;
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 660px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

/* ===========================
   SECTION SVGs
=========================== */
.section-svg {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* ===========================
   SECCIÓN 1: INTRO SPLIT (blanco)
=========================== */
.intro-split {
  background: var(--color-white);
  padding: 80px 28px;
}

.intro-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-split__heading {
  flex: 0 0 auto;
  min-width: 280px;
}

.script-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.bold-tag {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--color-navy);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
  letter-spacing: -1px;
}

.intro-split__body {
  flex: 1;
}

.intro-split__deco {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  opacity: 0.9;
}

.intro-split__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #444;
  margin-bottom: 28px;
  max-width: 680px;
}

/* ===========================
   FEATURE SECTIONS
   (marino / amarillo con imagen diagonal)
=========================== */
.feature-section {
  position: relative;
  overflow: hidden;
}

.feature-section--dark {
  background: var(--color-navy);
}

.feature-section--yellow {
  background: var(--color-yellow);
}

.feature-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 60px 28px;
  gap: 40px;
}

.feature-section__inner--reverse {
  flex-direction: row-reverse;
}

/* Text side */
.feature-section__text {
  flex: 1;
  max-width: 560px;
}

.fs-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fs-label--dark {
  color: var(--color-navy);
}

.fs-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.fs-title--yellow {
  color: var(--color-yellow);
}

.fs-title--dark {
  color: var(--color-navy);
}

.fs-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 500px;
}

.fs-body--dark {
  color: rgba(1, 22, 56, 0.75);
}

/* Media / diagonal image side */
.feature-section__media {
  flex: 0 0 45%;
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.diagonal-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: relative;
}

.diagonal-img-wrap--right {
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}

.diagonal-img-wrap--left {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.diagonal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Decorative diagonal lines */
.diagonal-lines {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 220px;
  z-index: 2;
  pointer-events: none;
}

.diagonal-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 6px,
    currentColor 6px,
    currentColor 8px
  );
}

.diagonal-lines--blue {
  color: rgba(1, 126, 254, 0.5);
}

.diagonal-lines--orange {
  color: rgba(226, 87, 10, 0.5);
  right: auto;
  left: -20px;
}

.diagonal-lines--navy {
  color: rgba(1, 22, 56, 0.2);
  top: auto;
  bottom: -20px;
}

.diagonal-lines--mixed {
  right: auto;
  right: -20px;
}

.diagonal-lines--mixed::before {
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 5px,
    rgba(253, 207, 7, 0.6) 5px,
    rgba(253, 207, 7, 0.6) 7px,
    transparent 7px,
    transparent 12px,
    rgba(226, 87, 10, 0.4) 12px,
    rgba(226, 87, 10, 0.4) 14px
  );
}

/* ===========================
   SECCIÓN 3: INVITE / PROGRAMAS (amarillo)
=========================== */
.invite-section {
  background: var(--color-yellow);
  padding: 70px 28px;
  text-align: center;
}

.invite-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.invite-section__card {
  background: var(--color-white);
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 50px 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}

.program-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--color-navy);
  padding-left: 14px;
  gap: 6px;
}

.program-item__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

.program-item__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-navy);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
}

.program-item__sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-blue-mid);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===========================
   SECCIÓN 4: QUOTE (blanco)
=========================== */
.quote-section {
  background: var(--color-white);
  overflow: hidden;
}

.quote-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 380px;
  padding: 70px 28px;
  gap: 40px;
}

.quote-section__text {
  flex: 1;
  max-width: 620px;
}

.quote-section__text blockquote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-navy);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--color-yellow);
}

.quote-section__text cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-blue-mid);
  margin-bottom: 28px;
  text-align: right;
  max-width: 560px;
}

.quote-section__media {
  flex: 0 0 40%;
  position: relative;
  height: 300px;
}

/* ===========================
   SECCIÓN 7: NEWSLETTER (gris claro)
=========================== */
.newsletter-section {
  background: var(--color-gray-light);
  padding: 44px 28px;
  border-top: 3px solid var(--color-yellow);
}

.newsletter-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-section__socials {
  display: flex;
  gap: 10px;
}

.newsletter-section__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
}

/* Social icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  transition: background 0.2s, transform 0.2s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--color-navy);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.social-icon--footer {
  width: 44px;
  height: 44px;
}

.social-icon--footer svg {
  width: 20px;
  height: 20px;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
}

.newsletter-form__input {
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border: 1px solid #bbb;
  background: var(--color-white);
  outline: none;
  width: 230px;
  color: var(--color-navy);
}

.newsletter-form__input:focus {
  border-color: var(--color-blue-mid);
}

.newsletter-form__input::placeholder {
  color: #999;
}

.newsletter-form__btn {
  padding: 11px 20px;
  background: var(--color-navy);
  color: var(--color-yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.newsletter-form__btn:hover {
  background: var(--color-blue-mid);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.site-footer__top,
.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 60px 28px 40px;
}

.site-footer__bottom {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
  flex: 1;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
}

.partner-placeholder {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.partner-placeholder:hover {
  color: var(--color-yellow);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-brands span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.site-footer__logo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 40px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.site-footer__bar {
  background: var(--color-yellow);
  text-align: center;
  padding: 14px 28px;
}

.site-footer__bar p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--color-navy);
  text-transform: uppercase;
}
