/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

header.transparent {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Logo */
.logo img {
    width: 120px;
    height: 70px;
}

/* Navigation */
#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: 0.3s;
}

/* Menu Items */
#nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav ul li {
    position: relative;
    margin: 0 15px;
}

#nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
    }

    #nav ul.active {
        display: flex;
    }

    #nav ul li {
        text-align: center;
        width: 100%;
    }
}

/* Indicator Styling */
#nav li {
    position: relative;
}

#nav .indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    width: 0;
    transition: width 0.3s ease;
    display: block;
}

/* Hover Effect with Animation */
#nav ul li:hover .indicator {
    width: 100%;
}


/*-----------------------------------------------------------------*/
    
    
    /* Slider Principal */
    .slider {
        width: 100%;
        height: 600px; /* Altura mínima de las imágenes */
        overflow: hidden;
        position: relative;
    }
    
    .slide {
        width: 100%;
        height: 100%;
        min-width: 1930px; /* Ancho mínimo de 1920px */
        min-height: 600px; /* Altura mínima de 600px */
        position: absolute;
        top: 0;
        left: 100%;
        transition: left 0.5s ease-in-out;
        overflow: hidden; /* Para que la imagen no se salga del contenedor */
    
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Asegura que la imagen cubra el área del slider */
        object-position: center; /* Centra la imagen en el contenedor */
    }
    .slide.active {
        left: 0;
    }
    
    /* Controles del slider */
    .slider-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        color: white;
        font-size: 2em;
        padding: 0 20px;
        transform: translateY(-50%);
    }
    
    .prev, .next {
        cursor: pointer;
        font-size: 2.5em;
    }
    
    .slider-dots {
        text-align: center;
        position: absolute;
        bottom: 20px;
        width: 100%;
    }
    
    .dot {
        cursor: pointer;
        font-size: 1.5em;
        margin: 0 5px;
        color: white;
    }
    
    .dot.active i {
        color: #FF4081;
    }
    
    /* Mensaje de Bienvenida */
    .welcome {
        text-align: center;
        padding: 60px 20px;
        background-color: #fff;
        animation: fadeIn 2s ease-in-out;
    }
    
    .welcome h1 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 20px;
        animation: textPopUp 1.5s ease forwards;
    }
    
    .welcome .brand {
        color: #FF4081; /* Color llamativo para el nombre de la marca */
    }
    
    .welcome p {
        font-size: 1.2em;
        color: #555;
        margin-top: 10px;
        animation: textFade 2s ease forwards;
    }
    
    /* Sección de Experiencia */
    .experience {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 60px 20px;
        background-color: #f8f9fa;
        animation: fadeInUp 1s ease-in-out;
    }
    
    .experience-item {
        width: 45%;
        text-align: center;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 1s ease-in-out;
    }
    
    .experience-item.left {
        margin-right: 10px;
    }
    
    .experience-item.right {
        margin-left: 10px;
    }
    
    .experience-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
        animation: slideIn 1s ease-in-out;
    }
    
    .experience-text h2 {
        font-size: 2em;
        color: #333;
        margin-bottom: 10px;
    }
    
    .experience-text p {
        font-size: 1.1em;
        color: #555;
        margin-bottom: 10px;
    }
    
 /* Estilos generales para la sección de reseñas */
.reviews-slider {
    padding: 50px 0;
    background-color: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

/* Contenedor de las reseñas */
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Estilos de las tarjetas de reseñas */
.review-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

/* Imagen de la reseña */
.review-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Estilos del contenido de la reseña */
.review-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700; /* Color dorado para las estrellas */
    margin-bottom: 15px;
}

.review-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Iconos de acción */
.review-actions {
    display: flex;
    gap: 15px;
}

.like-icon, .heart-icon {
    color: #FF4081;
    font-size: 20px;
    cursor: pointer;
}

.like-icon:hover, .heart-icon:hover {
    color: #FF75A0;
}

