* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 5em;
}

h2 {
    font-size: 2.7em;
}

h3 {
    font-size: 2em;
}

p {
    font-size: 1.25em;
}

ul {
    list-style: none;
}

.color-acento {
    color: rgb(234, 132, 13);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Garet", sans-serif;
    background-color: rgb(240, 240, 240);
}

button {
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: rgb(219, 123, 13);
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid rgb(219, 123, 13);
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 rgb(219, 123, 13);
}

button:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 rgb(219, 123, 13);
}

button:active {
    transform: scale(0.9);
}

.container {
    max-width: 1400px;
    margin: auto;
}

#map {
    height: 450px;
    width: 100%;

}

/* ---------- HEADER ---------- */

header {
    background-color: rgb(26, 48, 85);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

header .logo {
    margin: 0;
    padding: 25px 30px;
}

header img {
    width: 116.4px;
    height: 61.2px;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header nav {
    flex-direction: row;
    padding-right: 20px;
    padding-top: 50px;
}

header a {
    color: rgb(241, 241, 241);
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;

}

header a:hover {
    color: rgb(234, 132, 13);
}


/* ---------- PRODUCTOS ---------- */

.contenido {
    max-width: 1200px;
    width: 100%;
    padding-top: 175px;
    margin: auto;
    margin-bottom: 100px;
    display: flex;
}

.filtro-card {
    flex: 1;
    max-width: 270px;
    padding: 20px;
    background-color: #f98d00;
    text-align: left;
}

.filtro-naranja {
    background-color: #ffa54c;
    padding: 20px;
    border-radius: 10px;
}

.filtro-naranja h3 {
    margin: 0;
    color: #fff;
}

.filtro-naranja ul {
    list-style: none;
    padding-top: 20px;
}

.filtro-naranja li {
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    margin: 10px 0;
    transition: color 0.3s;
    text-indent: 20px;
}

.filtro-naranja li:hover {
    color: #ff5e00;
}

.mostrador {
    flex: 2;
    padding: 20px;
    background-color: #fff;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fila {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.item {
    max-width: 210px;
    margin: 0 10px 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
    background-color: #f9f9f9;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    animation-duration: 0.5s;
}

.item img {
    width: 100%;
    margin: 30px 0;
}

.item .nombreproducto {
    color: #707070;
    font-weight: bold;
}

.item .descripcion {
    color: #000000;
    font-weight: light;
}

.item .precio {
    color: #ff5e00;
    font-weight: bold;
    font-size: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Cambia el color y el peso del texto para la clase tipo-destacado */
.tipo-destacado {
    color: #ff5e00;
    /* Cambia el color al que desees */
    font-weight: bold;
}



/* Clase CSS adicional para mostrar la ventana modal con animación de entrada */
.modal.open {
    display: flex;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

/* Aplicamos la transición de opacidad a la ventana modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
}

/* Elimina la transformación y define el tamaño de la ventana modal */
.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

/* Ajusta el tamaño de la imagen dentro de la ventana modal */
.modal-content img {
    max-width: 250px;
    max-height: 250px;
    margin: auto;
    display: block;
}



/* ---------- BOTON DE WHATSAPP ---------- */

.container-wsboton {
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 3;
    border-radius: 100%;
    bottom: 30px;
    right: 30px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-wsboton:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.wsboton {
    width: 65px;
    transition: ease 1s;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }

    100% {
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}



/* ---------- FOOTER ---------- */

.pie-pagina {
    width: 100%;
    background-color: rgb(26, 48, 85);
}

.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box figure img {
    width: 250px;
}

.pie-pagina .grupo-1 .box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p {
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: 054164;
    text-align: center;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
    color: #f98d00;
}

.pie-pagina .grupo-2 {
    background-color: rgb(21, 39, 70);
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}

.pie-pagina .grupo-2 small {
    font-size: 15px;
}

@media screen and (max-width:800px) {
    .pie-pagina .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
}

/* ---------- CONFIGURACIÓN MODO PANTALLA COMPLETA (MONITOR) ---------- */

@media (max-width: 720px) {



    /* ---------- HEADER ---------- */

    header {
        position: relative;
        transition: none;
        justify-content: flex-start;
        width: auto;
    }

    header .logo {
        transition: none;
        justify-content: flex-start;
        width: auto;
    }

    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav {
        flex-direction: column;
        text-align: center;
        padding-bottom: 25px;
        padding-top: 5px;
    }



    /* ---------- BOTON DE WHATSAPP ---------- */

    .wsboton {
        width: 45px;
    }



    /* ---------- PRODUCTOS ---------- */

    .contenido {
        display: block;
        padding-top: 100px;
        max-width: 720px;
    }

    .filtro-card {
        flex-direction: row;
        align-items: center;
        max-width: none;
        padding: none;
        text-align: center;
    }

    .filtro-naranja ul {
        margin: 25px;
        padding-top: 0;
    }

    .filtro-naranja li {
        display: inline-block;
        /* O usa "inline-block" para más control de espaciado */
        margin-right: 10px;
        margin-top: 10px;
    }

}