/* ==============================
   IMPORTACIÓN DE FUENTES
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');


/* ==============================
   FUENTES DISPONIBLES PARA USAR
   font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
   ============================== */




/* ==============================
   RESETEO DE ESTILOS BÁSICOS
   ============================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}




/* ==============================
   ESTILOS GENERALES DEL BODY
   ============================== */
body{
    font-family: 'poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

img{
    max-width: 100%;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}


/* ==============================
   ENCABEZADO (HEADER)
   ============================== */
.header{
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}


/* ==============================
   MENÚ PRINCIPAL / NAVEGACIÓN
   ============================== */
.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}


.menu .navbar ul li {
    position: relative;
    float: left;
}

/* Estilos para el submenú */
.menu .navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu .navbar ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .navbar ul li ul li {
    float: none;
    width: 100%;
}

.menu .navbar ul li ul li a {
    padding: 15px 20px;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin: 5px;
    background: transparent;
    transition: all 0.3s ease;
}

.menu .navbar ul li ul li a:hover {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #FFFFFF;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(17, 17, 17, 0.3);
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #111111;
    display: block;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 5px;
}

/* Efecto hover para los enlaces del menú */
.menu .navbar ul li a:hover {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.3);
}

/* Efecto de subrayado animado */
.menu .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #333333);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu .navbar ul li a:hover::after {
    width: 80%;
}

/* Estilo especial para el botón de login */
.menu .navbar ul li a[href="./login/login.html"] {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #FFFFFF;
    border-radius: 25px;
    padding: 12px 25px;
    margin: 8px 5px;
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.3);
    transition: all 0.3s ease;
}

.menu .navbar ul li a[href="./login/login.html"]:hover {
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.4);
}

.menu .navbar ul li a[href="./login/login.html"]::after {
    display: none;
}

.btn-circular {
    /* Ya existentes: */
    padding: 2px 8px;
    background-color: #FFFFFF;
    color: #111111;
    border: 1.2px solid #111111;
    border-radius: 999px;
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;


    /* 🆕 NUEVO: separación lateral */
    margin: 6px 5px;  /* 6px arriba/abajo y 5px a los lados */
}


.menu .navbar ul li {
    margin-top: 8px;  /* Espacio superior solo para los botones */
}


#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.submenu{
    position: relative;
}

/* Quitar fondo negro del contenedor del carrito */
.menu > div > ul {
    background: transparent !important;
}




.whatsapp-chat {
  background-color: #25D366; /* Verde WhatsApp */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  position: relative; /* Para posicionar la 'X' */
  width: 300px; /* Ajusta el ancho según sea necesario */
}

/* ==============================
   ESTILO DEL CARRITO DESPLEGABLE
   ============================== */
.submenu #carrito{
    display: none;
}

.submenu:hover #carrito{
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter:  blur(10px);
    top: 100;
    z-index: 1;
    background-color: #4e4b5076;
    padding: 20px;
    min-width: 400px;
}

table{
    width: 100px;
}

th, td{
    color: #FFFFFF;
}

.borrar{
    background-color: #111111;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 800px;
    color: pointer;
}

.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 200px;
}

.header-img{
    flex-basis: 50%;
    text-align: center;
}

.header-txt{
    flex-basis: 50%;
    text-align: center;
}

