@font-face {
  font-family: 'dreams';
  src: url('../fonts/dreams.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


.index-page{
  background-color: black;
}


.glass-title {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 25px rgba(120, 80, 255, 0.25);
}



.text-zf {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dbe7ff;
}



#stars-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top,
    #0d2438 0%,
    #0a1b2d 40%,
    #0b1424 70%,
    #06080f 100%
  );
}



.official-poster {
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}



.official-poster:hover {
  transform: scale(1.015);
  box-shadow: 
    0 0 30px rgba(138, 43, 226, 0.35),
    0 0 80px rgba(255, 200, 120, 0.18);
}



.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}



.mex-section {
  position: relative;
  overflow: hidden;
}



.earth-canvas {
  width: 100%;
  height: 75vh;
}



/* 🌌 Galería espacial */
.space-gallery {
  background: transparent;
  position: relative;
  z-index: 2;
}



/* 🛰️ Tarjeta espacial */
.space-card {
  position: relative;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(138, 180, 255, 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



/* Imagen */
.space-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}



/* ✨ Hover flotante */
.space-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 28px rgba(138, 180, 255, 0.35);
}



.space-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  border: 1px solid rgba(138, 180, 255, 0.35);
  opacity: 0.6;
  animation: orbitGlow 114s linear infinite;
  pointer-events: none;
}



@keyframes orbitGlow {
  from { transform: rotate(0deg); }


  to   { transform: rotate(360deg); }


}

.rocket-canvas {
  width: 100%;
  height: 100vh;
  display: block;
}



.sme-years {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}



.sme-year {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #8ab4ff;
  border: 1px solid rgba(138, 180, 255, 0.35);
  background: rgba(10, 20, 40, 0.25);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}



.sme-year:hover {
  color: #ffffff;
  background: rgba(138, 180, 255, 0.25);
  border-color: #8ab4ff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(138, 180, 255, 0.35);
}



.sme-year.active {
  color: #fff;
  background: linear-gradient(135deg, #5da9ff, #9fd3ff);
  border-color: transparent;
}



.sme-year.active {
  animation: pulse 2.5s infinite ease-in-out;
}



@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(138,180,255,0.4); }
  50% { box-shadow: 0 0 25px rgba(138,180,255,0.8); }
}






#join {
  position: relative;
  overflow: hidden;
  background-image: url('../../img/moon-section.png');
  background-repeat: no-repeat;
  background-position: center calc(100% - 100%);
  background-size: 100% auto;
}




.info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.35s ease;
}



.info:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}



.info i {
  display: inline-block;
  margin-bottom: 0.5rem;
}



.info span {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.card-background-mask-ZF::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}



.btn-outline-white {
  backdrop-filter: blur(6px);
  border-width: 2px;
}






/* TIPOGRAFÍA BASE */
.participa-title,
.participa-card h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.04em;
}



.participa-card p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}



/* TÍTULO */
.participa-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0b1a3a;
}



/* TARJETAS */
.participa-card {
  position: relative;
  height: 100%;
  padding: 1.5rem 1.5rem 1.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(11, 26, 58, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}



.participa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 26, 58, 0.25);
}



/* ICONOS */
.participa-card i {
  margin-bottom: 0.6rem;
}



/* CONTADOR SUTIL */
.step-counter {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(11, 26, 58, 0.35);
}



/* LINKS */
.participa-card a {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 600;
  text-decoration: none;
}



.participa-card a:hover {
  text-decoration: underline;
}






.titlesZF-white-alt{
  font-family: 'Orbitron', sans-serif;
  color: white;
}




/* =========================
  SECCIÓN ACTIVIDADES
========================= */
:root {
  --science: 120,140,255;
  --scienceorange: 237, 150, 50;
  --workshops: 120,220,160;
  --tech: 170,120,255;
  --talks: 255,180,90;
  --art: 255,120,200;
}






.activities-orbit {
  position: relative;
  padding: 120px 0 140px;
  background: #0B1230;
  background: linear-gradient(180deg, #001722 0%, #010f16 50%, #020a0e 100%);
  overflow: hidden;
}




/* TÍTULOS */
.section-title-orbit {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  letter-spacing: 0.15em;
  font-size: 28px;
  margin-bottom: 14px;
}



.section-subtitle-orbit {
  font-family: 'Exo 2', sans-serif;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
}



/* ORBITA */
.orbit-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 80px auto 0;
}



/* CENTRO */
.orbit-center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron';
  color: #fff;
  letter-spacing: 0.12em;
  text-align: center;
  box-shadow: 0 0 40px rgba(120,140,255,0.25);
}



/* ITEMS */
.orbit-item {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Exo 2';
  font-size: 18px;
  text-align: center;
  gap: 8px;
}



