:root{
    --colorPrimario:#9600ff;
    --colorSecundario:#f6c5ff;
    --colorComplementario:#ff9000;
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.container{
    background: white;
    max-width: 900px;
    margin: 0 auto;
}
.logo{
    width: 200px;
}

/* MENU */
nav{
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: var(--colorPrimario);
}
nav #navHamb{
    display: none;
    color: var(--colorSecundario);
    padding: 3px;
}
nav #navMenu{
    display: flex;
    justify-content: center;
}
nav #navMenu a{
    color: var(--colorSecundario);
    padding: 10px;
    text-decoration: none;
}

nav a:hover{
    background: var(--colorComplementario);
}
/* FIN MENU */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

.indicator:hover {
    background-color: rgba(255,255,255,0.8);
}

/* Código adicional para autoplay */
.carousel-container:hover .carousel-slide {
    animation-play-state: paused;
}

@keyframes autoSlide {
    0%, 100% { opacity: 0; }
    2%, 32% { opacity: 1; }
    34% { opacity: 0; }
}

.carousel .carousel-slide {
    animation: autoSlide calc(var(--slide-count, 3) * 3s) infinite;
}

.carousel .carousel-slide:nth-child(1) {
    animation-delay: 0s;
}

.carousel .carousel-slide:nth-child(2) {
    animation-delay: 3s;
}

.carousel .carousel-slide:nth-child(3) {
    animation-delay: 6s;
}

.carousel .carousel-slide:nth-child(4) {
    animation-delay: 9s;
}

.slogan{
    color: var(--colorPrimario);
}
img{
    max-width: 100%;    
}
.text-center{
    text-align: center;
}

.gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
}
.gallery div{
    border: 3px solid var(--colorComplementario);
    border-radius: 10px;
    text-align: center;
}
.gallery div img{
    border-radius: 10px;
    
}
.button{
    background-color: #9600ff;
    color: white;
    padding: 10px;   
    border-radius: 10px; 
    text-decoration: none;
}
footer{
    background: black;
    color: var(--colorSecundario);
    padding: 20px;
    width: 75%;           /* Ajusta el ancho total del footer */
    margin: 0 auto;       /* Centra el footer horizontalmente */
    border-radius: 10px;  /* (Opcional) esquinas redondeadas */
}
.title{ 
    color: var(--colorPrimario);
    border-bottom: 2px solid var(--colorSecundario);
}
h2{
    color: var(--colorComplementario);
}

.content{
    padding: 16px;
}

.productos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;    
}
.productos div{
    border: 1px solid var(--colorSecundario);
    border-radius: 7px;
}
.productos div img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.displayMenu{
    display: flex !important;
}
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            color: #e91e63;
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .header p {
            color: #666;
            font-size: 1.1em;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            color: #333;
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        input[type="time"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1em;
            transition: border-color 0.3s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #e91e63;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
        }

        .checkbox-item input[type="checkbox"] {
            width: auto;
            margin-right: 8px;
            cursor: pointer;
        }

        .checkbox-item label {
            margin-bottom: 0;
            font-weight: normal;
            cursor: pointer;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #e91e63, #f06292);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 20px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
        }

        .required {
            color: #e91e63;
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }

            .header h1 {
                font-size: 2em;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }
/* WhatsApp */
.whatsapp {
    color: white;
    background: #25D366;    
    border-radius: 15px;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 15px;
    width: 25px;
    height: 25px;
    padding: 2.5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.whatsapp:hover {
    transform: scale(0.5);
}

/* Facebook */
.facebook {
    color: white;
    background: #1877F2;
    border-radius: 15px;
    display: block;
    position: fixed;
    bottom: 70px;
    right: 15px;
    width: 25px;
    height: 25px;
    padding: 2.5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.facebook:hover {
    transform: scale(0.5);
}

/* YouTube */
.youtube {
    color: white;
    background: #FF0000;
    border-radius: 15px;
    display: block;
    position: fixed;
    bottom: 120px;
    right: 15px;
    width: 25px;
    height: 25px;
    padding: 2.5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.youtube:hover {
    transform: scale(0.5);
}

/* TikTok */
.tiktok {
    color: white;
    background: #000000;
    border-radius: 15px;
    display: block;
    position: fixed;
    bottom: 170px;
    right: 15px;
    width: 25px;
    height: 25px;
    padding: 2.5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tiktok:hover {
    transform: scale(0.5);
}

/* Instagram */
.instagram {
    color: white;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-radius: 15px;
    display: block;
    position: fixed;
    bottom: 220px;
    right: 15px;
    width: 25px;
    height: 25px;
    padding: 2.5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.instagram:hover {
    transform: scale(0.5);
}
@media (max-width:768px) {
    nav{
        justify-content: space-between;
    }
    nav #navHamb{
        display: block;
    }
    nav #navMenu{
        display: none;
        flex-direction: column;
        margin-top: 30px;
        width: 100%;        
    }
    .productos div img{       
        height: 160px;
    }   
    
}

