@charset "UTF-8";
@import "../../../_main/components/editorial-style.css";

/* ============================================================
   FONTS DEFINITIONS
   ============================================================ */
@font-face {
  font-family: "TransformaSans";
  src: url("../fonts/TransformaSans_Trial-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TransformaSans";
  src: url("../fonts/TransformaSans_Trial-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TransformaSans";
  src: url("../fonts/TransformaSans_Trial-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TransformaScript";
  src: url("../fonts/TransformaScript_Trial-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.otf") format("opentype");
  font-weight: 500;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLES & DESIGN SYSTEM
   ============================================================ */
:root {
  --ods-blue: #0061ed;
  --ods-pink: #d82c6d;
  --ods-btn-cta: #dd2f70;
  --ods-btn-exp: #319fdf;
  --ods-dark-blue: #00368a;
  --ods-white: #ffffff;

  --font-title:
    "TransformaSans", "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "TransformaScript", cursive;
  --font-body: "Gilroy", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f7f9fc;
  background-image: url("../img/bg-landing.webp");
  background-repeat: repeat;
  font-family: var(--font-body);
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Helper utilities */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.ods-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 5% 0;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ods-brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.ods-brand:hover {
  transform: scale(1.03);
}

.ods-logo-ucv {
  height: clamp(38px, 5vw, 54px);
  width: auto;
}

.ods-header-cta {
  background: var(--ods-btn-cta);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(221, 47, 112, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ods-header-cta:hover {
  background: #c81e5e;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(221, 47, 112, 0.45);
}

.ods-header-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Floating button on mobile */
.ods-floating-cta {
  display: none;
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--ods-btn-cta);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 16px 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 20px 0 0 20px;
  box-shadow: -4px 6px 18px rgba(221, 47, 112, 0.4);
  transition: all 0.25s ease;
}

.ods-floating-cta:active {
  background: #c81e5e;
  transform: translateY(-50%) scale(0.95);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ods-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 110px 4% 60px;
  background-image: url("../img/bg-landing.webp");
  background-repeat: repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.ods-hero-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
}

/* Left Hero Content */
.ods-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 15;
}

.ods-hero-pretitle {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(26px, 3.8vw, 44px);
  color: var(--ods-blue);
  letter-spacing: -0.5px;
  margin: 0 0 16px 0;
  text-shadow:
    2px 2px 0px #ffffff,
    -2px -2px 0px #ffffff,
    2px -2px 0px #ffffff,
    -2px 2px 0px #ffffff;
  line-height: 1.15;
}

/* Open Day 2026 Logo Composite */
.ods-openday-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 10px 0 24px;
  width: 100%;
  max-width: 520px;
}

.ods-year-badge {
  position: absolute;
  top: -28px;
  left: 36%;
  width: clamp(75px, 12vw, 105px);
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.ods-logo-letters {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ods-word-open,
.ods-word-day {
  display: flex;
  align-items: flex-end;
}

.ods-word-open {
  gap: 2px;
}

.ods-word-day {
  gap: 4px;
  margin-left: 28px;
  margin-top: -16px;
}

.ods-letter {
  display: inline-block;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}

.ods-letter--O {
  width: clamp(80px, 12vw, 125px);
  margin-bottom: -10px;
}
.ods-letter--p {
  width: clamp(55px, 9vw, 88px);
  margin-left: -12px;
}
.ods-letter--e {
  width: clamp(55px, 9vw, 88px);
  margin-left: -4px;
}
.ods-letter--n {
  width: clamp(55px, 9vw, 88px);
  margin-left: -2px;
}

.ods-letter--D {
  width: clamp(85px, 13vw, 132px);
}
.ods-letter--a {
  width: clamp(60px, 9.5vw, 92px);
  margin-left: -10px;
}
.ods-letter--y {
  width: clamp(65px, 10vw, 98px);
  margin-left: -6px;
}

/* Doodles around logo */
.ods-doodle {
  position: absolute;
  pointer-events: none;
}

.ods-doodle--curly-left {
  top: 15%;
  left: -45px;
  width: clamp(35px, 6vw, 55px);
}

.ods-doodle--crown-right {
  top: -10px;
  right: 0px;
  width: clamp(45px, 8vw, 70px);
}

.ods-doodle--star-right {
  bottom: 0px;
  right: -25px;
  width: clamp(55px, 9vw, 85px);
}

.ods-doodle--scribble-bottom {
  bottom: -40px;
  left: -30px;
  width: clamp(35px, 5vw, 50px);
}

/* Subtitle and description */
.ods-hero-subtitle {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ods-blue);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.ods-hero-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ods-blue);
  margin: 0;
  max-width: 480px;
  line-height: 1.45;
}

/* Right Hero Content (Authorities & Ribbon) */
.ods-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ods-people-img {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 15px 30px rgba(0, 54, 138, 0.12));
}

.ods-ribbon-bg {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  height: auto;
  z-index: 12;
  pointer-events: none;
}

/* Corner Doodle */
.ods-corner-scribble {
  position: absolute;
  bottom: 20px;
  left: 4%;
  width: 48px;
  opacity: 0.85;
}

/* ============================================================
   SECTION 2: AGENDA TU VISITA & FORM
   ============================================================ */
.ods-agenda {
  position: relative;
  width: 100%;
  padding: 90px 4% 110px;
  background-image:
    url("../img/section2-bg.webp"), url("../img/bg-landing.webp");
  background-repeat: no-repeat, repeat;
  background-position:
    center bottom,
    center top;
  background-size:
    min(1440px, 100%) auto,
    auto;
  overflow: hidden;
}

.ods-agenda-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Headings */
.ods-agenda-headings {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 10;
}

.ods-agenda-pretext {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ods-blue);
  margin: 0 0 10px;
  line-height: 1.35;
}

.ods-agenda-pretext strong {
  font-weight: 700;
}

.ods-agenda-title-blue {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--ods-blue);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.ods-agenda-title-pink {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 62px);
  color: var(--ods-pink);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Content Grid with Students and Form */
.ods-agenda-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.ods-agenda-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 8;
  margin-right: -40px;
}

.ods-students-img {
  width: 100%;
  max-width: 690px;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 15px 35px rgba(0, 34, 110, 0.15));
  display: block;
}