.header-txt h1{
    font-size: 90px;
    text-transform: uppercase;
    line-height: 1;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.header-txt p{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-1{
    display: none;
    padding: 11px 25px;
    background-color: #111111;
    color: #FFFFFF;
    border-radius: 5px;
}

.ofert{
    padding: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.ofert-1{
    display: flex;
    align-items: center;
    flex-basis: calc(33.3% - 15px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ofert-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #333333, #111111);
    border-radius: 15px 15px 0 0;
}

.ofert-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ofert-img{
    flex-basis: 50%;
    margin-right: 15px;  
}

.ofert-img img{
    width: 250px;
}

.ofert-txt{
    flex-basis: 50%;
    text-align: center;
}

.ofert-txt h3{
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-2{
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-2:hover::before {
    left: 100%;
}

.btn-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.4);
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
}


/* ==============================
   SECCIÓN DE PRODUCTOS
   ============================== */
.products{
    padding: 50px 0;
    text-align: center;
}

.products h2{
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.product-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.product{
    text-align: center;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #333333, #111111);
    border-radius: 15px 15px 0 0;
}

.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0, 0.15);
}

.product img{
    width: 250px;
    height: 370px;
    margin-bottom: 20px;
}
.product h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product p, .precio{
    font-size: 16px;
    color: #111111;
    margin-bottom: 15px;
}

.precio{
    font-weight: 800;
}


/* ==============================
   SECCIÓN DE ÍCONOS / VENTAJAS
   ============================== */
.icons{
    padding: 50px 0 100px 0;
    display: flex;
    justify-content: space-between;
}

.icon-1{
    flex-basis: calc(33.3% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color:#F5F5F5;
}

.icon-txt h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.icon-txt p{
    font-size: 16px;
    color: #111111;
    text-align: center;
}


/* ==============================
   SECCIÓN DE BLOG
   ============================== */
.blog{
    display: flex;
    justify-content: space-between;
    padding: 100px;
}

.blog-1{
    flex-basis: calc(33.3% - 30px);
}

.blog-1 img{
    margin-bottom: 20px;
}
.blog-1 h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.blog-1 p{
    font-size: 16px;
    color: #111111;
    text-align: center;
}
.blog-1 a{
    font-size: 16;
    color: #111111;
    text-align: center;
}

/* Estilo específico para el botón de videos */
.blog-1 a.btn-2 {
    color: #FFFFFF !important;
    background-color: #111111 !important;
    padding: 7px 10px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 15px !important;
}




/* ==============================
   PIE DE PÁGINA (FOOTER)
   ============================== */
.footer{
    padding: 50px 0;
    background-color: #111111;
}

.footer-content{
    display: flex;
    justify-content: space-between;
}

.link h3{
    font-size: 18px;
    color: #FFFFFF;
    font-family: 'Oswald', sans serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.link a{
    font-size: 16px;
    color: #DCDCDC;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

/* Estilo para la caja de comentarios */
.comentarios-box {
    border: 2px solid #FFFFFF; /* Borde blanco */
    padding: 20px;
    background-color: #f9f9f9; /* Fondo gris claro para contraste */
    margin-top: 20px;
    border-radius: 8px; /* Bordes redondeados */
}

.comentarios-box h3 {
    font-size: 24px;
    color: #111111;
    margin-bottom: 10px;
}

.comentarios-box p {
    font-size: 16px;
    color: #111111;
    margin-bottom: 15px;
    text-align: center;
}

.comentarios-box textarea {
    width: 100%; /* Hacer que el textarea ocupe todo el ancho disponible */
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ddd; /* Borde sutil */
    resize: vertical; /* Permitir cambiar el tamaño verticalmente */
    font-size: 16px;
    margin-bottom: 15px;
}

.comentarios-box button {
    background-color: #111111;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.comentarios-box button:hover {
    background-color: #444444;
}


@media (max-width:991px){
    .menu{
        padding: 20px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #181818;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    .menu .navbar ul li a{
        color: #FFFFFF;
    }

    #menu:checked ~ .navbar{
        display: initial;
    }

    .logo{
        display: none;
    }

    .submenu:hover #carrito{
        min-width: 100%;
    }

    .header{
        min-height: 0vh;
    }
    
    .header-content{
        padding: 50px 0;
        flex-direction: column;
    }

    .header-img{
        display: none;}

    .header-txt{
        flex-basis: 100%;
        text-align: center;
    }   

    .header-txt h1{
        font-size: 70px;
    }

    .ofert{
        padding: 30px 30px 0 30px;
        flex-direction: column;
    }

    .ofert-1{
        margin-bottom: 30px;
    }

    .products{
        padding: 0 30px 30px 30px;
    }

    .products h2{
        margin-bottom: 30px;
    }

    .product-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .product img{
        width: 200px;
        height: 280px;
    }

    .icons{
        padding: 30px;
        flex-direction: column;
    }

    .icon-1{
        margin-bottom: 30px;
    }

    .blog{
        padding: 0 30px 30px 30px;
        flex-direction: column;
    }

    .blog-1{
        margin-bottom: 30px;
    }

    .footer{
        padding: 30px;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }

        .btn-circular {
        background-color: transparent !important;
        color: #FFFFFF !important;
        border: 1px solid #FFFFFF !important;
        font-size: 11px;
        padding: 5px 10px;
        margin: 8px 0;
        display: block;
        text-align: center;
    }

}

/* ==============================
   ESTILOS DEL MODAL DE COMPROBANTE
   ============================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
}

.close-modal {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    line-height: 1;
}

.close-modal:hover {
    color: #ccc;
}

.modal-body {
    padding: 40px;
}

.payment-method {
    margin-bottom: 25px;
}

.payment-method label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111111;
    font-size: 16px;
}

.payment-method select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
}

.payment-method select:focus {
    outline: none;
    border-color: #111111;
}

#payment-image-container {
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

#payment-image-container img {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #111111;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease-in-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.upload-area {
    margin-bottom: 25px;
    text-align: center;
}

#file-upload {
    display: none;
}

.upload-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    min-width: 250px;
}

.upload-button:hover {
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.4);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-buttons .button {
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.modal-buttons .regresar-modal {
    background-color: #6c757d;
    color: white;
}

.modal-buttons .regresar-modal:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.modal-buttons .subir {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    color: white;
}

.modal-buttons .subir:hover {
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.4);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .button {
        width: 100%;
    }
}

