/* --- [ESTILOS BASE] --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #fff; /* Fondo blanco */
  padding-top: 60px; /* Altura del navbar */
}

.seo-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* --- [BANNER PRINCIPAL] --- */
.intro-banner {
  position: fixed; /* Queda fijo en pantalla */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: transform 0.8s ease;
  z-index: 1000; /* Más alto para estar encima */
  will-change: transform;
  background: #fff; /* Fondo blanco para evitar franjas */
}

/* Swiper */
.intro-swiper,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100vh !important;
}

/* Video/Imagen de fondo */
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none; /* OK: los videos no deben ser interactivos */
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.linkable-img {
  cursor: pointer;
  z-index: 1;
}


/* Capa oscura encima del video solo en slide 4 */
.slide4 .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Ajusta la opacidad aquí */
  z-index: 1;
  pointer-events: none;
}

/* Ocultar controles nativos en navegadores móviles */
.intro-video {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-media-controls: display-none !important;
}

/* En navegadores WebKit (Safari, Chrome móvil) */
.intro-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* Contenido superpuesto */
.intro-content {
  position: absolute;
  z-index: 2;
  color: #ffffff; /* Texto negro sobre fondo blanco */
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  padding: 0 20px;
}

/* Textos */
.intro-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 15px;
  text-shadow: none;
}


/* --- [ABOUT SECTION] --- */
.about-section {
  position: relative;
  width: 100vw;
  height: 130vh; /* más alto que la pantalla */
  padding: 100px 20px 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: transparent;
  z-index: 1;
}



.about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ocupa el 100% de la sección */
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
  pointer-events: none;
}


.about-content-wrapper {
  margin-top: 0; /* quitamos márgenes manuales */
  padding: 20px;
  max-width: 800px;
  color: #000;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* hace que use toda la altura disponible */
}





.about-text h2 {
  margin-top: 40px; /* antes era 60px, lo bajamos un poco si ya hay más margen general */
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-align: left;
  color: #ffffff;
  position: relative;
}
.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff7514;
  margin-top: 10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  margin-top: 20px;
}

.about-button {
  margin-top: 30px;
  display: inline-block;
  padding: 10px 24px;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-button:hover {
  background-color: #f7931e;
  color: #fff;
  border-color: #f7931e;
}

/* Responsive */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-text p {
    font-size: 1rem;
    text-align: justify;
  }

  .about-button {
    display: block;
    margin: 30px auto 0;
  }
}



/* Frase con animación tipo zoom difuminado */
.session-intro {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 8;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.session-intro-text {
  font-size: 3rem;
  color: #000;
  opacity: 0;
  transform: translateZ(-300px) scale(0.95);
  filter: blur(5px);
  transition: opacity 1s ease, transform 1.5s ease, filter 1.5s ease;
  text-align: center;
  will-change: transform, opacity, filter;
}




/* BLOQUE DE SESIONES */
.work-preview {
  margin-top: 5px;
  padding-top: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: margin-top 0.5s ease;
  z-index: 10;
  position: relative;
}

a.session {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 20px auto;
  text-decoration: none;
  color: inherit;
  flex-direction: row; /* dirección base: imagen a la derecha */
}

/* Clase que invierte el orden para alternar (imagen a la izquierda) */
a.session.reverse {
  flex-direction: row-reverse;
}

/* Efecto combinado al pasar el cursor sobre toda la sesión */
.session:hover .image-container img {
  filter: brightness(0.6); /* oscurece la imagen */
  transition: filter 0.4s ease;
}

.session:hover .session-info {
  background-color: #000;
  color: #fff;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.session-info,
.image-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.session-info {
  background-color: #f4f4f4;
  transition: background-color 0.3s ease;
  text-align: center;
  height: 650px;
}

.image-container img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* Solo la imagen de aurora necesita posición especial */
.img-sesion-8 {
  object-position: center 35%; /* Ajusta este valor según qué tanto quieres bajarla */
}


/* Animaciones */
.session {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.session.enter-from-left {
  opacity: 1;
  animation: slideInFromLeft 0.8s forwards;
}

.session.enter-from-right {
  opacity: 1;
  animation: slideInFromRight 0.8s forwards;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.view-more-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  width: 100%;
}

.view-more-button {
  padding: 12px 32px;
  background-color: #fff;
  border: 2px solid #f7931e;
  color: #f7931e;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more-button:hover {
  background-color: #f7931e;
  color: #fff;
}




/* --- [RESEÑAS - Testimonials Section] --- */
.testimonials-section {
  position: relative; 
  z-index: 20; 
  background-color: #fff; 
  width: 100vw; 
  padding: 60px 20px;
  box-sizing: border-box;
  margin: 60px auto; /* espacio arriba y abajo */
  text-align: center;
}


.testimonials-section h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonials-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: #f9f9f9;
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #333;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.testimonial-author {
  font-weight: 700;
  color: #f7931e; /* naranja Basma Studio */
  font-size: 1.1rem;
  margin-top: auto;
  align-self: flex-end;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .testimonials-section {
    padding: 40px 10px;
  }

  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .testimonials-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .testimonial-card {
    padding: 18px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    font-size: 1rem;
  }
}







