/* Estilos generales */
body {
    background-color: #111;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Estilos para las secciones */
.section {
    padding: 50px 10%;
    background-color: #111;
    color: white;
    text-align: center;
    border-bottom: 2px solid #8A2BE2; /* Color pÃºrpura */
}

.section h2 {
    font-family: 'IMPACT', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8A2BE2; /* Color pÃºrpura */
}

.section p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Ajustes del video */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
}

.navbar img {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}


/* SecciÃ³n Sobre Nosotros */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    color: white;
    height: 80vh; /* Ajusta la altura de la secciÃ³n */
    padding: 50px 5% 50px 0;
    overflow: hidden;
}

/* Contenedor del texto */
.about-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 80px;
    margin-top: -30px;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.about-content h2 {
    font-family: Impact, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    text-transform: uppercase;
    color: #8A2BE2;
}

.about-content p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    text-align: justify;
    overflow: hidden;
    border-right: 3px solid white;
    white-space: pre-wrap;
    display: inline-block;
}

/* Contenedor del Logo */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0px;
}

/* Imagen del logo con animaciÃ³n */
.rotating-logo {
    width: 650px;
    height: auto;
    animation: rotate360 5s linear infinite;
}

/* AnimaciÃ³n para girar el logo */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* SecciÃ³n de Productos */
.products-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Video de fondo */
.products-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.products-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido de la secciÃ³n */
.products-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.products-content h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #8A2BE2;
    text-transform: uppercase;
}

/* AnimaciÃ³n de apariciÃ³n suave */
.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ðŸŽ¬ SECCIÃ“N "PRODUCTOS" */
.products-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    flex-direction: column;
}

/* ðŸŽ¥ VIDEO DE FONDO */
.products-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.products-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ðŸ“Œ CONTENIDO DE "PRODUCTOS" */
.products-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* ðŸ”¹ ANIMACIÃ“N DEL TÃTULO */
.fade-in-products {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #ffffff !important; /* Fuerza el color blanco */
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

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

/* ðŸ”¹ ANIMACIÃ“N DEL TEXTO */
.slide-up-text-products {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpProducts 1.5s ease-in-out forwards 1s;
}

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

/* ðŸ”˜ BOTÃ“N CTA */
.cta-button-products {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #fb7006;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button-products:hover {
    background-color: #6D1BB2;
    transform: scale(1.05);
}
/* Capa de opacidad sobre el video */
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8); /* Ajusta el valor para mÃ¡s/menos opacidad */
    z-index: 1;
}

/* Estilos para la nueva secciÃ³n de contacto */
.contact-section {
    background-color: black;
    color: white;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    gap: 50px;
}

/* Formulario de contacto */
.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-form h2 {
    font-size: 2rem;
    color: #8A2BE2;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 12px;
    background: #8A2BE2;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-form .submit-btn:hover {
    background: #6b1db4;
    transform: scale(1.05);
}

/* InformaciÃ³n de contacto */
.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-info h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.contact-info a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
}

/* ðŸ“Œ Estilos de la SecciÃ³n de Contacto */
.contact-section {
    background-color: #000; /* Fondo negro */
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    gap: 50px;
}

/* ðŸ“Œ Estilos del Formulario */
.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1); /* Fondo con opacidad */
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.contact-form:hover {
    transform: scale(1.05); /* Efecto de crecimiento al pasar el mouse */
}

.contact-form h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    background-color: #FF6600; /* Naranja */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #E65C00; /* Naranja mÃ¡s oscuro en hover */
    transform: scale(1.05); /* Efecto sutil al pasar el mouse */
}

.contact-info {
    background-color: #111;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 102, 0, 0.8); /* Brillo naranja al pasar el mouse */
}

/* Estilos del botÃ³n de WhatsApp */
.cta-button-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white !important; /* âœ… Letras blancas por defecto */
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s, color 0.3s;
    margin-top: 15px;
    width: fit-content;
    border: none;
  }
  
  .cta-button-whatsapp:hover {
    color: #FF6600 !important; /* âœ… Letras naranjas al pasar el cursor */
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(37, 211, 102, 0.5);
  }
  
Logo rebotante, dentro de contacto 
.cta-button-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white !important; /* âœ… Letras blancas por defecto */
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s, color 0.3s;
    margin-top: 15px;
    width: fit-content;
    border: none;
  }
  
  .cta-button-whatsapp:hover {
    color: #FF6600 !important; /* âœ… Letras naranjas al pasar el cursor */
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(37, 211, 102, 0.5);
  }
  

/* Asegura que el contenedor no oculta elementos */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5; /* Evita que estÃ© tapado */
}

