/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #111111;
  color: #FFFFFF;
}

/* === Menú Principal === */
.vo-main-menu {
  background-color: #F5D327;
  padding: 1rem 2rem;
  position: relative;
  z-index: 100;
}

.vo-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vo-logo img {
  height: 96px;
}

.vo-nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.vo-nav-links li a {
  color: #111111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.vo-nav-links li a:hover {
  color: #FFFFFF;
}

/* === Toggle hamburguesa === */
.vo-toggle-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #111111;
}

/* === Mobile === */
@media (max-width: 768px) {
  .vo-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F5D327;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
  }

  .menu-open .vo-nav-links {
    display: flex;
  }

  .vo-toggle-menu {
    display: block;
  }
}

/* hero */
/* Fuente Michroma para todo el body */
.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 1. Hero contenedor */
.vo-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 20vh 1rem 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #F5D327 0%, #2C2C2C 100%);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite, fadeInHero 1s ease-out;
}

/* 2. Overlay degradado negra → transparente → amarillo menú */
.vo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1.7) 0%,
    rgba(0, 0, 0, 0.4) 31%,
    rgba(245, 211, 39, 0.9) 80%
  );
  pointer-events: none;
  z-index: 1;
}

/* Animaciones de fondo */
@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 3. Partículas en canvas */
.vo-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/* 4. Onda SVG */
.vo-hero-wave {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  z-index: 0;
  animation: waveMove 8s linear infinite;
}

@keyframes waveMove {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(10%) translateY(5px); }
  100% { transform: translateX(0) translateY(0); }
}

/* 5. Contenido del hero */
.vo-hero-content {
  position: relative;
  z-index: 3;
  width: min(800px, 90%);
  margin: 0 auto;
  color: #111;
}

/* 6. Título con degradado animado + sombra */
.vo-hero-title {
  font-family: "Michroma", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #F5D327, #FF8C00, #F5D327);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 1.7));
  opacity: 0;
  animation:
    slideInTitle 1s ease-out 0.3s forwards,
    textGradient 4s ease infinite;
}

@keyframes slideInTitle {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes textGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 7. Subtítulo */
.vo-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInText 1.2s ease-out 0.6s forwards;
}

@keyframes fadeInText {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 8. Botón CTA */
.vo-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  background-color: #111;
  color: #F5D327;
  opacity: 0;
  animation: fadeInCTA 1.2s ease-out 0.8s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes fadeInCTA {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.vo-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* segunda opcion del menu */

/* 1. Secciones generales */
.vo-section {
  padding: 6rem 1rem;
  background-color: #f9f9f9;
}

.vo-section:nth-of-type(even) {
  background-color: #fff;
}

.vo-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* 2. Títulos de sección */
.vo-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.vo-section-title::after {
  content: '';
  width: 50px;
  height: 4px;
  background: #FF8C00;
  display: block;
  margin: 0.5rem auto 0;
}

/* 3. Texto descriptivo */
.vo-section-text {
  font-family: 'Michroma', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* 4. Layout del proceso creativo */
.vo-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.vo-step {
  background: #fafafa;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vo-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vo-step-number {
  font-family: 'Michroma', sans-serif;
  font-size: 2rem;
  color: #F5D327;
  display: block;
  margin-bottom: 0.5rem;
}

.vo-step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vo-step-text {
  font-family: 'Michroma', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* estadisticas */
/* Estadísticas animadas */
.vo-stats .counter {
  font-size: 3rem;
  font-weight: 700;
  color: #F5D327;
  margin-bottom: 0.25rem;
}

.vo-stats .progress {
  height: 1.2rem;
}

.vo-stats .progress-bar {
  font-size: 0.9rem;
  font-weight: 600;
}

/* === Variables de color === */
:root {
  --vo-primary:       #F5D327;
  --vo-secondary:     #111111;
  --vo-tertiary:      #2A2A2A;
  --vo-light:         #F4F4F4;
  --vo-gradient-start: #111111;
  --vo-gradient-end:   #333333;
}

/* === Utilidades de fondo === */
.vo-bg-light {
  background-color: var(--vo-light) !important;
  color: var(--vo-tertiary);
}

.vo-bg-dark {
  background-color: var(--vo-secondary) !important;
  color: #FFFFFF;
}

.vo-bg-gradient {
  background: linear-gradient(
    to right,
    var(--vo-gradient-start),
    var(--vo-gradient-end)
  ) !important;
  color: #FFFFFF;
}

/* Anula el fondo predefinido de .vo-section cuando se usan utilidades */
.vo-section.vo-bg-light,
.vo-section.vo-bg-dark,
.vo-section.vo-bg-gradient {
  background-color: unset;
}

/* Ajustes de texto en secciones oscuras/degradado */
.vo-bg-dark .vo-section-text,
.vo-bg-gradient .vo-section-text {
  color: rgba(255, 255, 255, 0.8);
}

.vo-bg-dark .vo-section-title,
.vo-bg-gradient .vo-section-title {
  color: #FFFFFF;
}

/* Z-index para decoraciones SVG */
section[style*="position: relative"] svg {
  z-index: 0;
  pointer-events: none;
}


/* Estadísticas: inicio de gráficas en 0 y transición suave */
.vo-stats .progress-bar {
  width: 0 !important;
  transition: width 1.5s ease-out;
}


/* cards + repro */



/* Grilla: 3 columnas fijas en desktop */
.vo-produccion-grid {
    width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Card horizontal con imagen izquierda y contenido derecha */
.vo-produccion-card {
  display: flex;
  gap: 1rem;
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.vo-produccion-card:hover {
  transform: scale(1.015);
}

/* Imagen fija en la izquierda */
.vo-card-img img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

/* Contenido: título, descripción y botón */
.vo-card-content {
  flex: 1;
}

.vo-card-title {
  font-family: 'Michroma', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.vo-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* Botón reproducir personalizado */
.vo-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F5D327;
  border: none;
  cursor: pointer;
  position: relative;
}

.vo-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 12px solid #111;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.vo-play-btn.playing::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #111;
  clip-path: inset(0 0 0 0);
  border: none;
}

/* Responsive: apilado vertical en mobile */
@media (max-width: 768px) {
  .vo-produccion-grid {
    grid-template-columns: 1fr;
  }

  .vo-produccion-card {
    flex-direction: column;
    text-align: center;
  }

  .vo-card-img img {
    width: 100%;
    height: auto;
  }
}

/* contacto */


/* Sección de contacto con fondo oscuro o imagen */
.vo-contacto {
  background-image: url('https://plus.unsplash.com/premium_photo-1683121862832-2c9fe1cf4b79?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8bmVncm8lMjB5JTIwZ3Jpc3xlbnwwfHwwfHx8MA%3D%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.vo-contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.vo-contacto .vo-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* Formulario */
.vo-form-contacto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vo-campo label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  color: #eee;
}

.vo-campo input,
.vo-campo textarea {
  width: 100%;
  padding: 0.75rem;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  resize: vertical;
}

.vo-campo input:focus,
.vo-campo textarea:focus {
  outline: none;
  border-color: var(--vo-primary);
  background: #2a2a2a;
}

/* Botón enviar */
.vo-form-contacto button[type="submit"] {
  background-color: #F5D327;
  color: #111;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Michroma', sans-serif;
  transition: background 0.2s ease;
}

.vo-form-contacto button[type="submit"]:hover {
  background-color: #e4c018;
}

/* Feedback visual */
.vo-respuesta {
  margin-top: 1rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.vo-exito {
  color: #4caf50;
}

.vo-error {
  color: #f44336;
}