/* Doodles around Agenda */
.ods-doodle-scribble-agenda {
  position: absolute;
  top: -15px;
  left: 20px;
  width: clamp(55px, 6vw, 85px);
  z-index: 6;
  pointer-events: none;
}

.ods-doodle-star-agenda {
  position: absolute;
  top: 15px;
  right: 35px;
  width: clamp(60px, 7vw, 95px);
  z-index: 6;
  pointer-events: none;
}

.ods-doodle-wave-agenda {
  position: absolute;
  top: 42%;
  right: 0;
  width: clamp(65px, 7.5vw, 105px);
  z-index: 6;
  pointer-events: none;
  transform: rotate(12deg);
}

/* Form Card Container */
.ods-form-card {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 40px;
  box-shadow:
    0 20px 50px rgba(0, 97, 237, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.05);
  border: 3px solid var(--ods-blue);
  padding: 16px 14px 12px;
  overflow: hidden;
  max-width: 485px;
  width: 100%;
  margin-left: auto;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ods-form-card:hover {
  box-shadow: 0 28px 65px -8px rgba(0, 97, 237, 0.25);
}

.ods-form-card iframe.formCRM {
  width: 100%;
  min-height: 520px;
  height: 100%;
  border: none;
  border-radius: 28px;
  display: block;
}

/* Bottom CTA Area */
.ods-agenda-cta-wrap {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 15;
}

.ods-btn-experience {
  background: var(--ods-btn-exp);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  padding: 16px 52px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(49, 159, 223, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ods-btn-experience:hover {
  background: #2389c4;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(49, 159, 223, 0.55);
}

.ods-btn-experience:active {
  transform: translateY(0) scale(0.98);
}

/* ============================================================
   LOGROS SECTION (MODO AZUL / GLASSMORPHISM)
   ============================================================ */
.logros-section--blue {
  background-color: #0061ed !important;
  margin-top: 0 !important;
  padding: 90px 4% 140px !important;
  position: relative;
  overflow: hidden;
}

.logros-section--blue .benefits-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 0 !important;
}

.logros-section--blue .logros-heading-text {
  font-family: var(--font-title) !important;
  font-weight: 900 !important;
  font-size: clamp(34px, 5.5vw, 68px) !important;
  letter-spacing: -0.5px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  text-align: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-bottom: 40px !important;
}

.logros-section--blue #logros-intro {
  display: none !important;
}

/* Tarjetas: glassmorphism modo azul */
.logros-section--blue .achievement-card {
  border-radius: 48px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px rgba(255, 255, 255, 1),
    inset 0px -82px 68px -64px rgba(0, 15, 70, 0.3),
    inset 0px 98px 100px -48px rgba(0, 149, 218, 0.3),
    inset 0px 4px 18px 0px rgba(0, 20, 85, 0.3),
    inset 0px 1px 40px 0px rgba(0, 149, 218, 0.2) !important;
  padding: 36px 28px 30px !important;
  min-height: 380px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.logros-section--blue .achievement-card:hover {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .logros-section--blue .achievement-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-8px) !important;
  }
}

