* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1C3A73, #A8A9AD, #FFFFFF);
    padding: 20px;
}

.logo {
    width: 150px;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: black;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav_carrito_btn {
    background-color: #ffcb05;
    color: #1C3A73 !important; 
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.nav_carrito_btn:hover {
    background-color: #e5b604;
    color: #1C3A73 !important;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

main {
    flex: 1; /* Empuja el footer hacia abajo si hay poco contenido */
}

footer {
    background: #1C3A73;
    padding: 20px 40px;
    color: #FFFFFF;
    margin-top: auto; /* Se asegura de anclarse abajo */
}
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 200px;
    }

    nav ul {
        display: block;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}

section {
    margin: 100px 25px;
}

.contenedor_limite {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(90deg, #1C3A73, #A8A9AD, #FFFFFF);
    border-radius: 20px;
}

.contenedor_padre {
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
}

.card {
    width: 200px;
    margin: 10px;
    border: 1px solid whitesmoke;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card_btn {
    width: 70px;
    margin-top: 5px;
    background: linear-gradient(90deg, #1C3A73, #A8A9AD, #FFFFFF);
    border-radius: 5px;
}

.carrito-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin: 10px 5px;
    width: 300px;
    height: 90%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 25px;
}

.carrito-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.carrito-content h2 {
    margin-top: 10px;
}

.carrito-content button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 5px;
}

.li_carrito {
    margin-right: 15px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn_carrito {
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1C3A73, #A8A9AD, #FFFFFF);
}

.carritoItems {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 20px;
}

.padre_carritoItems {
    height: 100%;
    display: flex;
    padding: 20px;
}



.padre_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
