/* ============================================ */
/* RECORRIDO — DOY Digital Studio               */
/* Extiende la identidad visual del home.       */
/* Paleta: #050505 / #00FFE1 / #9afcff / #ccc  */
/* Display: Orbitron  |  Body: Inter            */
/* ============================================ */

/* ============================================ */
/* RESET Y BASE                                 */
/* ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #151515ff;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============================================ */
/* FONDO TECNOLÓGICO — idéntico al home        */
/* ============================================ */

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

.tech-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #00ffe122, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ============================================ */
/* HEADER                                       */
/* ============================================ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 225, 0.08);
}

.logo img {
  height: 55px;
  transition: opacity 0.3s;
}

.logo img:hover {
  opacity: 0.75;
}

/* Nav desktop */
#nav {
  display: flex;
  align-items: center;
  gap: 0;
}

#nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

#nav a:hover {
  color: #00ffe1;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #00ffe1;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================ */
/* TIPOGRAFÍA COMPARTIDA                        */
/* ============================================ */

.seccion-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #00ffe1;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  opacity: 0.85;
}

.seccion-titulo {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.seccion-cuerpo {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  color: #aaa;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 18px;
}

/* Botón DOY — mismo estilo que home */
.btn-doy {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 14px 38px;
  border: 1px solid #00ffe1;
  color: #00ffe1;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-doy:hover {
  background: #00ffe1;
  color: #000;
}

.btn-doy-lg {
  padding: 18px 52px;
  font-size: 13px;
  margin-top: 0;
}

/* ============================================ */
/* HERO RECORRIDO                               */
/* Pantalla completa, foto oscurecida, texto   */
/* ============================================ */

.hero-recorrido {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Imagen de fondo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.95) saturate(0.95);
}

/* Leve parallax al cargar */
.hero-recorrido:hover .hero-bg {
  transform: scale(1.08);
}

/* Overlay con gradiente bottom-up */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.1) 0%,
    rgba(5,5,5,0.05) 40%,
    rgba(5,5,5,0.5) 85%,
    #050505 100%
  );
}

/* Contenido del hero */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 30px;
}

.hero-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #00ffe1;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeDown 1s 0.3s both;
}

.hero-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(38px, 7vw, 90px);
  font-weight: 900;
  letter-spacing: 6px;
  color: #00ffe1;
  text-shadow: 0 0 30px rgba(0,255,225,0.5);
  margin: 0 0 16px;
  animation: fadeDown 1s 0.5s both;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  color: #ccc;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: fadeDown 1s 0.7s both;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #888;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeDown 1s 0.9s both;
}

.hero-content .btn-doy {
  animation: fadeDown 1s 1.1s both;
  margin-top: 0;
}

/* Indicador scroll */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #00ffe1, transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================ */
/* SECCIONES SPLIT (imagen + texto)             */
/* ============================================ */

.seccion {
  position: relative;
}

.seccion-split {
  padding: 0;
  min-height: 80vh;
}

/* Contenedor de imagen */
.split-img-wrap {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95) saturate(1);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.split-img-wrap:hover .split-img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}

/* Gradiente lateral sobre la imagen */
.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #050505 100%);
  pointer-events: none;
}

.seccion-split-inv .split-img-overlay {
  background: linear-gradient(to left, transparent 60%, #050505 100%);
}

/* Bloque de texto */
.split-text {
  padding: 80px 60px 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
}

.split-text-right {
  padding: 80px 70px 80px 60px;
}

/* ============================================ */
/* SECCIÓN CON FONDO COMPLETO                   */
/* ============================================ */

.seccion-fullbg {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.fullbg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.03);
}

.fullbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.1) 0%,
    rgba(5,5,5,0.7) 100%
  );
}

.seccion-fullbg .container {
  position: relative;
  z-index: 2;
}

.seccion-fullbg .seccion-cuerpo {
  max-width: 480px;
}

/* Íconos de disciplinas */
.disciplinas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.disciplina-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 225, 0.06);
  border: 1px solid rgba(0, 255, 225, 0.2);
  padding: 10px 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #9afcff;
  transition: background 0.3s, border-color 0.3s;
}

.disciplina-item:hover {
  background: rgba(0, 255, 225, 0.12);
  border-color: #00ffe1;
}

.disciplina-item i {
  font-size: 14px;
  color: #00ffe1;
}

/* ============================================ */
/* SECCIÓN FORMACIÓN — TARJETAS CON FOTO        */
/* ============================================ */

.seccion-formacion {
  padding: 120px 0;
}

.formacion-card {
  border: 1px solid rgba(0, 255, 225, 0.15);
  height: 100%;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #080808;
}

.formacion-card:hover {
  border-color: #00ffe1;
  box-shadow: 0 0 30px rgba(0,255,225,0.12), 0 0 60px rgba(0,255,225,0.04);
  transform: translateY(-6px);
}

.formacion-card-featured {
  border-color: rgba(0, 255, 225, 0.35);
}

