:root {
    --fuenteTit: 'PT Sans', sans-serif;
    --fuentePar: 'Open Sand', sans-serif;
    --slogP: "Gupter", serif;
    --slogP2: "Playwrite DK Loopet";
    --sec: #00144d;
    --sec2: #002999;
    --secC: #528ab8;
    --neon: #6ef5fa;
    --blan: #fff;
    --neg: #000;
    --mate: #292929;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: var(--fuentePar);
    font-size: 1.6rem;
    line-height: 2;
    background-image: linear-gradient(to top, var(--neg) 0%, var(--mate) 100%);
}

/*global*/
.contenedor {
    width: min(100%, 120rem);
    margin: 0 auto;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--fuenteTit);
    line-height: 1.2;
    color: var(--blan);
    margin: 0;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 4rem;
    font-family: var(--slogP2);
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.8rem;
}

p {
    color: var(--blan);
}

img {
    width: 100%;
}

/*utilidades*/
.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.centrar-text {
    text-align: center;
}

.centro {
    text-align: center;
}

/*Parte de la barra de navegacion*/
@media(max-width: 768px) {
    .slogan {
        font-size: 1.2rem;
        font-family: var(--slogP);
        background-color: var(--neg);
        margin-top: -1.1rem;
    }
}

.slogan {
    font-size: 2.2rem;
    font-family: var(--slogP);
}

.header {
    background-color: var(--neg);
}

@media(min-width: 768px) {
    .barra {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 1.5rem;
        padding-top: 3rem;
    }
}

@media(min-width: 768px) {
    .logo {
        height: 15rem;
        width: 100%;
        border-radius: 50%;
    }
}

@media(min-width: 768px) {
    .navegacion {
        display: flex;
        gap: 2rem;
    }
}

.navegacion__enlace {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    color: var(--blan);
}

.navegacion a:hover {
    background-color: var(--secC);
    border-radius: 1rem;
    cursor: pointer;
}

.webp .imagen {
    background-image: url(../src/1.webp);
}

.no-webp .imagen {
    background-image: url(../src/1.jpeg);
}