.logros-section--blue .achievement-category {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.logros-section--blue .achievement-title {
  display: none !important;
}

.logros-section--blue .achievement-desc {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.logros-section--blue .achievement-desc strong,
.logros-section--blue .achievement-desc em {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.logros-section--blue .achievement-logo {
  filter: none !important;
}

/* Controles: flechas y paginación en blanco */
.logros-section--blue .achievements-prev,
.logros-section--blue .achievements-next {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  background: transparent !important;
}

.logros-section--blue .achievements-prev:hover,
.logros-section--blue .achievements-next:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #0061ed !important;
}

.logros-section--blue .achievements-pagination .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.45 !important;
}

.logros-section--blue
  .achievements-pagination
  .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
}

/* ============================================================
   EDITORIAL FOOTER — VERTICAL CENTERING & TOP ROUNDED CORNERS
   ============================================================ */
body > .editorial-footer,
.editorial-footer {
  position: relative !important;
  z-index: 20 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 180px !important;
  margin-top: -60px !important;
  padding: 44px 4% 38px !important;
  border-radius: 60px 60px 0 0 !important;
  box-sizing: border-box !important;
  color: #002846 !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 -15px 40px rgba(0, 34, 110, 0.08) !important;
}

.editorial-footer .footer-bottom-grid {
  position: relative !important;
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(20px, 3vw, 50px) !important;
  padding: 0 !important;
}