.formacion-card-featured:hover {
  box-shadow: 0 0 40px rgba(0,255,225,0.18), 0 0 80px rgba(0,255,225,0.07);
}

/* Foto de diploma como fondo superior */
.formacion-foto {
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.92) saturate(0.95);
  transition: filter 0.5s ease, transform 0.5s ease;
  transform-origin: center;
}

.formacion-card:hover .formacion-foto {
  filter: brightness(1) saturate(1);
  transform: scale(1.04);
}

/* Cuerpo de texto */
.formacion-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.formacion-nivel {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: #00ffe1;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.formacion-titulo {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 16px;
}

/* Frase personal corta — el alma de cada tarjeta */
.formacion-frase {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  border-left: 2px solid rgba(0,255,225,0.25);
  padding-left: 14px;
}

/* ============================================ */
/* DIPLOMA DE HONOR — en sección profesional   */
/* ============================================ */

.diploma-honor {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 16px 20px;
  border: 1px solid rgba(0,255,225,0.2);
  background: rgba(0,0,0,0.2);
  max-width: 420px;
}

.diploma-honor-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1) saturate(1);
  flex-shrink: 0;
}

.diploma-honor-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #00ffe1;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.diploma-honor-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ccc;
}

/* ============================================ */
/* SECCIÓN TRANSICIÓN → PROYECTOS              */
/* ============================================ */

.seccion-transicion {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.transicion-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.6);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.seccion-transicion:hover .transicion-bg {
  transform: scale(1.07);
}

.transicion-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,255,225,0.04) 0%,
    rgba(5,5,5,0.85) 70%
  );
}

.transicion-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 30px;
}

.transicion-titulo {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 20px 0 24px;
  text-shadow: 0 0 40px rgba(0,255,225,0.15);
}

.transicion-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  color: #888;
  line-height: 1.8;
  margin-bottom: 44px;
}

.transicion-content .btn-doy-lg {
  margin-top: 0;
}

/* ============================================ */
/* SECCIÓN DOY DIGITAL STUDIO                   */
/* ============================================ */

.seccion-doy {
  padding: 130px 0;
}

.doy-logo-wrap {
  margin-bottom: 50px;
}

.doy-logo-img {
  height: 70px;
  opacity: 0.85;
  filter: drop-shadow(0 0 15px rgba(0,255,225,0.3));
}

.doy-titulo {
  color: #00ffe1;
  text-shadow: 0 0 20px rgba(0,255,225,0.25);
}

.doy-cuerpo {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 16px;
}

/* ============================================ */
/* SECCIÓN PROYECTOS — PANELES TIPO NETFLIX     */
/* ============================================ */

.seccion-proyectos {
  position: relative;
  padding-bottom: 80px;
}

/* Cada panel ocupa gran parte de la pantalla */
.proyecto-panel {
  position: relative;
  height: 85vh;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-bottom: 4px;
}

/* Video de fondo */
.proyecto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.85);
  transition: filter 0.6s ease;
}

.proyecto-panel:hover .proyecto-video {
  filter: brightness(0.75) saturate(1);
}

/* Fondo de imagen (cuando no hay video) */
.proyecto-img-bg {
  background-size: cover;
  background-position: center;
}

/* Overlay gradiente bottom-up */
.proyecto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.5) 40%,
    rgba(5,5,5,0.1) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* Contenido del panel */
.proyecto-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 640px;
}

/* Contenido alineado a la derecha */
.proyecto-content-right {
  margin-left: auto;
  text-align: right;
}

.proyecto-content-right .btn-doy {
  margin-left: auto;
}

/* Estado del proyecto */
.proyecto-estado {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 0;
  border: 1px solid currentColor;
}

.estado-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.estado-activo {
  color: #00ffe1;
}

.estado-investigacion {
  color: #7b9fff;
  border-color: #7b9fff;
}

.estado-concepto {
  color: #ffcc44;
  border-color: #ffcc44;
}

/* Nombre del proyecto */
.proyecto-nombre {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0 0 18px;
  line-height: 1.1;
}

.proyecto-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

.proyecto-content-right .proyecto-desc {
  margin-left: auto;
}

/* ============================================ */
/* SECCIÓN FILOSOFÍA                            */
/* Pantalla casi vacía. Gran foto. Texto corto. */
/* ============================================ */

.seccion-filosofia {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.filosofia-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.11) saturate(0.85);
  transform: scale(1.03);
}

.filosofia-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.2);
}

.filosofia-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 40px;
}

.filosofia-comilla {
  font-family: 'Georgia', serif;
  font-size: 120px;
  color: #00ffe1;
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 30px;
  display: block;
}

.filosofia-frase {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  color: #e8e8e8;
  line-height: 1.6;
  margin: 0 0 28px;
  font-style: italic;
  border: none;
  padding: 0;
}

.filosofia-autor {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #00ffe1;
  opacity: 0.6;
  text-transform: uppercase;
}