/* Si el botÃ³n se esconde por estar dentro de un contenedor con overflow:hidden */
.bouncing-container {
    overflow: visible !important;
    position: relative;
    z-index: 1;
}
.cta-button-whatsapp {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.cta-button-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white !important; /* âœ… Letras blancas por defecto */
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s, color 0.3s;
    margin-top: 15px;
    width: fit-content;
    border: none;
  }
  
  .cta-button-whatsapp:hover {
    color: #FF6600 !important; /* âœ… Letras naranjas al pasar el cursor */
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(37, 211, 102, 0.5);
  }
  
  

SubmenÃº OPACO de Productos

/* --- ESTILOS PARA LA BARRA DE NAVEGACIÃ“N --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    position: fixed; /* Fija la navbar en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* Fondo negro con transparencia */
    z-index: 1000;
}

/* --- ESTILOS PARA EL MENÃš PRINCIPAL --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600; /* Color naranja al pasar el cursor */
}

/* --- ESTILOS PARA EL SUBMENÃš --- */
.submenu {
    display: none; /* Oculto por defecto */
    position: absolute;
    background: rgba(0, 0, 0, 0.9); /* Fondo negro con opacidad */
    top: 100%; /* Se despliega justo debajo del menÃº principal */
    left: 0;
    width: 200px;
    padding: 10px 0;
    list-style: none;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.submenu li {
    padding: 10px;
    text-align: center;
}

.submenu li a {
    color: white;
    font-size: 1rem;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease-in-out;
}

/* Color al pasar el cursor */
.submenu li a:hover {
    background: #ff6600;
    color: black;
}

/* --- MOSTRAR SUBMENÃš AL PASAR EL MOUSE --- */
.submenu-parent:hover .submenu {
    display: block;
}

PAGINA DE PRODUCTOS
/* Estilos del collage de productos */
.productos-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 40px;
    background-color: #111;
}

/* Cada producto */
.producto-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.producto-item img {
    width: 40% !important;   /* Reduce el ancho visiblemente */
    height: auto;
    max-height: 160px;
    object-fit: contain;
    margin: auto;
    display: block;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  }
  


/* Efecto al pasar el mouse */
.producto-item .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* AnimaciÃ³n al hacer hover */
.producto-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.producto-item:hover .overlay {
    opacity: 1;
}
/* Estilos generales de la navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

/* Estilos del submenÃº */
.submenu-parent {
    position: relative;
}

.submenu {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px;
    list-style: none;
    display: none; /* Oculto por defecto */
    flex-direction: column;
    width: 180px;
    top: 100%;
    left: 0;
}

.submenu li {
    padding: 10px;
}

.submenu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.submenu li a:hover {
    color: #ff6600;
}

/* Mostrar el submenÃº al pasar el mouse */
.submenu-parent:hover .submenu {
    display: block;
}



/* ---- COLLAGE DE PRODUCTOS ---- */
.productos-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    grid-template-rows: repeat(2, auto); /* 2 filas */
    gap: 20px; /* Espaciado entre los recuadros */
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: auto;
    padding-top: 100px;
}

/* Asegurar que los productos ocupan bien su espacio */
.producto {
    width: 100%;
    height: 250px; /* Ajusta el tamaÃ±o */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Responsive: en pantallas pequeÃ±as, una sola columna */
@media (max-width: 768px) {
    .productos-collage {
        grid-template-columns: 1fr; /* 1 columna */
        grid-template-rows: repeat(4, auto); /* 4 filas */
    }
}

/* Centrar el tÃ­tulo dentro de cada producto */
.producto span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Efecto hover */
.producto:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
}


PÃ¡gina de SerieX
/* ðŸŒ‘ Estilos generales */
body {
    background-color: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* ðŸ“Œ Navbar */
.navbar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
}

.navbar img {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}


/* ðŸŒ‘ Estilos generales */
body {
    background-color: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}



