/* =========================================================
   HOME - COLEGIO HENRI FAYOL
========================================================= */


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

.home-hero {
  position: relative;

  min-height: 820px;

  display: flex;

  align-items: center;

  padding:
    150px 0
    90px;

  overflow: hidden;

  background-color:
    var(--primary-dark);

  background-position:
    center;

  background-size:
    cover;

  color: white;
}


.home-hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  top: -300px;
  right: -180px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,0.11);

  z-index: 1;
}


.home-hero::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  right: 140px;
  bottom: -260px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.035);

  z-index: 1;
}


.home-hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4,20,36,0.96) 0%,
      rgba(7,32,55,0.91) 42%,
      rgba(16,60,104,0.70) 100%
    );

  z-index: 0;
}


.home-hero-container {
  position: relative;

  z-index: 2;

  width: 100%;
}


.home-hero-content {
  max-width: 900px;
}


.home-hero-label {
  display: block;

  margin-bottom: 18px;

  color:
    rgba(255,255,255,0.64);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.home-hero h1 {
  max-width: 980px;

  margin-bottom: 27px;

  color: white;

  font-size:
    clamp(
      3.7rem,
      7.5vw,
      7rem
    );

  line-height: 0.96;

  letter-spacing: -0.035em;
}


.home-hero p {
  max-width: 680px;

  margin:
    0 0
    35px;

  color:
    rgba(255,255,255,0.72);

  font-size: 1.07rem;

  line-height: 1.85;
}


/* BOTONES HERO */

.home-hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 11px;
}


.home-hero-primary,
.home-hero-secondary {
  min-height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0 23px;

  border-radius: 100px;

  font-size: 0.86rem;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}


.home-hero-primary:hover,
.home-hero-secondary:hover {
  transform:
    translateY(-3px);
}


.home-hero-primary {
  background: white;

  color:
    var(--primary-dark);
}


.home-hero-secondary {
  border:
    1px solid
    rgba(255,255,255,0.35);

  color: white;

  background:
    rgba(255,255,255,0.03);
}


.home-hero-secondary:hover {
  border-color:
    rgba(255,255,255,0.7);

  background:
    rgba(255,255,255,0.08);
}


/* CONTROLES HERO */

.home-hero-controls {
  position: absolute;

  right: 0;
  bottom: -10px;

  display: flex;

  align-items: center;

  gap: 12px;
}


.home-hero-controls button {
  width: 47px;
  height: 47px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.18);

  border-radius: 50%;

  background:
    rgba(255,255,255,0.07);

  color: white;

  font-size: 1rem;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.home-hero-controls button:hover {
  background:
    rgba(255,255,255,0.15);

  transform:
    translateY(-2px);
}


.home-hero-controls span {
  min-width: 65px;

  text-align: center;

  color:
    rgba(255,255,255,0.55);

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}



/* =========================================================
   ELEMENTOS GENERALES HOME
========================================================= */

.home-eyebrow {
  display: block;

  margin-bottom: 10px;

  color:
    var(--primary);

  font-size: 0.76rem;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.home-section-header {
  max-width: 740px;
}


.home-section-header h2 {
  margin-bottom: 15px;

  color:
    var(--primary-dark);

  font-size:
    clamp(
      2.6rem,
      5vw,
      4.2rem
    );

  line-height: 1.08;
}


.home-section-header p {
  max-width: 650px;

  margin: 0;

  color:
    var(--text-light);

  line-height: 1.75;
}


.home-heading-row {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 50px;
}


.home-view-all,
.home-text-link {
  color:
    var(--primary);

  font-size: 0.84rem;

  font-weight: 800;

  white-space: nowrap;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}


.home-view-all:hover,
.home-text-link:hover {
  opacity: 0.75;
}


/* VACÍOS */

.home-empty {
  grid-column:
    1 / -1;

  padding:
    65px 30px;

  border:
    1px dashed
    var(--border);

  border-radius: 24px;

  background:
    var(--background);

  color:
    var(--text-light);

  text-align: center;
}



/* =========================================================
   PRESENTACIÓN
========================================================= */

.home-about {
  padding:
    125px 0;
}


.home-about-grid {
  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  gap: 90px;

  align-items: center;
}


.home-about-copy h2 {
  max-width: 750px;

  margin-bottom: 24px;

  color:
    var(--primary-dark);

  font-size:
    clamp(
      2.8rem,
      5vw,
      4.6rem
    );

  line-height: 1.05;
}


.home-about-copy p {
  max-width: 720px;

  margin:
    0 0
    25px;

  color:
    var(--text-light);

  font-size: 1.03rem;

  line-height: 1.9;
}


/* TARJETA VISUAL */

.home-about-visual {
  position: relative;

  min-height: 420px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 43px;

  overflow: hidden;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      var(--primary),
      var(--primary-dark)
    );

  color: white;

  box-shadow:
    0 25px 70px
    rgba(9,35,59,0.14);
}


