/* :root {
    --primary: #ff3131;
    --dark: #0a0a0a;
    --white: #ffffff;
    --gray: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
} */

/* --- HERO & VIDEO --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

#bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

/* --- NAV --- */
/* .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
} */

/* --- HERO CONTENT --- */
/* .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.cta-group {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
} */

/* --- BOTONES --- */
/* .btn {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    
} */

.btn-main { background: var(--primary); color: white; }
.btn-main:hover { background: #cc0000; transform: scale(1.05); }

.btn-outline { background: transparent; border: 2px solid white; color: white; }

 /* * --- SECCIONES RESPONSIVAS --- */
.section { padding: 5rem 10%; text-align: center; }
.dark { background-color: #050505; }

/* .title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card, .price-card {
    background: var(--gray);
    padding: 3rem 2rem;
    border-radius: 10px;
    transition: 0.4s;
}

.card:hover { background: var(--primary); }

.price-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
}  */

/* --- AUDIO CONTROL --- */
.audio-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
}

.waves {
    display: flex;
    gap: 3px;
    height: 15px;
    align-items: flex-end;
}

.waves span {
    width: 3px;
    background: white;
    animation: wave-anim 1s infinite alternate;
}

.waves.paused span { animation: none; height: 3px; }

@keyframes wave-anim {
    from { height: 3px; }
    to { height: 15px; }
}

/* --- MEDIA QUERIES (MÓVIL) --- */
@media (max-width: 500px) {
    .nav-links { display: none; } /* Ocultar menú en móvil para simplicidad */
    .hero-content h1 { font-size: 2rem; }
    .section { padding: 3rem 5%; }
}
/* nuvo */
@media (max-width: 480px) {
  /* Reduce el tamaño del título principal */
  .hero-title, h1 {
    margin-top: 95px;
    font-size: 1.5rem !important; 
    line-height: 1.2;
  }

  /* Ajusta el tamaño de las imágenes o iconos grandes */
 /*  .robot-image, img {
    max-width: 80%;
    height: auto;
  } */

  /* Asegura que los botones no ocupen toda la pantalla */
 /*  .btn, button {
    width: 90%;
    padding: 10px;
  } */
}