/* â„¹ï¸ Lado derecho (Texto mÃ¡s grande y ajustado) */
.producto-right {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

/* ðŸ”¶ BotÃ³n de Presupuesto */
.presupuesto-btn {
    display: inline-block;
    background-color: #FF6600;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 20px;
}

.presupuesto-btn:hover {
    background-color: #E65C00;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 102, 0, 0.5);
}

/* ðŸŽ¥ Video Banner: Ajustado mÃ¡s arriba */
.video-banner {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.video-banner video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* ðŸ† Slogan: Ahora mÃ¡s cerca del video */
.slogan {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: white;
}
/* ðŸ“Œ Ajuste del tÃ­tulo del producto */
.titulo-producto {
    font-size: 3rem; /* Aumentado */
    font-weight: bold;
    text-transform: uppercase;
}
//* ðŸ“¸ Carrusel interactivo */
.carrusel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%; /* Asegura que ocupe todo el contenedor */
    max-width: 100%; /* No se puede hacer más grande que el contenedor */
    height: 400px; /* Ajusta la altura del contenedor para evitar solapamiento */
    overflow: hidden; /* Evita que las imágenes se salgan del contenedor */
    margin: 0 auto; /* Centra el carrusel */
}

.carrusel-container img {
    width: 100%;
    height: 100%; /* Asegura que la imagen se ajuste al contenedor */
    object-fit: cover; /* Mantiene el aspect ratio sin deformar */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* ðŸ”¼ Botones de navegación del carrusel */
.carrusel-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    z-index: 10;
}

.carrusel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ðŸ–¼ï¸ Miniaturas */
.miniaturas {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.miniaturas img {
    width: 70px;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.miniaturas img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

/* ðŸ”¼ Botones de navegación del carrusel */
.carrusel-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    z-index: 10;
}

.carrusel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ðŸŽ¥ Contenedor del Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ðŸŽ¥ Estilos del Video */
.video-banner video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* ðŸ† Estilos del Slogan - MÃ¡s pequeÃ±o y en una lÃ­nea */
.slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem; /* Reducido para hacerlo mÃ¡s compacto */
    font-weight: 300;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap; /* Evita que el texto se divida en varias lÃ­neas */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); /* Ligera sombra para mejorar visibilidad */
}

/* ðŸ”¹ Estilos especÃ­ficos para la pÃ¡gina de Servicios */

/* ðŸ“Œ SecciÃ³n de Servicios */
.servicios {
    padding: 60px 10%;
    text-align: center;
    background-color: #111;
}

.servicios h2 {
    font-size: 2.5rem;
    color: #8A2BE2;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.servicio {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.servicio:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
}

.servicio-imagen {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.servicio h3 {
    font-size: 1.5rem;
    color: white;
    margin-top: 15px;
}

.servicio p {
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
}

/* ðŸ“Œ SecciÃ³n de Pasos */
.pasos {
    background: #222;
    padding: 60px 10%;
    text-align: center;
}

.pasos h2 {
    font-size: 2.5rem;
    color: #8A2BE2;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pasos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.paso {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.paso:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
}

.icono {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #8A2BE2;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 10px;
}

.paso h3 {
    font-size: 1.5rem;
    color: white;
}

.paso p {
    font-size: 1rem;
    color: #ddd;
}

/* ðŸ“± Responsive */
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    .pasos-container {
        flex-direction: column;
    }
}

html, body {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* ----------------------------------
   ESTILOS GLOBALES PARA FACTOR X
---------------------------------- */

/* Fuente general y color de texto */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #000;
  }
  
  /* Fondo animado azul */
  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 50, 0.9) 30%, rgba(0, 255, 255, 0.15) 100%);
    z-index: -1;
    animation: moveBg 10s infinite alternate;
    filter: blur(2px);
  }
  
  @keyframes moveBg {
    0% { filter: blur(0px); }
    100% { filter: blur(10px); }
  }
  
  /* ----------------------------------
     NAVBAR
  ---------------------------------- */
  
  .navbar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
  }
  
  .navbar img {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #00ffff;
  }
  
  /* ----------------------------------
     ABOUT US SECTION
  ---------------------------------- */
  
  .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
  }
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: 90%;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  
  .about-text {
    width: 500px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .about-text .highlight {
    color: #00ffff;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  /* BotÃ³n CTA */
  .cta-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #00ffff;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
  }
  
  .cta-btn:hover {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  }
  
  /* ----------------------------------
     RESPONSIVE
  ---------------------------------- */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-image img {
      max-width: 80%;
    }
  
    .about-text {
      width: 100%;
    }
  }
    
  .trabaja-section {
    background-color: #111;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }
  
  .trabaja-section h2 {
    font-size: 2.2rem;
    color: #8A2BE2;
    margin-bottom: 30px;
  }
  
  .form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
  }
  
  .form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-container label {
    text-align: left;
    font-weight: bold;
  }
  
  .form-container input,
  .form-container select,
  .form-container textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
  }
  
  .form-container input::file-selector-button {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .form-container button {
    background-color: #FF6600;
    color: white;
    padding: 12px;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  
  .form-container button:hover {
    background-color: #e65c00;
  }
  .footer {
    text-align: center;
    background-color: #000;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .footer a {
    color: #00ffff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer a:hover {
    color: #ff6600;
  }
  .footer {
    background-color: #000;
    padding: 20px 10%;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid #222;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ff6600;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
  }
  
  .footer-social img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease-in-out;
  }
  
  .footer-social img:hover {
    transform: scale(1.2);
  }

  .icono-instagram {
    width: 24px; /* Aumentado ligeramente */
    height: 24px;
  }
  
  /* Oculta el menú hamburguesa y el desplegable móvil en escritorio */
.menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 24px;
    z-index: 9999;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    z-index: 9998;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 5px 0;
  }

  .navbar .nav-links {
    display: none !important;
  }
}