.home-about-visual::before {
  content: "HF";

  position: absolute;

  top: -40px;
  right: -10px;

  color:
    rgba(255,255,255,0.055);

  font-size: 14rem;

  font-weight: 900;

  line-height: 1;
}


.home-about-visual::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -110px;
  left: -100px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,0.13);
}


.home-about-visual > * {
  position: relative;

  z-index: 2;
}


.home-about-visual > span {
  margin-bottom: 10px;

  color:
    rgba(255,255,255,0.59);

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.home-about-visual strong {
  max-width: 460px;

  color: white;

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(
      2rem,
      4vw,
      3rem
    );

  line-height: 1.12;
}


.home-about-visual p {
  margin:
    17px 0
    0;

  color:
    rgba(255,255,255,0.62);
}



/* =========================================================
   ESTADÍSTICAS
========================================================= */

.home-stats {
  padding:
    85px 0;

  background:
    var(--primary-dark);

  color: white;
}


.home-stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);
}


.home-stat {
  min-height: 190px;

  padding:
    25px 35px;

  border-right:
    1px solid
    rgba(255,255,255,0.12);
}


.home-stat:last-child {
  border-right: none;
}


.home-stat > strong {
  display: block;

  margin-bottom: 15px;

  color: white;

  font-size:
    clamp(
      2.8rem,
      5vw,
      4.4rem
    );

  font-weight: 800;

  line-height: 1;
}


.home-stat h3 {
  margin-bottom: 7px;

  color: white;

  font-size: 1rem;
}


.home-stat p {
  max-width: 220px;

  margin: 0;

  color:
    rgba(255,255,255,0.55);

  font-size: 0.79rem;

  line-height: 1.6;
}



/* =========================================================
   NIVELES
========================================================= */

.home-levels {
  padding:
    125px 0;

  background:
    var(--background);
}


.home-levels .home-section-header {
  margin-bottom: 50px;
}


.home-levels-grid {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 24px;
}


.home-level-card {
  position: relative;

  min-height: 360px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 42px;

  overflow: hidden;

  border:
    1px solid
    var(--border);

  border-radius: 29px;

  background: white;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.home-level-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    var(--shadow);
}


.home-level-index {
  position: absolute;

  top: 20px;
  right: 27px;

  color:
    rgba(16,60,104,0.055);

  font-size: 7rem;

  line-height: 1;

  font-weight: 900;
}


.home-level-range {
  display: block;

  margin-bottom: 10px;

  color:
    var(--primary);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.home-level-card h3 {
  margin-bottom: 12px;

  color:
    var(--primary-dark);

  font-size: 1.75rem;
}


.home-level-card p {
  max-width: 520px;

  margin: 0;

  color:
    var(--text-light);

  line-height: 1.75;
}



/* =========================================================
   ADMISIÓN
========================================================= */

.home-admission {
  padding:
    125px 0;

  background: white;
}


.home-admission-card {
  position: relative;

  min-height: 520px;

  display: grid;

  grid-template-columns:
    1.25fr 0.75fr;

  gap: 60px;

  align-items: center;

  padding:
    65px 70px;

  overflow: hidden;

  border-radius: 34px;

  background:
    linear-gradient(
      125deg,
      #061d33 0%,
      var(--primary-dark) 48%,
      var(--primary) 100%
    );

  color: white;

  box-shadow:
    0 30px 90px
    rgba(8,41,69,0.15);
}


.home-admission-card::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -230px;
  top: -220px;

  border:
    1px solid
    rgba(255,255,255,0.12);

  border-radius: 50%;
}