/* Media Queries para hacer la sección responsive */
@media (max-width: 1200px) {
    .review-card {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .review-card {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .review-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .review-content h3 {
        font-size: 20px;
    }

    .review-content p {
        font-size: 14px;
    }
}


/*-------------------------------------------------------------*/

/* Estilo para la nueva sección con la imagen de fondo */
.background-section {
    position: relative;
    width: 100%;
    height: 200px; /* Ajusta la altura según sea necesario */
    background: rgba(0, 0, 0, 0.75); /* Fondo negro con opacidad */
    overflow: hidden;
    margin-top: 20px;
}

/* Estilo para la imagen de fondo */
.background-image {
    width: 100%;
    height: 100%;
    background: url('../IMG/flexvox.webp') no-repeat center center fixed;
    background-size: cover; /* Asegura que la imagen cubra el área del contenedor */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo para el texto dentro de la imagen de fondo */
.background-image .text {
    color: white;
    text-align: center;
    font-size: 54px; /* Ajusta el tamaño de la fuente según sea necesario */
}

.background-image .text .cris {
    color: black; /* Color negro para la palabra 'Cris' */
    font-weight: bold;
}

.background-image .text .booth {
    color: #FF4081; /* Rosa neón para la palabra 'Booth' */
    font-weight: bold;
}

/* Media Queries para la responsividad */

/* Dispositivos pequeños (smartphones en orientación vertical) */
@media (max-width: 480px) {
    .review p {
        font-size: 14px;
    }

    .review h4 {
        font-size: 12px;
    }

    button {
        padding: 6px;
    }

    .background-image .text {
        font-size: 28px; /* Ajusta el tamaño del texto en móviles */
    }

    .background-section {
        height: 150px; /* Ajusta la altura de la imagen en móviles */
    }
}

/* Tablets (pantallas medianas) */
@media (max-width: 768px) {
    .review p {
        font-size: 16px;
    }

    button {
        padding: 8px;
    }

    .background-image .text {
        font-size: 36px; /* Ajusta el tamaño del texto en tablets */
    }

    .background-section {
        height: 180px; /* Ajusta la altura de la imagen en tablets */
    }
}

/* Laptops y pantallas grandes */
@media (min-width: 1024px) {
    .background-image .text {
        font-size: 54px; /* Tamaño original del texto en pantallas grandes */
    }

    .background-section {
        height: 250px; /* Mayor altura en pantallas más grandes */
    }
}

/*----------------------------------------------------------------------------------*/
          
          
            /* Estilos para la galería y la ventana emergente */
            .gallery {
                padding: 140px 20px;
                background-color: #fff;
                text-align: center;
                
            }
    
            .gallery-title {
                font-size: 2em;
                color: #333;
                margin-bottom: 40px;
            }
    
            .gallery-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 10px;
                position: relative;
            }
    
            .gallery-item {
                width: 32%;
                cursor: pointer;
                position: relative;
            }
    
            .gallery-item img, .gallery-item video {
                width: 100%;
                border-radius: 10px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            }
    
            .gallery-item img {
                height: 200px;
                object-fit: cover;
            }
    
            .gallery-item video {
                height: 200px;
                object-fit: cover;
            }
    
            .modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.8);
                justify-content: center;
                align-items: center;
                z-index: 1000;
            }
    
            .modal-content {
                position: relative;
                max-width: 80%;
                max-height: 80%;
            }
    
            .modal-content img, .modal-content video {
                width: 100%;
                height: auto;
                border-radius: 10px;
            }
    
            .modal-close {
                position: absolute;
                top: 10px;
                right: 10px;
                font-size: 2em;
                color: white;
                cursor: pointer;
            }
          
          /* Nueva Sección para Descargar Fotos y Videos */
    .download-section {
        padding: 60px 20px;
        background-color: #f4f4f4;
        text-align: center;
        margin-bottom: 60px; /* Añade margen para el espacio debajo de la galería */
    }
    
    .download-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .download-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .download-content video {
        width: 400px;
        height: auto;
        border-radius: 10px;
    }
    
    .download-description {
        max-width: 500px;
        text-align: left;
    }
    
    .download-description h2 {
        font-size: 1.8em;
        color: #333;
        margin-bottom: 20px;
    }
    
    .download-description p {
        font-size: 1.2em;
        color: #555;
        margin-bottom: 10px;
    }
    
    .download-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2em;
        color: white;
        background-color: #FF4081;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .download-button:hover {
        background-color: #e63946;
        transform: scale(1.05);
    }


    /* puedes imprimir */
    .onsite-gallery {
        background-color: #000;
        color: #FF4081;
        padding: 40px 20px;
        text-align: center;
    }
    
    .onsite-title {
        font-size: 2.5rem;
        color: #FF4081;
        font-weight: bold;
        margin-bottom: 20px;
        padding: 30px;
    }
    
    .onsite-content {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
        padding: 40px;
    }
    
    .onsite-item {
        position: relative;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        border-radius: 10px;
    }
    
    .onsite-item img {
        width: 80%;
        height: 80%;
        border-radius: 10px;
    }
    
    .onsite-text {
        max-width: 400px;
        text-align: left;
        font-size: 1.1rem;
    }
    
    .cotizar-btn {
        background-color: #e74c3c;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.2rem;
        align-items: center;
    }
    
    .cotizar-btn:hover {
        background-color: #c0392b;
    }
    
   /* staff */

 /* Espacio entre secciones */
section {
    margin-bottom: 50px; /* Ajusta este valor según el espacio deseado */
}

