﻿.body {
    margin: 0;
    padding: 0;
}
.html {
    margin-left: 2%;
    margin-right: 2%;
    scroll-behavior: smooth;
}
.mi-navbar {
    background-color: #343a40;
    color: white;
    padding: 0.5rem 1rem;
}
.mi-container {
    width: 100%;
    margin: 0;
    padding: 0 20px; /* opcional: espacio interno controlado */
    box-sizing: border-box;
}

.mi-collapse {
    display: flex;
    justify-content: space-between; /* Logo a la izquierda, menú a la derecha */
    align-items: center;
}

.logo-nav {
    max-width: 80px;
    height: auto;
}

.mi-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.mi-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s;
}

    .mi-link:hover {
        background-color: #495057;
        border-radius: 4px;
    }


.nav1 {
    margin-top: 5px;
    background-image: url('/Img/fondo-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Texto ocupa la mitad izquierda y se centra verticalmente */
.nav1-texto {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Imágenes alineadas a la derecha y centradas verticalmente */
.nav1-imagenes {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .nav1-imagenes img {
        max-width: 145px;
        height: auto;
        border-radius: 7px;
    }

    .nav1-texto h1 {
        margin: 0;
        font-size: 2rem;
        text-align:center;
    }

    .nav1-texto p {
        margin-top: 10px;
        font-size: 1rem;
        text-align:center;
    }

/*ROPA Hombres*/
.div-RH {
    margin-top: 7px;
    padding: 20px;
    background-color: #f5f5f5;
}

    .div-RH h1 {
        font-size: 20px;
        color: #333;
    }

.div-RH-ropa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
}

.producto {
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .producto img {
        max-width: 200px;
    }

    .producto p {
        font-size: 14px;
        color: #444;
        margin-top:0px;
    }

    .producto a {
        display: inline-block;
        padding: 6px 12px;
        background-color: #333;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        font-size: 13px;
        transition: background-color 0.3s;
    }

        .producto a:hover {
            background-color: #555;
        }



/*ROPA Mujeres*/
.div-RM {
    margin-top: 7px;
    padding: 20px;
    background-color: #f5f5f5;
}

    .div-RM h2 {
        font-size: 20px;
        color: #333;
    }



.footer {
    background-color: #343a40;
    color: white;
    padding: 30px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-branding {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 13px;
    color: #aaa;
}