/* =========================================
   HOME — BOUCHAN'S STUDIO 2026
   ========================================= */

/* HERO SECTION */
/* HERO VIDEO */
.hero {
  position: relative;
  height: 96vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay para oscurecer el video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 2;
}

/* Contenido encima del video */
.hero-content {
  margin-top: 360px;
  position: relative;
  z-index: 3;
  color: var(--white-pure);
  padding: 0 40px;
}


.hero-content h1 {
  text-shadow: 
  0 0 12px var(--cyan),
  0 0 24px rgba(0, 234, 255, 0.6),
  0 0 36px rgba(0, 234, 255, 0.4);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 84px;
  text-shadow: 0 0 12px var(--cyan);
}

.hero-content p {
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.4), 0 0 16px rgba(0, 234, 255, 0.2);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.hero-content .btn-cta {
  background-color: var(--magenta);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white-pure);
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.4);
}

.hero-content .btn-cta:hover {
  background-color: var(--cyan);
  color: var(--black-deep);
  box-shadow: 0 0 18px var(--cyan);
  transform: translateY(-3px);
}

.btn-cta {
  animation: pulseNeon 2.5s infinite ease-in-out;
}

@keyframes pulseNeon {
  0% {
    box-shadow: 0 0 12px rgba(255, 0, 200, 0.4);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 0, 200, 0.8);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 0, 200, 0.4);
  }
}

/* =========================================
   HOME — SECCIÓN QUIÉNES SOMOS
   ========================================= */

.home-about {
  padding: 100px 40px;
  background-color: var(--black-deep);
  display: flex;
  justify-content: center;
  text-align: center;
}

.home-about-content {
  max-width: 800px;
}

.home-about h2 {
  color: var(--cyan);
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 0 0 14px var(--cyan);
}

.home-about p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}



/* =========================================
   HOME — PORTAFOLIO DESTACADO
   ========================================= */

.portfolio-preview {
  padding: 100px 40px;
  background-color: #0d0d0d;
  text-align: center;
}

.portfolio-preview h2 {
  color: var(--magenta);
  font-size: 2.4rem;
  margin-bottom: 60px;
  text-shadow: 0 0 14px rgba(255, 0, 200, 0.5);
}

/* Tarjetas de proyecto */
.portfolio-item {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #111;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
  transition: 0.3s ease;
  align-items: center;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
}

/* Imagen del proyecto */
.portfolio-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  flex: 1 1 480px;
}

/* Texto del proyecto */
.portfolio-info {
  flex: 1 1 300px;
  text-align: left;
}

.portfolio-info h3 {
  color: var(--cyan);
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.portfolio-info p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.2);
}

/* Botón */
.btn-neon {
  display: inline-block;
  padding: 10px 20px;
  color: var(--white-pure);
  background-color: var(--cyan);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.4);
  transition: background-color 0.3s ease;
}

.btn-neon:hover {
  background-color: var(--magenta);
  box-shadow: 0 0 16px rgba(255, 0, 200, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-item {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-info {
    text-align: center;
  }

  .portfolio-img {
    max-width: 100%;
  }
}


/* =========================================
   HOME — TESTIMONIOS
   ========================================= */

.home-testimonials {
  padding: 100px 40px;
  background-color: #0b0b0b;
  text-align: center;
}

.home-testimonials h2 {
  color: var(--magenta);
  font-size: 2.4rem;
  margin-bottom: 60px;
  text-shadow: 0 0 14px rgba(255, 0, 200, 0.5);
}

/* Grid de testimonios */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Tarjeta individual */
.testimonial-card {
  background-color: #111;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
  transition: 0.3s ease;
  text-align: left;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
}

/* Texto del testimonio */
.testimonial-text p {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.2);
}

/* Autor */
.testimonial-author span {
  display: block;
  color: var(--cyan);
  font-weight: bold;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.testimonial-author small {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 6px rgba(255, 0, 200, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    text-align: center;
  }
}




/* =========================================
   HOME — NUESTRO PROCESO CREATIVO
   ========================================= */

.home-process {
  padding: 100px 40px;
  background-color: #0d0d0d;
  text-align: center;
}

.home-process h2 {
  color: var(--magenta);
  font-size: 2.4rem;
  margin-bottom: 60px;
  text-shadow: 0 0 14px rgba(255, 0, 200, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  background-color: #111;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--cyan);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.process-step h3 {
  color: var(--magenta);
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 0, 200, 0.4);
}

.process-step p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   HOME — CTA FINAL
   ========================================= */

.home-cta {
  padding: 140px 40px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.9)
  ),
  url('/assets/img/hero-temp.jpeg') center/cover no-repeat;
  text-align: center;
}

.home-cta h2 {
  color: var(--magenta);
  font-size: 2.6rem;
  margin-bottom: 20px;
  text-shadow: 0 0 18px var(--cyan);
}

.home-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--magenta);
  color: var(--white-pure);
  border-radius: var(--radius);
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--cyan);
  color: var(--black-deep);
  box-shadow: 0 0 20px var(--cyan);
}



/* =========================================
   ANIMACIÓN REVEAL
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

  .home-portfolio-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .home-about,
  .home-portfolio,
  .home-process,
  .home-cta {
    padding: 60px 20px;
  }

  .home-project-card img {
    height: 180px;
  }
}


/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICES PREVIEW */
.services-preview {
  padding: 80px 40px;
  background-color: var(--black-deep);
  color: var(--white-pure);
  text-align: center;
}

.services-preview h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* SERVICE CARD */
.service-card {
  background-color: #111;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 234, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 0, 200, 0.4);
}

.service-card p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}

.service-card img.service-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 120px 20px 80px;
  }

  .hero-content {
    margin-top: 180px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