.home-admission-card::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: 220px;
  bottom: -180px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.04);
}


.home-admission-content {
  position: relative;

  z-index: 2;

  max-width: 720px;
}


.home-admission-content > span {
  display: block;

  margin-bottom: 13px;

  color:
    rgba(255,255,255,0.62);

  font-size: 0.76rem;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.home-admission h2 {
  margin-bottom: 22px;

  color: white;

  font-size:
    clamp(
      2.8rem,
      5vw,
      4.7rem
    );

  line-height: 1.03;
}


.home-admission p {
  max-width: 620px;

  margin:
    0 0
    30px;

  color:
    rgba(255,255,255,0.68);

  line-height: 1.8;
}


/* BOTONES ADMISION */

.home-admission-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


.home-admission-primary,
.home-admission-secondary {
  min-height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0 21px;

  border-radius: 100px;

  font-size: 0.82rem;

  font-weight: 800;

  transition:
    transform 0.2s ease;
}


.home-admission-primary:hover,
.home-admission-secondary:hover {
  transform:
    translateY(-3px);
}


.home-admission-primary {
  background: white;

  color:
    var(--primary-dark);
}


.home-admission-secondary {
  border:
    1px solid
    rgba(255,255,255,0.3);

  color: white;
}


/* AÑO */

.home-admission-year {
  position: relative;

  z-index: 2;

  min-height: 300px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.13);

  border-radius: 29px;

  background:
    rgba(255,255,255,0.055);

  backdrop-filter:
    blur(8px);
}


.home-admission-year small {
  margin-bottom: 6px;

  color:
    rgba(255,255,255,0.55);

  font-size: 0.74rem;

  font-weight: 800;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}


.home-admission-year strong {
  color: white;

  font-size:
    clamp(
      4.5rem,
      9vw,
      7rem
    );

  line-height: 1;

  font-weight: 900;
}



/* =========================================================
   NOTICIAS
========================================================= */

.home-news {
  padding:
    125px 0;

  background:
    var(--background);
}


.home-news-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 22px;
}


.home-news-card {
  display: flex;

  flex-direction: column;

  min-height: 390px;

  overflow: hidden;

  border:
    1px solid
    var(--border);

  border-radius: 25px;

  background: white;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.home-news-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    var(--shadow);
}


.home-news-image {
  aspect-ratio:
    16 / 9;

  overflow: hidden;

  background:
    #e9edf1;
}


.home-news-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}


.home-news-card:hover
.home-news-image img {
  transform:
    scale(1.035);
}


.home-news-content {
  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 27px;
}


.home-news-category {
  display: inline-flex;

  align-self: flex-start;

  margin-bottom: 9px;

  padding:
    6px 10px;

  border-radius: 100px;

  background:
    var(--background);

  color:
    var(--primary);

  font-size: 0.67rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.06em;
}


.home-news-date {
  display: block;

  margin-bottom: 12px;

  color:
    var(--text-light);

  font-size: 0.72rem;
}


.home-news-content h3 {
  margin-bottom: 11px;

  color:
    var(--primary-dark);

  font-size: 1.22rem;

  line-height: 1.35;
}


.home-news-content p {
  margin:
    0 0
    24px;

  color:
    var(--text-light);

  font-size: 0.86rem;

  line-height: 1.7;
}


.home-news-content a {
  margin-top: auto;

  color:
    var(--primary);

  font-size: 0.81rem;

  font-weight: 800;
}



/* =========================================================
   GALERÍA HOME
========================================================= */

.home-gallery {
  padding:
    125px 0;

  background: white;
}


.home-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  grid-template-rows:
    260px 260px;

  gap: 14px;
}


.home-gallery-item {
  position: relative;

  display: block;

  overflow: hidden;

  border-radius: 22px;

  background:
    var(--background);
}


.home-gallery-item-1 {
  grid-column:
    span 2;

  grid-row:
    span 2;
}


.home-gallery-item-2 {
  grid-column:
    span 1;

  grid-row:
    span 1;
}


.home-gallery-item-3 {
  grid-column:
    span 1;

  grid-row:
    span 1;
}


