body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    
}

    .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('IMG/pexels-it-s-mj-1143455268-20955079.jpg'); /* reemplazá con tu imagen */
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.6);
    }


    @media (max-width: 600px) {
    body {
    background-image: url('');
    background-size: cover;
    background-position: center;
    }
    }

/* El resto de tu CSS sigue igual, pero asegúrate de que el contenedor principal
   ocupe la pantalla para centrar el contenido. */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ocupa toda la altura de la pantalla */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4); /* Fondo semitransparente para legibilidad */
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    position: relative;
    z-index: 1;
}

.logo-section {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 600px;
    height: auto;
    margin-bottom: 20px;
     filter: drop-shadow(0 0 3px #00000065); /* resalta el contorno amarillo si lo tiene */
}

    .title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 29px;
    color: white;
    margin-bottom: 20px;
    margin-left: 35px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.397);
    }

    @media (max-width: 600px) {
    .title {
        font-size: 3.2em;
        letter-spacing: 10px;
        margin-left: 10px;
    }
    } 

.social-icons {
    margin-top: 15px;
}

.social-icon {
    color: rgb(255, 255, 255);
    font-size: 1.8em;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff42;
}

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px; /* Limita el ancho de los botones */
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn i {
    margin-right: 10px;
    font-size: 1.3em;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* Media Queries para Responsividad */
@media (max-width: 600px) {
    .title {
        font-size: 2.5em;
    }
    .logo {
        width: 300px;
    }
}

    .product-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
    }

    .product {
    background-color: rgba(0, 0, 0, 0.664);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
    height: auto;
    }

    .product img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    }

    .product h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6em;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    }

    
    @media (max-width: 600px) {
    .product {
    box-shadow: none;
    }
    }

    .btn i {
    margin-right: 10px;
    font-size: 1.3em;
    }

    /* Colores institucionales */
    .btn i.fa-whatsapp {
    color: #25D366; /* verde WhatsApp */
    }

    .btn i.fa-facebook-f {
    color: #1877F2; /* azul Facebook */
    }

    .btn i.fa-instagram {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }   
    }

    .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.315);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px; /* margen interno para evitar que toque los bordes */
    box-sizing: border-box;
    }

    .popup-box {
    background: #030303;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px; /* 🔒 límite de ancho para celular */
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    }

    .popup-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    }

    .popup-subtitle {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

    .popup-text {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
    }

    .popup-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    }

    .btn-decline, .btn-accept {
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .btn-decline {
    background-color: #d32f2f;
    color: rgb(0, 0, 0);
    }

    .btn-decline:hover {
    background-color: #b71c1c;
    }

    .btn-accept {
    background-color: #00ff0d;
    color: rgb(0, 0, 0);
    }

    .btn-accept:hover {
    background-color: #333;
    }

    body.popup-active {
    overflow: hidden;
    }

    .popup-logo {
    max-width: 200px;
    margin-bottom: 20px;
    }



    .stock-banner {
    background: linear-gradient(135deg, #000000, #01ff01be);
    color: white;
    text-align: center;
    text-justify: inter-word;
    padding: 16px 20px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    }


    @media (max-width: 600px) {
    .stock-banner {
        animation: fadeSlideUp 0.8s ease-out;
    }

    @keyframes fadeSlideUp {
        0% {
        opacity: 0;
        transform: translateY(30px);
        }
        100% {
        opacity: 1;
        transform: translateY(0);
        }
    }
    }

    .product {
    position: relative;
    padding-bottom: 100px;
    }

    .product-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    box-sizing: border-box;
    }

    .product-buy {
    display: inline-block;
    font-size: clamp(1em, 4vw, 1.3em);
    padding: 15px 12px;
    font-family: 'Archivo Black', sans-serif;
    background: linear-gradient(135deg, #000000, #0d5e025b);
    color: #ffffff;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    }

    .product-buy:hover {
    background-color: #00ff0d34;
    }


    .price {
    justify-self: start;
    font-size: clamp(1.6em, 5vw, 2em);
    font-family: 'Archivo Black', sans-serif;
    font-weight: bold;
    color: #15ff00;
    background: linear-gradient(135deg, #0c0c0c, #0c5e02);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.897);
    animation: pulsePrice 1.8s ease-in-out infinite;
    transition: transform 0.3s ease;
    }

    @keyframes pulsePrice {
    0% {
        box-shadow: 0 0 12px rgba(0, 255, 21, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(2, 255, 35, 0.336);
    }
    100% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0);
    }
    }


    @media (max-width: 400px) {
    .product-footer {
        display: grid;
        grid-template-columns: minmax(80px, 1fr) minmax(100px, 1fr);
        column-gap: 8px;
        padding: 0 10px;
        bottom: 15px;
    }

    .price-tag {
        font-size: clamp(1.4em, 5vw, 1.8em);
        padding: 6px 10px;
        white-space: nowrap;
    }

    .buy-button {
        font-size: clamp(0.9em, 4vw, 1em);
        padding: 8px 12px;
        white-space: nowrap;
    }
    }