/* ============================================ */
/* CIERRE FINAL                                 */
/* ============================================ */

.seccion-cierre {
  padding: 130px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 225, 0.08);
}

.cierre-logo {
  height: 80px;
  margin-bottom: 36px;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(0,255,225,0.2));
}

.cierre-frase {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: #888;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 48px;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer {
  padding: 40px;
  text-align: center;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border-top: 1px solid rgba(0, 255, 225, 0.06);
}

.social {
  margin-top: 16px;
}

.social i {
  margin: 0 12px;
  font-size: 18px;
  color: #00ffe1;
  transition: color 0.3s, text-shadow 0.3s;
  cursor: pointer;
}

.social i:hover {
  color: #fff;
  text-shadow: 0 0 10px #00ffe1;
}

/* ============================================ */
/* ANIMACIONES DE ENTRADA (Intersection)        */
/* ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delay escalonado para tarjetas de formación */
.col-lg-4:nth-child(1) .formacion-card { transition-delay: 0s; }
.col-lg-4:nth-child(2) .formacion-card { transition-delay: 0.15s; }
.col-lg-4:nth-child(3) .formacion-card { transition-delay: 0.3s; }

/* ============================================ */
/* KEYFRAMES                                    */
/* ============================================ */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================ */
/* ACCESIBILIDAD — Movimiento reducido          */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-bg { transform: scale(1); transition: none; }
}

/* ============================================ */
/* RESPONSIVE — TABLET (max 992px)              */
/* ============================================ */

@media (max-width: 992px) {

  /* Split sections: apilan vertical */
  .split-img-wrap {
    height: 50vh;
    min-height: 320px;
  }

  /* El overlay lateral no aplica en mobile */
  .split-img-overlay {
    background: linear-gradient(to bottom, transparent 60%, #050505 100%);
  }

  .seccion-split-inv .split-img-overlay {
    background: linear-gradient(to bottom, transparent 60%, #050505 100%);
  }

  .split-text,
  .split-text-right {
    padding: 50px 36px;
    min-height: auto;
  }

  .seccion-fullbg {
    padding: 80px 0;
  }

  .proyecto-content,
  .proyecto-content-right {
    padding: 40px 36px;
    margin-left: 0;
    text-align: left;
  }

  .proyecto-content-right .btn-doy {
    margin-left: 0;
  }

  .proyecto-content-right .proyecto-desc {
    margin-left: 0;
  }

  .proyecto-panel {
    height: 70vh;
  }

}

/* ============================================ */
/* RESPONSIVE — MOBILE (max 768px)              */
/* ============================================ */

@media (max-width: 768px) {

  /* Menú hamburguesa */
  .menu-toggle {
    display: flex;
  }

  #nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 85px;
    left: 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,255,225,0.1);
  }

  #nav a {
    display: block;
    padding: 16px;
    margin: 0;
    border-top: 1px solid rgba(0, 255, 225, 0.07);
  }

  #nav.active {
    display: flex;
  }

  /* Hero */
  .hero-name {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: 15px;
  }

  .hero-sub {
    font-size: 13px;
  }

  /* Tarjetas formación */
  .formacion-card {
    padding: 36px 28px;
  }

  /* Proyectos */
  .proyecto-panel {
    height: 85vh;
    min-height: 500px;
  }

  .proyecto-content,
  .proyecto-content-right {
    padding: 30px 24px;
  }

  .proyecto-nombre {
    font-size: 30px;
  }

  /* DOY section */
  .doy-cuerpo {
    font-size: 15px;
    text-align: center;
  }

  /* Filosofía */
  .filosofia-frase {
    font-size: 18px;
  }

  .filosofia-comilla {
    font-size: 80px;
  }

  /* Disciplinas */
  .disciplinas {
    gap: 10px;
  }

  .disciplina-item {
    font-size: 9px;
    padding: 8px 12px;
  }

  /* Cierre */
  .cierre-logo {
    height: 60px;
  }

}

/* ============================================ */
/* RESPONSIVE — MÓVIL PEQUEÑO (max 480px)       */
/* ============================================ */

@media (max-width: 480px) {

  header {
    padding: 12px 20px;
  }

  .hero-name {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .split-text,
  .split-text-right {
    padding: 36px 20px;
  }

  .seccion-formacion {
    padding: 80px 0;
  }

  .seccion-doy {
    padding: 80px 0;
  }

  .proyecto-content,
  .proyecto-content-right {
    padding: 24px 20px;
  }

  .btn-doy {
    padding: 12px 28px;
    font-size: 10px;
  }

  .btn-doy-lg {
    padding: 14px 32px;
  }

}

/* ============================================ */
/* LANDSCAPE MÓVIL                              */
/* ============================================ */

@media (max-height: 500px) and (orientation: landscape) {

  .hero-recorrido {
    height: auto;
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero-name {
    font-size: 30px;
  }

  .scroll-indicator {
    display: none;
  }

}