/* Estilos para la sección Staff */
.staff-gallery {
    background-color: #000; /* Cambia el color de fondo */
    padding: 50px 20px;
    text-align: center;
   
   
}

.staff-title {
    font-size: 2.5rem;
    color: #FF4081; /* Texto más claro para contrastar con el fondo oscuro */
    font-weight: bold;
    margin-bottom: 30px;
}

.staff-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.staff-item {
    position: relative;
    width: 300px;
    transition: transform 0.3s ease;
}

.staff-item:hover {
    transform: scale(1.05);
}

.staff-item img {
    width: 130px;
    height: 80;
    height: auto;
    border-radius: 100px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.staff-description {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.staff-item:hover .staff-description {
    opacity: 1;
    transform: translateY(0);
}

.staff-description h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #FF4081;
}

.staff-description p {
    margin: 0;
    color: #777;
    font-size: 1rem;
}


    
    /* Sección de Contáctanos */
 /* Sección de Contáctanos */
.contact-us {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    justify-content: space-between;
    gap: 20px;
}

.map {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

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

.contact-details {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 10px;
    color: #FF4081;
}

/* Media Queries para hacer la sección responsiva */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .map iframe {
        width: 100%; /* Asegura que el mapa use el 100% del ancho disponible en pantallas pequeñas */
        height: 300px; /* Reduce la altura para pantallas más pequeñas */
    }

    .contact-info {
        text-align: center; /* Centra el texto en pantallas pequeñas */
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.5em; /* Ajusta el tamaño de la fuente en pantallas muy pequeñas */
    }

    .contact-details {
        font-size: 1em; /* Ajusta el tamaño del texto de los detalles de contacto */
    }

    .map iframe {
        height: 200px; /* Reduce aún más la altura del mapa en pantallas pequeñas */
    }
}

    

    #scrollTopBtn {
        display: none; /* Se oculta por defecto */
        position: fixed; /* Fijo en la pantalla */
        width: 70px;
        height: 70px;
        bottom: 20px; /* Ubicado a 20px del fondo de la ventana */
        right: 30px; /* Ubicado a 30px de la derecha */
        z-index: 99; /* Asegura que esté por encima de otros elementos */
        font-size: 25px; /* Tamaño del texto del botón */
        background-color: #000; /* Color de fondo */
        color: white; /* Color del texto */
        border: none; /* Sin bordes */
        outline: none; /* Sin contorno */
        cursor: pointer; /* Cursor de mano */
        padding: 23px; /* Espaciado interno */
        border-radius: 100px; /* Bordes redondeados */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra del botón */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave en hover */
    }
    
    #scrollTopBtn:hover {
        background-color: #ff00ff; /* Cambia el color de fondo al hacer hover */
        transform: scale(1.1); /* Efecto de zoom en hover */
    }


    
    /* Estilo para el botón flotante */
/* Estilo para el botón flotante de Facebook */
.facebook-button {
    position: fixed;
    bottom: 75px; /* Ajusta la distancia desde la parte inferior, más alto que el de WhatsApp */
    left: 20px;  /* Ajusta la distancia desde el lado izquierdo */
    z-index: 1000; /* Asegura que el botón esté siempre visible */
    width: 60px; /* Tamaño del botón */
    height: 60px;
    background-color: #4267B2; /* Color de fondo de Facebook */
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra para darle efecto flotante */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Espacio entre los botones */
  }
  
  .facebook-button img {
    width: 100%; /* Ajusta el icono al tamaño del contenedor */
    height: auto;

      
  }
  
  /* Estilo para el botón flotante de WhatsApp */
  .whatsapp-button {
    position: fixed;
    bottom: 20px; /* Ajusta la distancia desde la parte inferior */
    left: 20px;  /* Ajusta la distancia desde el lado izquierdo */
    z-index: 1000; /* Asegura que el botón esté siempre visible */
    width: 60px; /* Tamaño del botón */
    height: 60px;
    background-color: #25d366; /* Color de fondo de WhatsApp */
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra para darle efecto flotante */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-button img {
    width: 100%; /* Ajusta el icono al tamaño del contenedor */
    height: auto;
  }
  
  

  

    /* Estilos para el pie de página animado */
    #footer {
        padding: 20px;
        background-color: #333;
        color: white;
        text-align: center;
        position: relative;
        animation: footerSlideIn 1s ease-in-out;
    }
    
    #footer a {
        color: #FF4081;
        text-decoration: none;
    }
    
    #footer a:hover {
        text-decoration: underline;
    }
    
    @keyframes footerSlideIn {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    /* Redes Sociales en el Footer */
    .social-media {
        margin: 20px 0;
    }
    
    .social-media a {
        color: white;
        font-size: 1.5em;
        margin: 0 10px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .social-media a:hover {
        color: #FF4081;
    }
    