.editorial-footer .footer-bottom-copyright {
  grid-column: 1 !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.editorial-footer .footer-copyright-text {
  margin: 0 !important;
  color: #002846 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(14px, 1.2vw, 17px) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: -0.01em !important;
  text-align: left !important;
}

.editorial-footer .footer-copyright-text a {
  color: #0061ed !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
  display: inline-block !important;
}

.editorial-footer .footer-bottom-times {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.editorial-footer .time-label {
  margin: 0 0 6px !important;
  color: #64748b !important;
  font-family: var(--font-title) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  text-align: center !important;
}

.editorial-footer .time-value {
  margin: 0 0 3px !important;
  color: #002846 !important;
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  transition: color 0.2s ease !important;
}

.editorial-footer .time-value:hover {
  color: #0061ed !important;
}

.editorial-footer .footer-bottom-scroll {
  grid-column: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.editorial-footer .scroll-top-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #0061ed !important;
  background: #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.25s ease !important;
}

.editorial-footer .scroll-top-btn:hover {
  background: #0061ed !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 97, 237, 0.25) !important;
}

.editorial-footer .scroll-top-btn svg {
  width: 24px !important;
  height: 24px !important;
}

/* ============================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ============================================================ */
@media (max-width: 1024px) {
  .ods-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .ods-hero-left {
    align-items: center;
  }

  .ods-hero-desc {
    max-width: 540px;
    margin: 0 auto;
  }

  .ods-hero-right {
    margin-top: 10px;
  }

  .ods-agenda-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ods-form-card {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }

  .ods-header {
    justify-content: center;
    padding: 28px 20px 0;
  }

  .ods-logo-ucv {
    height: 48px;
    width: auto;
  }

  .ods-header-cta {
    display: none;
  }

  .ods-floating-cta {
    display: flex !important;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    background: var(--ods-btn-cta);
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 18px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 18px 0 0 18px;
    box-shadow: -3px 5px 20px rgba(221, 47, 112, 0.4);
    transition: all 0.25s ease;
  }

  .ods-hero {
    padding: 85px 5% 0;
    min-height: auto;
  }

  .ods-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    width: 100%;
  }

  .ods-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .ods-hero-pretitle {
    font-size: clamp(22px, 6.5vw, 28px);
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
    transform: translateY(-10px);
  }

  .ods-openday-logo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 290px;
    width: 100%;
    margin: 8px auto 16px;
  }

  .ods-logo-letters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .ods-word-open {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    gap: 2px;
  }

  .ods-word-day {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    gap: 4px;
    margin-left: 24px;
    margin-top: -12px;
  }

  .ods-year-badge {
    top: -12px;
    left: 44%;
    width: 66px;
  }

  .ods-doodle--curly-left {
    top: 15%;
    left: -8px;
    width: 32px;
  }

  .ods-doodle--crown-right {
    top: -12px;
    right: -4px;
    width: 42px;
  }

  .ods-doodle--star-right {
    bottom: -5px;
    right: -8px;
    width: 48px;
  }

  .ods-doodle--scribble-bottom {
    bottom: -20px;
    left: -8px;
    width: 32px;
  }

  .ods-hero-subtitle {
    font-size: 15px;
    font-weight: 800;
    color: var(--ods-blue);
    margin: 0 0 6px;
    text-align: center;
    width: 100%;
  }

  .ods-hero-desc {
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--ods-blue);
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .ods-hero-right {
    margin-top: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .ods-people-img {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 54, 138, 0.14));
  }

  .ods-ribbon-bg {
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
  }

  .ods-corner-scribble {
    display: none;
  }

  .ods-agenda {
    padding: 45px 5% 65px;
    background-image:
      url("../img/section2-bg.webp"), url("../img/bg-landing.webp");
    background-repeat: no-repeat, repeat;
    background-position:
      center bottom,
      center top;
    background-size: cover, auto;
    position: relative;
    overflow: hidden;
  }

  .ods-agenda-headings {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
  }

  .ods-agenda-pretext {
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
    color: var(--ods-blue);
  }

  .ods-agenda-title-blue {
    font-size: clamp(23px, 6.8vw, 30px);
    margin-bottom: 2px;
    text-align: center;
    width: 100%;
    color: var(--ods-blue);
  }

  .ods-agenda-title-pink {
    font-size: clamp(25px, 7.5vw, 34px);
    text-align: center;
    width: 100%;
    color: var(--ods-pink);
  }

  .ods-doodle-star-agenda {
    position: absolute;
    top: 15px;
    right: 4%;
    width: 44px;
    display: block !important;
    pointer-events: none;
    z-index: 5;
  }

  .ods-doodle-scribble-agenda {
    position: absolute;
    top: 180px;
    left: -10px;
    width: 42px;
    display: block !important;
    pointer-events: none;
    z-index: 5;
  }

  .ods-doodle-wave-agenda {
    position: absolute;
    top: 490px;
    right: -8px;
    width: 48px;
    display: block !important;
    pointer-events: none;
    z-index: 12;
    transform: rotate(15deg);
  }

  .ods-agenda-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    position: relative;
  }

  .ods-form-card {
    order: 1;
    border-radius: 32px;
    padding: 14px 12px 10px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    border: 3px solid var(--ods-blue);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 97, 237, 0.15);
    position: relative;
    z-index: 10;
  }

  .ods-form-card iframe.formCRM {
    min-height: 520px;
    border-radius: 22px;
  }

  .ods-agenda-visual {
    order: 2;
    margin: 0 -6% 0;
    width: 112%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 8;
  }

  .ods-students-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 34, 110, 0.15));
  }

  .ods-agenda-cta-wrap {
    margin-top: -25px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 15;
    width: 100%;
  }

  .ods-btn-experience {
    font-size: 17px;
    font-weight: 800;
    padding: 15px 36px;
    width: 85%;
    max-width: 320px;
    border-radius: 999px;
    background: var(--ods-btn-exp);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(49, 159, 223, 0.45);
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .logros-section--blue {
    padding: 65px 5% 100px !important;
    background-color: #0061ed !important;
    border-radius: 40px 40px 0 0 !important;
    margin-top: -20px !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .logros-section--blue .logros-heading-text {
    font-size: clamp(30px, 8.5vw, 42px) !important;
    margin-bottom: 28px !important;
  }

  .logros-section--blue .achievement-card {
    min-height: 330px !important;
    padding: 26px 20px 22px !important;
    border-radius: 34px !important;
  }

  body > .editorial-footer,
  .editorial-footer {
    min-height: auto !important;
    margin-top: -35px !important;
    padding: 38px 6% 32px !important;
    border-radius: 36px 36px 0 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .editorial-footer .footer-bottom-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 22px !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  .editorial-footer .footer-bottom-times {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .editorial-footer .time-label {
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 8px !important;
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
  }

  .editorial-footer .time-value {
    text-align: center !important;
    width: 100% !important;
    margin: 0 0 4px !important;
    display: block !important;
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  .editorial-footer .footer-bottom-copyright {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .editorial-footer .footer-copyright-text {
    font-size: 14px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .editorial-footer .footer-copyright-text a {
    text-align: center !important;
    display: inline-block !important;
    margin-top: 4px !important;
    color: #0061ed !important;
    text-decoration: underline !important;
  }

  .editorial-footer .footer-bottom-scroll {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 6px !important;
  }

  .editorial-footer .scroll-top-btn {
    width: 52px !important;
    height: 52px !important;
    margin: 0 auto !important;
  }
}

/* ============================================================
   HERO ART DIRECTION
   Ajustes finales basados en las composiciones aprobadas para
   escritorio (988 x 690) y mobile (326 x 596).
   ============================================================ */
html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.ods-ribbon-picture {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

@media (min-width: 769px) {
  .ods-header {
    top: 0;
    padding: clamp(32px, 3.8vw, 44px) clamp(48px, 6.55vw, 88px) 0;
    max-width: 1440px;
  }

  .ods-logo-ucv {
    width: clamp(160px, 17.8vw, 214px);
    height: auto;
  }

  .ods-header-cta {
    width: 184px;
    min-width: 0;
    min-height: 30px;
    padding: 7px 10px 6px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow: none;
  }

  .ods-hero {
    display: flex;
    align-items: center;
    height: auto;
    min-height: clamp(520px, 45vw, 680px);
    max-height: none;
    padding: 112px 4% 60px;
    position: relative;
    overflow: hidden;
  }

  .ods-hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1440px;
    min-height: clamp(480px, 40vw, 620px);
    margin: 0 auto;
    position: relative;
  }

  .ods-hero-left {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: clamp(10px, 3vw, 40px);
    margin-top: -90px;
  }

  .ods-hero-pretitle {
    width: 100%;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(34px, 3.7vw, 45px);
    line-height: 1;
    letter-spacing: -0.7px;
    text-align: center;
    -webkit-text-stroke: 2.2px var(--ods-blue);
    paint-order: stroke fill;
    text-shadow: 0 2px 0 #0356c8;
  }

  .ods-openday-logo-wrap {
    width: min(100%, 492px);
    max-width: none;
    margin: 8px auto 24px;
  }

  .ods-logo-letters {
    width: 398px;
    margin-left: 59px;
    padding-top: 19px;
    gap: 2px;
  }

  .ods-word-open {
    gap: 2px;
  }

  .ods-word-day {
    gap: 2px;
    margin-top: 3px;
    margin-left: 55px;
  }

  .ods-letter--O {
    width: 134px;
    margin-bottom: -9px;
  }
  .ods-letter--p {
    width: 98px;
    margin-left: -15px;
  }
  .ods-letter--e {
    width: 96px;
    margin-left: -6px;
  }
  .ods-letter--n {
    width: 91px;
    margin-left: -4px;
  }
  .ods-letter--D {
    width: 113px;
  }
  .ods-letter--a {
    width: 82px;
    margin-left: -11px;
  }
  .ods-letter--y {
    width: 84px;
    margin-left: -7px;
  }

  .ods-year-badge {
    top: -30px;
    left: 44%;
    width: 106px;
  }

  .ods-doodle--curly-left {
    top: 12px;
    left: 26px;
    width: 65px;
  }

  .ods-doodle--crown-right {
    top: -1px;
    right: -8px;
    width: 80px;
  }

  .ods-doodle--asterisk-right {
    top: 94px;
    right: -13px;
    width: 30px;
    z-index: 8;
  }

  .ods-doodle--star-right {
    right: 25px;
    bottom: 0;
    width: 95px;
    transform: none !important;
    z-index: 7;
  }

  .ods-doodle--scribble-bottom {
    left: -13px;
    bottom: -10px;
    width: 59px;
  }

  .ods-hero-subtitle {
    width: 100%;
    margin: 10px 0 10px;
    font-size: 17px;
    line-height: 1.15;
    text-align: center;
    transform: translateX(18px);
  }

  .ods-hero-desc {
    max-width: 420px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.22;
    text-align: center;
    transform: translateX(18px);
  }

  .ods-hero-pretitle {
    font-size: clamp(34px, 3.7vw, 45px);
    transform: translate(18px, -15px);
  }

  .ods-hero-right {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 125%;
    max-width: 1750px;
    height: 132%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: 2;
  }

  .ods-people-picture {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
  }

  .ods-people-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: none;
    display: block;
    transform: scale(1.50);
    transform-origin: center bottom;
  }

  .ods-corner-scribble {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 48px;
    opacity: 0.85;
    z-index: 10;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ods-hero-left {
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  .ods-header {
    top: 12vw;
    padding: 0;
  }

  .ods-logo-ucv {
    width: 30vw;
    max-width: 118px;
    height: auto;
  }

  .ods-floating-cta {
    top: 69vw;
    right: 0;
    width: 36px;
    height: 100px;
    padding: 0;
    transform: none;
    border-radius: 17px 0 0 17px;
    box-shadow: none;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    align-items: center;
    justify-content: center;
  }

  .ods-floating-cta:active {
    transform: scale(0.97);
  }

  .ods-hero {
    display: block;
    width: 100%;
    height: clamp(568px, 182.8vw, 800px);
    min-height: 0;
    padding: 0;
  }

  .ods-hero-container {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .ods-hero-left {
    position: absolute;
    top: 26.1vw;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
  }

  .ods-hero-pretitle {
    width: 100%;
    margin: 0;
    color: #ffffff;
    font-size: clamp(15px, 4.9vw, 21px);
    line-height: 1;
    letter-spacing: -0.3px;
    text-align: center;
    -webkit-text-stroke: 1.8px var(--ods-blue);
    paint-order: stroke fill;
    text-shadow: 0 1px 0 #0356c8;
    transform: translateY(-8px);
  }

  .ods-openday-logo-wrap {
    position: relative;
    display: block;
    width: 77.3vw;
    max-width: 310px;
    margin: 7px auto 7px;
  }

  .ods-logo-letters {
    display: flex;
    width: 64.5vw;
    margin-left: 9.5vw;
    padding-top: 3.5vw;
    gap: 0;
  }

  .ods-word-open {
    gap: 1px;
  }

  .ods-word-day {
    gap: 1px;
    margin-top: -5.5vw;
    margin-left: 8vw;
  }

  .ods-letter--O {
    width: 21.8vw;
    margin-bottom: -1.8vw;
  }
  .ods-letter--p {
    width: 15.6vw;
    margin-left: -2.8vw;
  }
  .ods-letter--e {
    width: 15.1vw;
    margin-left: -1vw;
  }
  .ods-letter--n {
    width: 14.4vw;
    margin-left: -0.5vw;
  }
  .ods-letter--D {
    width: 22vw;
  }
  .ods-letter--a {
    width: 15.8vw;
    margin-left: -2vw;
  }
  .ods-letter--y {
    width: 16.4vw;
    margin-left: -1.5vw;
  }

  .ods-year-badge {
    top: -4.5vw;
    left: 42.5%;
    width: 16.5vw;
    max-width: 66px;
  }

  .ods-doodle--curly-left {
    top: 2vw;
    left: 5vw;
    width: 10.8vw;
  }

  .ods-doodle--crown-right {
    top: -2.2vw;
    right: -0.5vw;
    width: 13.3vw;
  }

  .ods-doodle--asterisk-right {
    top: 17vw;
    right: 0.8vw;
    width: 4.8vw;
    z-index: 8;
  }

  .ods-doodle--star-right {
    right: 2.8vw;
    bottom: 2vw;
    width: 16vw;
    transform: none !important;
    z-index: 7;
  }

  .ods-doodle--scribble-bottom {
    left: 1.5vw;
    bottom: 0;
    width: 11vw;
  }

  .ods-hero-subtitle {
    width: 100%;
    margin: 4px 0 5px;
    font-size: clamp(7px, 2.35vw, 10px);
    line-height: 1.1;
    text-align: center;
  }

  .ods-hero-desc {
    width: 67vw;
    max-width: 270px;
    margin: 0 auto;
    font-size: clamp(7px, 2.35vw, 10px);
    line-height: 1.2;
    text-align: center;
  }

  .ods-hero-right {
    position: absolute;
    top: 85vw;
    left: 50%;
    width: 78vw;
    margin: 0;
    transform: translateX(-50%);
    display: block;
  }

  .ods-people-picture,
  .ods-people-img {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .ods-people-img {
    filter: none;
  }

  .ods-ribbon-picture {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 27.6vw;
    max-height: 108px;
    overflow: hidden;
  }

  .ods-ribbon-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
  }

  .ods-corner-scribble {
    display: none;
  }
}

/* Pantallas de escritorio amplias y ultrawide */
@media (min-width: 1400px) {
  .ods-hero {
    height: auto;
    max-height: none;
  }

  .ods-hero-container,
  .ods-agenda-container {
    width: 100%;
    max-width: 1440px;
    height: auto;
  }

  .ods-hero-left {
    transform: scale(1.08);
    transform-origin: center top;
  }
}

@media (min-width: 1700px) {
  .ods-hero-left {
    transform: scale(1.15);
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.ods-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.ods-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ods-reveal-delay-1 {
  transition-delay: 0.12s;
}

.ods-reveal-delay-2 {
  transition-delay: 0.22s;
}

.ods-reveal-delay-3 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .ods-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