.home-gallery-item-4 {
  grid-column:
    span 1;

  grid-row:
    span 1;
}


.home-gallery-item-5 {
  grid-column:
    span 1;

  grid-row:
    span 1;
}


.home-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.home-gallery-item:hover img {
  transform:
    scale(1.04);
}


.home-gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 24px;

  opacity: 0;

  background:
    linear-gradient(
      to top,
      rgba(3,18,31,0.82),
      transparent 70%
    );

  transition:
    opacity 0.3s ease;
}


.home-gallery-item:hover
.home-gallery-overlay {
  opacity: 1;
}


.home-gallery-overlay span {
  margin-bottom: 5px;

  color:
    rgba(255,255,255,0.62);

  font-size: 0.69rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.home-gallery-overlay strong {
  color: white;

  font-size: 1rem;

  line-height: 1.4;
}



/* =========================================================
   FECHAS
========================================================= */

.home-dates {
  padding:
    125px 0;

  background:
    var(--background);
}


.home-dates-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 18px;
}


.home-date-card {
  display: grid;

  grid-template-columns:
    90px 1fr;

  gap: 22px;

  align-items: center;

  min-height: 190px;

  padding: 25px;

  border:
    1px solid
    var(--border);

  border-radius: 24px;

  background: white;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.home-date-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    var(--shadow);
}


.home-date-number {
  min-height: 100px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding-right: 20px;

  border-right:
    1px solid
    var(--border);
}


.home-date-number strong {
  color:
    var(--primary);

  font-size: 2.7rem;

  line-height: 1;
}


.home-date-number span {
  margin-top: 6px;

  color:
    var(--text-light);

  font-size: 0.71rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}


.home-date-category {
  display: block;

  margin-bottom: 7px;

  color:
    var(--primary);

  font-size: 0.67rem;

  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}


.home-date-card h3 {
  margin-bottom: 7px;

  color:
    var(--primary-dark);

  font-size: 1rem;

  line-height: 1.35;
}


.home-date-card p {
  margin: 0;

  color:
    var(--text-light);

  font-size: 0.79rem;

  line-height: 1.6;
}



/* =========================================================
   INFORMACIÓN FINAL
========================================================= */

.home-information {
  padding:
    95px 0;

  background:
    var(--primary);
}


.home-information-grid {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 60px;

  align-items: center;
}


