html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #423f3f;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main, .container {
    flex: 1;
    margin-bottom: 60px; /* Ajusta el valor según el espacio que desees */
}

.container {
    padding: 50px;
    margin-bottom: 60px; /* Ajusta el valor según el espacio que desees */
}

.section {
    background: rgba(59, 58, 63, 0.773);
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
}

.header {
    background: linear-gradient(135deg, rgb(86, 3, 118) 0%, #423f3f 100%);
    padding: 20px 0;      /* Más espacio arriba y abajo */
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white; 
    text-align: center; 
}

.nav {
    /* background-color: rgba(200, 229, 213, 0.073); */ /* Elimina o comenta esta línea */
    padding: 4px 0; /* Antes 10px, ahora más delgado */
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav li {
    margin: 0 10px;
}

.nav a {
    background-color:transparent; /* Fondo blanco semitransparente */
    border-radius: 10px;
    text-decoration: none;
    color: rgb(254, 254, 254);
    font-weight: bold;
    padding: 4px 20px; /* Más ancho, pero delgado verticalmente */
    font-size: 1em;
    border: 1px solid rgba(255,255,255,0.3); /* Borde suave */
     box-shadow:0 0 3px #ffffff;
        border-radius: 15px;
        transition: .3s;
}

.nav a:hover {
    border-radius: 34px;
    background-color:rgb(0, 246, 251);
    color: #ffffff;
    box-shadow: 0 0 5px #94c0de, 0 0 25px #0094ff, 0 0 50px #0094ff, 0 0 200px #3a6e94;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
    
}

.logo-nombre {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
}

.logo-nombre > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}


@keyframes brillo-lema {
    from {
        text-shadow:
            0 0 4px #00ffff,
            0 0 8px #00ffff,
            0 0 12px #00ffff;
    }
    to {
        text-shadow:
            0 0 16px #00ffff,
            0 0 32px #00ffff,
            0 0 48px #00ffff;
    }
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.logo-nombre h1 {
    font-size: 2em;
    margin-bottom: 0;
    margin-top: 0;
}

.footer p {
    text-align: left;
    color: #ffffff;
    font-size: 0.9em;
    margin: 10px 0;
}

.footer {
    position: relative;
    width: 100%;
    background: #000000;
    min-height: 100px;
    padding: 100px 0 0.1px 0;
    padding-top: 40px; /* Ajusta el valor según lo que necesites */
}

.footer .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 10px;
    padding-right: 30px; /* Opcional: separa de la orilla */
    list-style: none;

}
.footer .social-icons li {
   list-style: none;

}

.footer .social-icons li a {
    background-color:transparent; /* Fondo blanco semitransparente */
    border-radius: 10px;
    color:#ffffff;
    font-size: 2em;
    margin: 0 10px;
    display: inline-block;
    border: 3px solid rgba(255,255,255,0.3);
    transition: 0.5s;

}

.footer .social-icons li a:hover{
    scale: 1.2;
    border-radius: 30px;
    background-color:rgb(0, 246, 251);
    color: #ffffff;
    box-shadow: 0 0 5px #94c0de, 0 0 25px #0094ff, 0 0 50px #0094ff, 0 0 200px #3a6e94;
    -webkit-box-reflect: below 0.5px linear-gradient(transparent, #0005);
}

.footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background:  url(img/wave.png);
    background-size: 1000px 100px;
}

.footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

.footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}
.footer .wave#wave3 {
    z-index: 998;
    opacity: 0.3;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}
.footer .wave#wave4 {
    z-index: 997;
    opacity: 0.1;
    bottom: 30px;
    animation: animateWave_02 2s linear infinite;
}

@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
}

/* Oculta el checkbox y el label por defecto */
.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* Estilos para el menú hamburguesa en pantallas pequeñas */
@media (max-width: 900px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background:  #bfbdbd93;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 180px;
        border-radius: 8px;
        z-index: 100;
        padding: 10px 0;
        gap: 20px;
    }
    .nav-toggle:checked + .nav-toggle-label + ul {
        display: flex;
    }
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        width: 32px;
        height: 32px;
        margin-left: auto;
        margin-right: 10px;
        z-index: 101;
    }
    .nav-toggle-label span {
        display: block;
        height: 4px;
        width: 100%;
        background: #00ffff;
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-toggle-label span {
        transition: 0.3s;
    }
    /* Cuando el menú está abierto */
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav {
        position: relative;
    }
    .nav-toggle-label .icon-close {
    display: none;
}
.nav-toggle:checked + .nav-toggle-label .icon-menu {
    display: none;
}
.nav-toggle:checked + .nav-toggle-label .icon-close {
    display: inline;
}
.nav-toggle-label img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, filter 0.2s;
    pointer-events: auto;
}

.nav-toggle-label img:hover,
.nav-toggle-label img:active {
    transform: scale(1.15);
    filter: brightness(1.7) contrast(1.2);
}

.nav-toggle-label .icon-close {
    transition: transform 0.2s, filter 0.2s;
}

.nav-toggle-label .icon-close:hover,
.nav-toggle-label .icon-close:active {
    transform: scale(1.18);
    filter: brightness(2.2) saturate(2) drop-shadow(0 0 12px #00ffff);
}

.nav-toggle:checked + .nav-toggle-label .icon-close:hover,
.nav-toggle:checked + .nav-toggle-label .icon-close:active {
    transform: scale(1.18);
    filter: brightness(2.2) saturate(2) drop-shadow(0 0 12px #00ffff);
}
}



.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #000000; /* Fondo negro */
}

.product-card {
    background: linear-gradient(135deg, #4a154b 0%, #2d0b2e 100%); /* Gradiente morado */
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.product {
    text-align: center;
    color: #ffffff; /* Texto blanco para contraste */
}

.product h1 {
    color: #e0c3e8; /* Morado claro */
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #000000;
    margin-bottom: 15px;
}

.product p {
    color: #d8bfd8; /* Morado pastel */
    margin: 10px 0;
    font-size: 1.1em;
}

.product p:last-child {
    color: #ffffff; /* Blanco para el precio */
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 1px 1px 2px #000;
}