@charset "UTF-8";
.nav-maite {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #0d0b1a;
  z-index: 9999;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav-maite .logo-img {
  height: 70px;
  width: auto;
}
.nav-maite .nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-maite .nav-links a {
  color: white;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.nav-maite .nav-links a:hover {
  color: #a29bfe;
}
.nav-maite .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 22px;
  z-index: 10002;
  position: relative;
  padding: 0;
}
.nav-maite .menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nav-maite {
    padding: 15px 5%;
  }
  .nav-maite .menu-toggle {
    display: flex;
  }
  .nav-maite .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    width: 75%;
    height: 100vh;
    background-color: #0d0b1a;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  .nav-maite .nav-links.active {
    right: 0;
  }
  .nav-maite .nav-links a {
    font-size: 1.4rem;
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  .nav-maite .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  .nav-maite .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .nav-maite .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

select {
  appearance: none;
  background-color: #0d0b1a;
  color: white;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}
select option {
  background-color: #0d0b1a;
  color: white;
}
select:focus {
  border-bottom-color: #a29bfe;
}

h1, .main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  font-weight: 300;
}
h1 em, .main-title em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 900px) {
  h1, .main-title {
    font-size: 3.5rem;
  }
}

.display-large {
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: -2px;
  text-transform: capitalize;
}

.reveal-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #a29bfe;
  margin-bottom: 15px;
  opacity: 0.8;
}

em {
  color: #a29bfe;
  font-style: inherit;
}

em {
  font-style: italic;
}

.contact-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 150px 10% 100px;
  background-color: #0d0b1a;
}
.contact-container .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
}
@media (max-width: 900px) {
  .contact-container .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info p {
  color: #a29bfe;
  margin-bottom: 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  color: white;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #a29bfe;
  background: rgba(255, 111, 200, 0.02);
}
.contact-form input:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(162, 155, 254, 0.6);
}
.contact-form label {
  font-size: 0.6rem;
  color: #a29bfe;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
}

.cta-button {
  align-self: center;
  width: 100%;
  background: transparent;
  border: 1px solid #a29bfe;
  color: #a29bfe;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.cta-button:hover {
  background: #b2bec3;
  color: #0d0b1a;
  border-color: #0d0b1a;
  transform: translateY(-3px);
}

.social-links {
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.social-links a {
  color: #a29bfe;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}
.social-links a:hover {
  color: #b2bec3;
}

.social-links {
  color: white;
}
.social-links a {
  margin: 0 10px;
}
.social-links a:first-child {
  margin-left: 0;
}

input:not(:placeholder-shown) {
  border-bottom-color: rgba(162, 155, 254, 0.5);
}

textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(162, 155, 254, 0.5);
}

.form-group {
  width: 100%;
  position: relative;
}
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  color: white;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.form-group textarea:focus {
  border-bottom-color: #a29bfe;
  background: rgba(255, 111, 200, 0.02);
}
.form-group textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(162, 155, 254, 0.6);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  display: block;
}

.reveal-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #a29bfe;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.reveal-text::after {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #a29bfe;
  vertical-align: middle;
  margin-left: 15px;
}

/* --- RESPONSIVE PARA EL FOOTER (MÓVIL) --- */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
    text-align: center;
  }
  .footer-buttons {
    display: flex;
    flex-direction: column; /* Botones uno encima de otro */
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .footer-btn {
    width: 100%; /* Que el botón ocupe casi todo el ancho del móvil */
    max-width: 300px; /* Pero que no se vea gigante */
    padding: 15px 20px;
  }
}
.footer-maite {
  width: 100%;
  background-color: #0d0b1a;
  padding: 40px 5% 20px;
}
.footer-maite .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  padding-top: 30px;
  font-size: 0.75rem;
  color: #b2bec3;
}
.footer-maite .footer-bottom .links {
  display: flex;
  gap: 20px;
}
.footer-maite .footer-bottom .links a {
  color: #b2bec3;
  text-decoration: none;
}
.footer-maite .footer-bottom .links a:hover {
  color: #a29bfe;
}

.footer-cta {
  text-align: center;
  padding-bottom: 60px;
  background-color: #0d0b1a;
}
.footer-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 45px;
}
.footer-cta h2 em {
  color: #a29bfe;
  font-style: italic;
}

p {
  font-family: "DM Sans", sans-serif;
  color: #a29bfe;
  font-size: 1rem;
  margin-bottom: 30px;
}

#cursor, #cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}

#cursor {
  width: 8px;
  height: 8px;
  background-color: #a29bfe;
}

#cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid #a29bfe;
  transition: transform 0.3s ease-out, background 0.3s ease, border 0.3s ease;
}

.cursor-hover #cursor {
  transform: scale(1.5);
  opacity: 0.5;
}
.cursor-hover #cursor-follower {
  transform: scale(1.5);
  background-color: rgba(162, 155, 254, 0.1);
  border-color: white;
}

@media (max-width: 768px) {
  /* Ocultamos los elementos del cursor personalizado */
  #cursor,
  #cursor-follower {
    display: none !important;
  }
  /* Restauramos el cursor por defecto del sistema para inputs y botones */
  /* (Aunque sea táctil, esto evita conflictos visuales) */
  *, a, button, input, select, textarea {
    cursor: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

.edu-section {
  background-color: #0d0b1a;
  padding: 80px 5%;
}

.hero-maite {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0d0b1a;
  padding-top: 100px;
}

.grid-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.grid-editorial .grid-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: none;
}
.grid-editorial .grid-item:hover {
  border-color: #a29bfe;
  background-color: rgba(162, 155, 254, 0.03);
  transform: translateY(-5px);
}
.grid-editorial .grid-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: white;
  line-height: 1.2;
}
.grid-editorial .grid-item span small {
  display: block;
  font-family: "DM Sans", sans-serif;
  color: #b2bec3;
  font-size: 0.7rem;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.grid-editorial .grid-item.tall {
  grid-row: span 2;
}
.grid-editorial .grid-item.wide {
  grid-column: span 2;
}
.grid-editorial .grid-item.medium {
  grid-row: span 1.5;
}
.grid-editorial .grid-item .course-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.6rem;
  color: #a29bfe;
  border: 1px solid #a29bfe;
  padding: 5px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- RESPONSIVE GRID EDUCACIÓN --- */
@media (max-width: 768px) {
  .edu-section {
    padding: 60px 20px;
  }
  .grid-editorial {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .grid-editorial .grid-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    padding: 60px 30px 40px 30px;
    min-height: 220px;
  }
  .grid-editorial .grid-item span {
    font-size: 1.4rem;
  }
  .grid-editorial .grid-item .course-tag {
    top: 20px;
    left: 20px;
  }
}
.edu-section {
  background-color: #0d0b1a;
  padding: 80px 5%;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.content-h1 {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
}

.content-p {
  color: #b2bec3;
  font-family: "DM Sans", sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 500px;
}

/* --- RESPONSIVE SECCIÓN ABOUT --- */
@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
  }
  .content-h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  .content-p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }
  .edu-section {
    padding: 40px 20px;
  }
}/*# sourceMappingURL=main.css.map */