.home-information-grid > div > span {
  display: block;

  margin-bottom: 9px;

  color:
    rgba(255,255,255,0.6);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.home-information h2 {
  margin-bottom: 12px;

  color: white;

  font-size:
    clamp(
      2.3rem,
      5vw,
      3.8rem
    );

  line-height: 1.08;
}


.home-information p {
  max-width: 650px;

  margin: 0;

  color:
    rgba(255,255,255,0.68);

  line-height: 1.7;
}


.home-information-button {
  min-height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0 22px;

  border-radius: 100px;

  background: white;

  color:
    var(--primary-dark);

  font-size: 0.82rem;

  font-weight: 800;

  white-space: nowrap;

  transition:
    transform 0.25s ease;
}


.home-information-button:hover {
  transform:
    translateY(-3px);
}



/* =========================================================
   ANIMACIONES REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(26px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}



/* =========================================================
   TABLET GRANDE
========================================================= */

@media (max-width: 1100px) {

  .home-about-grid {
    gap: 55px;
  }


  .home-admission-card {
    padding:
      55px;
  }


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


  .home-news-card:last-child {
    grid-column:
      1 / -1;
  }


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


  .home-date-card:last-child {
    grid-column:
      1 / -1;
  }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .home-hero {
    min-height: 760px;
  }


  .home-hero-content {
    max-width: 760px;
  }


  .home-hero-controls {
    position: static;

    margin-top: 55px;
  }


  .home-about-grid {
    grid-template-columns:
      1fr;

    gap: 50px;
  }


  .home-about-visual {
    max-width: 650px;
  }


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


  .home-stat {
    border-bottom:
      1px solid
      rgba(255,255,255,0.12);
  }


  .home-stat:nth-child(2) {
    border-right: none;
  }


  .home-levels-grid {
    grid-template-columns:
      1fr;
  }


  .home-admission-card {
    grid-template-columns:
      1fr;
  }


  .home-admission-year {
    min-height: 200px;
  }


  .home-gallery-grid {
    grid-template-columns:
      repeat(2,1fr);

    grid-template-rows:
      330px
      220px
      220px;
  }


  .home-gallery-item-1 {
    grid-column:
      span 2;

    grid-row:
      span 1;
  }


  .home-gallery-item-2,
  .home-gallery-item-3,
  .home-gallery-item-4,
  .home-gallery-item-5 {
    grid-column:
      span 1;

    grid-row:
      span 1;
  }

}



/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 650px) {

  .home-hero {
    min-height: 700px;

    padding:
      145px 0
      70px;
  }


  .home-hero h1 {
    font-size:
      clamp(
        3rem,
        15vw,
        4.4rem
      );
  }


  .home-hero p {
    font-size: 0.96rem;
  }


  .home-about,
  .home-levels,
  .home-admission,
  .home-news,
  .home-gallery,
  .home-dates {
    padding:
      80px 0;
  }


  .home-heading-row {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap: 20px;

    margin-bottom: 35px;
  }


  .home-stats {
    padding:
      55px 0;
  }


  .home-stats-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .home-stat {
    min-height: 170px;

    padding:
      22px 18px;
  }


  .home-stat:nth-child(odd) {
    border-right:
      1px solid
      rgba(255,255,255,0.12);
  }


  .home-stat:nth-child(even) {
    border-right: none;
  }


  .home-stat > strong {
    font-size: 2.5rem;
  }


  .home-level-card {
    min-height: 300px;

    padding: 30px;
  }


  .home-level-index {
    font-size: 5.5rem;
  }


  .home-admission-card {
    min-height: 0;

    padding:
      40px 28px;

    border-radius: 27px;
  }


  .home-admission-year {
    min-height: 155px;
  }


  .home-news-grid {
    grid-template-columns:
      1fr;
  }


  .home-news-card:last-child {
    grid-column:
      auto;
  }


  .home-gallery-grid {
    grid-template-columns:
      1fr 1fr;

    grid-template-rows:
      260px
      170px
      170px;

    gap: 10px;
  }


  .home-gallery-item {
    border-radius: 15px;
  }


  .home-gallery-overlay {
    opacity: 1;

    padding: 15px;

    background:
      linear-gradient(
        to top,
        rgba(3,18,31,0.72),
        transparent 65%
      );
  }


  .home-gallery-overlay strong {
    font-size: 0.82rem;
  }


  .home-dates-grid {
    grid-template-columns:
      1fr;
  }


  .home-date-card:last-child {
    grid-column:
      auto;
  }


  .home-date-card {
    min-height: 160px;

    grid-template-columns:
      75px 1fr;

    padding:
      20px;

    gap: 17px;
  }


  .home-date-number {
    padding-right: 15px;
  }


  .home-date-number strong {
    font-size: 2.2rem;
  }


  .home-information {
    padding:
      75px 0;
  }


  .home-information-grid {
    grid-template-columns:
      1fr;

    gap: 30px;
  }

}



/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media (max-width: 450px) {

  .home-hero-actions {
    flex-direction:
      column;

    align-items:
      stretch;
  }


  .home-hero-primary,
  .home-hero-secondary {
    width: 100%;
  }


  .home-about-visual {
    min-height: 350px;

    padding: 30px;
  }


  .home-stats-grid {
    grid-template-columns:
      1fr;
  }


  .home-stat {
    border-right: none !important;

    border-bottom:
      1px solid
      rgba(255,255,255,0.12);
  }


  .home-stat:last-child {
    border-bottom: none;
  }


  .home-admission-actions {
    flex-direction:
      column;
  }


  .home-admission-primary,
  .home-admission-secondary {
    width: 100%;
  }


  .home-gallery-grid {
    display: grid;

    grid-template-columns:
      1fr;

    grid-template-rows:
      none;
  }


  .home-gallery-item,
  .home-gallery-item-1,
  .home-gallery-item-2,
  .home-gallery-item-3,
  .home-gallery-item-4,
  .home-gallery-item-5 {
    grid-column:
      auto;

    grid-row:
      auto;

    aspect-ratio:
      4 / 3;
  }

}