.orbit-item i {
  font-size: 20px;
}



.orbit-item::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
      rgba(var(--glow), 0.45),
    transparent 70%
  );
  filter: blur(18px);
  z-index: -1;
}



.orbit-item.science   { --glow: var(--science); }


.orbit-item.scienceorange   { --glow: var(--scienceorange); }


.orbit-item.workshops { --glow: var(--workshops); }


.orbit-item.tech      { --glow: var(--tech); }


.orbit-item.talks     { --glow: var(--talks); }


.orbit-item.art       { --glow: var(--art); }




/* POSICIONES */
.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }


.orbit-2 { top: 25%; right: 0; transform: translateY(-50%); }


.orbit-3 { bottom: 25%; right: 0; transform: translateY(50%); }


.orbit-4 { bottom: 0; left: 50%; transform: translateX(-50%); }


.orbit-5 { bottom: 25%; left: 0; transform: translateY(50%); }


.orbit-6 { top: 25%; left: 0; transform: translateY(-50%); }



/* TEXTO */
.activities-text {
  font-family: 'Exo 2';
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 16px;
}



/* RESPONSIVE */


.custom-shape-divider-bottom-1770074564 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}



.custom-shape-divider-bottom-1770074564 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}



.custom-shape-divider-bottom-1770074564 {
  filter: drop-shadow(0 -20px 40px rgba(0,0,0,0.6));
}



.custom-shape-divider-bottom-1770074564 {
  bottom: -1px;
}




#aliados {
  position: relative;
  
  overflow: hidden;
}



.ally-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(13, 25, 46,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.ally-card img {
  width: 70%;
  max-width: 180px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
}



/* Glow */
.ally-card::before {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 30px;
  background: radial-gradient(
    circle,
    rgba(120,140,255,0.35),
    transparent 70%
  );
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}



.ally-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(120,140,255,0.35);
}



.ally-card:hover::before {
  opacity: 1;
}



.ally-links a {
  color: #cfd8ff;
  font-size: 1.4rem;
  margin: 0 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}



.ally-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(120,140,255,0.9);
}



.custom-shape-divider-top-1770153965 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}



.custom-shape-divider-top-1770153965 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}



.custom-shape-divider-top-1770153965 .shape-fill {
    fill: #020a0e;
}




#aliados {
  height: 80vh;
  
  
}



#aliados .astronauta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);

  width: 50%;
  height: 100%;

  background-image: url("../../img/astroGirl1.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;

  z-index: -1;
  pointer-events: none;
}



#aliados .container {
  position: relative;
  z-index: 3; /* tarjeta */
}




.custom-shape-divider-bottom-1770166863 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}



.custom-shape-divider-bottom-1770166863 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 105px;
}



.custom-shape-divider-bottom-1770166863 .shape-fill {
    fill: #020a0e;
}




.custom-shape-divider-top-1772221607 {
    
    top: 0;
    left: 0;
    width: 100%;
    
    line-height: 0;
}



.custom-shape-divider-top-1772221607 svg {
    
    display: block;
    width: calc(100% + 1.3px);
    height: 97px;
    transform: rotateY(180deg);
}



.custom-shape-divider-top-1772221607 .shape-fill {
    fill: #000000;
}





.shuttle-canvas {
  width: 100%;
  height: 50vh;
}


.matTitleText{
	
	font-family: 'dreams', sans-serif;
	font-weight: 700 !important;
	color: white;
	font-size: 10px !important;

}







 


/* =========================
   MEDIA QUERIES
========================= */
@media only screen and (min-device-width: 1401px) {

}


@media only screen and (min-device-width: 1201px) and (max-device-width: 1400px) {

  
}

@media only screen and (min-device-width: 1025px) and (max-device-width: 1200px) {

}

@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
  .indexTitleText{	
    font-size: 12px !important;
  }

  #aliados .astronauta {
    
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);

    width: 75%;

  }

  


}

@media only screen and (min-device-width: 481px) and (max-device-width: 768px) {

  #join {
    background-size: 140% auto;
    padding-bottom: 200px;
  }

  .orbit-wrapper {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .orbit-center {
    display: none;
  }

  .orbit-item {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .indexTitleText{	
    font-size: 12px !important;
  }
    

}

@media only screen and (min-device-width: 300px) and (max-device-width: 480px) {
  .indexTitleText{	
    font-size: 8px !important;
  }

  .indexTitleSubText{
    font-size: 25px !important;
  }

  .mt-sm-6 {
    margin-top: 4rem !important;
  }

  .space-card::before {
    animation: none;
  }

  
  .custom-shape-divider-bottom-1770166863 {
    bottom: -10px;
  }

  #aliados .astronauta {
    
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);

    width: 95%;

  }


}