.imagen {
    height: 70rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.webp .imagen2 {
    background-image: url(../src/2.webp);
}

.no-webp .imagen2 {
    background-image: url(../src/2.jpeg);
}

.imagen2 {
    height: 70rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.webp .imagen3 {
    background-image: url(../src/3.webp);
}

.no-webp .imagen3 {
    background-image: url(../src/3.jpeg);
}

.imagen3 {
    height: 70rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.imagen__texto {
    text-align: center;
    font-weight: normal;
}

.cursiva {
    font-style: italic;
}

.ver p {
    font-size: 2.2rem;
    font-weight: normal;
    background-color: var(--sec);
    border-radius: 1rem;
    cursor: pointer;
    width: 15rem;
    text-transform: uppercase;
    margin: -3rem;

}

.ver p:hover {
    background-color: var(--secC);
}

.boton-centro {
    display: grid;
    place-items: center;
    margin-top: 40rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media(min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.cuadro {
    background-color: var(--mate);
    padding: 1rem;
    border-radius: .5rem;
}
.flotante{
    position: fixed;
    transform: rotate(90deg);
    width: 15rem;
    height: 4rem;
    bottom: 10rem;
    right: -5rem;
    background-color: var(--neg);
    border-radius: 5%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.3s;
}
.flotante:hover{
    background-color:var(--sec);
    transform: rotate(90deg) scale(1.1);
}
.hidden {
    opacity: 0;
}
@media(min-width: 768px) {
    .flotante{
        position: fixed;
         opacity: 1; 
         bottom: 30rem;
    } }

    @media(max-width: 767px) {
        .menu-container {
        position: relative;}
     }
    
    @media(max-width: 767px) {
        .menu-toggle{
            position: absolute;
            top: 1rem;
            right: 1rem;
            cursor: pointer;
            z-index: 1000;
            padding: 0 3rem;
        } }
    @media(max-width: 767px) {
        .menu-toggle .bar{
            display: block;
            width: 3rem;
            height: 3px;
            background-color: var(--blan);
            margin: 5px 0;
        } }
    @media(max-width: 767px) {
        .side-menu{
            position: relative;
            top: 0;
            left: -300px; 
            width: 250px;
            background-color: var(--mate);
            color: var(--blan);
            transition: right 0.3s ease;
            z-index: 999;
            padding: 10px;
        } }
    @media(max-width: 767px) {
        .side-menu.open{
            left: 0; /* Muestra el menú */
        top: 25%;
        width: 100%;
        } }
/*Parte menú*/
.parrafoMenu {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.parrafoMenu.visible {
    opacity: 1;
}

.separador {
    line-height: 1;
}

.espacio {
    padding: 0 1.5rem;
}

.webp .fondo-entrada {
    background-image: url(../src/5.webp);
}

.no-webp .fondo-entrada {
    background-image: url(../src/5.jpg);
}

.fondo-entrada {
    height: 60rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.oscuro {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    ;
}

.webp .fondo-rollo {
    background-image: url(../src/6.webp);
}

.no-webp .fondo-rollo {
    background-image: url(../src/6.jpg);
}

.fondo-rollo {
    height: 85rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.webp .fondo-arroz {
    background-image: url(../src/7.webp);
}

.no-webp .fondo-arroz {
    background-image: url(../src/7.jpeg);
}

.fondo-arroz {
    height: 60rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.webp .fondo-salsa {
    background-image: url(../src/8.webp);
}

.no-webp .fondo-salsa {
    background-image: url(../src/8.jpg);
}

.fondo-salsa {
    height: 75rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.fondo-salsa h2 {
    font-size: 3rem;
}

.webp .fondo-promo {
    background-image: url(../src/9.webp);
}

.no-webp .fondo-promo {
    background-image: url(../src/9.jpeg);
}

.fondo-promo {
    height: 120rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.fondo-promo h2 {
    font-size: 3rem;
}

.webp .fondo-promo2 {
    background-image: url(../src/10.webp);
}

.no-webp .fondo-promo2 {
    background-image: url(../src/10.jpg);
}

.fondo-promo2 {
    height: 120rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 4rem;
}

.fondo-promo2 h2 {
    font-size: 3rem;
}

span {
    font-weight: bold;
}

@media(min-width: 768px) {
    .acomodar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media(min-width: 768px) {
    .acomodar2 {
        text-align: justify;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        list-style: none;
        margin-top: 3rem;
    }
}

@media(min-width: 768px) {
    .reducir {
        font-size: 1.5rem;
    }
}

/*sección nosotros*/

.nosotros,
h1 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    padding: 1.5rem;
}

@media(min-width: 768px) {
    .nosotros {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

.nosotros__imagen {
    grid-row: 1/2;
    border-radius: .5rem;
}

@media(min-width: 768px) {
    .nosotros__imagen {
        grid-column: 2/3;
    }
}

.interlineado{
    line-height: 1.6;
    text-align: justify;
}
/*sección ubicación*/
@media(min-width: 768px) {
    .cp {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 4rem;
    }
}

.texto {
    font-family: var(--slogP);
}

.pading {
    padding: .7rem;
}

.ubica,
h1 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    padding: 1.5rem;
}

.cursiva {
    font-family: var(--slogP);
    font-weight:400;
    font-style:italic;
}
.cursiva2 {
    font-family: var(--slogP);
    font-weight:400;
    font-style:italic;
    font-size: 2rem;
}

@media(min-width: 768px) {
    .ubica {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

.imagenDidi {
    height: 7rem;
    width: 7rem;
    border-radius: 1rem;
}

.imagenPedido {
    height: 100%;
}

.sidebar {
    padding: 1.5rem;
}

.puntos {
    list-style: none;
}

.widget-side {
    border-bottom: 1px solid var(--sec2);
    margin-bottom: 2rem;
}

.widget-side:last-of-type {
    border: none;
    margin-bottom: 0;
}

.widget-side_label,
.side_label {
    font-family: var(--fuenteTit);
    font-weight: bold;
    font-size: 2rem;
}

.widget-side_info,
.side_info {
    font-weight: normal;
    font-size: 2rem;
}

/*Parte footer*/
.footer {
    background-color: var(--neg);
    font-size: 1.8rem;
    color: var(--blan);
    padding-bottom: 4rem;
}

.iconos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 1rem;
}

.parrafo-footer {
    font-weight: bold;
    padding: 1rem;
}