* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
}

html {
    scroll-behavior: smooth;
}

#inicio {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("recursos/imagenes/pres1.jpg");
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

#inicio .contenido header {
    background-color: #1c1c1c;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

#inicio .contenido header .contenido-header {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#inicio .contenido header .contenido-header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#inicio .contenido header .contenido-header img {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
}

#inicio .contenido header .contenido-header h1 {
    color: #fff;
    padding: 20px;
    align-items: center;
}

#inicio .contenido header .contenido-header nav ul {
    list-style: none;
    display: flex;
    justify-content: end;
}

#inicio .contenido header .contenido-header nav ul li a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 400;
    transition: color 0.3s;
    /* Transicion de items al entrar a la pagina */
}

#inicio .contenido header .contenido-header nav ul a:hover {
    color: #40653b;
}

#inicio .contenido header .contenido-header .redes a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-left: 10px;
    transition: .5s;
}

#inicio .contenido header .contenido-header .redes a:hover {
    color: #7f50ff;
}

#inicio .contenido header .contenido-header .seleccionado {
    color: #f2f2f2;
}

/*Menu toggle ------------------*/
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

/*=====CONTENIDO DE PRESENTACION=======*/

#inicio .contenido .presentacion {
    max-width: 1100px;
    height: 100vh;
    margin: auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#inicio .contenido .presentacion .bienvenida {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 5px;
}

#inicio .contenido .presentacion h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-align: center;
}

#inicio .contenido .presentacion h2 span {
    font-size: 25px;
    color: #7f50ff;
}

#inicio .contenido .presentacion .descripcion {
    max-width: 700px;
    margin: 25px auto;
    font-size: 1.3rem;
    text-align: center;
}

#inicio .contenido .presentacion a {
    text-decoration: none;
    display: inline-block;
    margin: 25px;
    padding: 20px 25px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: .5s;
}

#inicio .contenido .presentacion a:hover {
    background-color: #1c1c1c;
}

#icono-nav {
    color: #fff;
    display: none;
}


/*========= SECCION PROMOCIONES ============*/

#promociones {
    padding: 100px 15px;
    text-align: center;
    background-color: #1c1c1c;
}

#promociones .titulo-seccion {
    font-size: 22px;
    text-decoration: underline;
    text-transform: uppercase;
    color: #d3d3d3;
    font-size: 2.5rem;
    text-decoration-thickness: 5px;
    padding-bottom: 2rem;
}

#promociones .des {
    color: #d3d3d3;
    font-size: 1.5rem;
}

#promociones .fila {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 30px auto;
}

#promociones .fila .servicio {
    max-width: 350px;
    background-color: #b1c5a4;
    color: #7b2c36;
    padding: 30px;
    margin: 0 5px;
    border: 1px solid #000;
    border-radius: 15px;
    transition: .5s;
    box-shadow: 1px 1px 2px #151515, -2px 5px #000000;
}

#promociones .fila .servicio:hover {
    box-shadow: 7px 7px 15px #151515, -7px 15px #000000;
    transform: scale(1.03);
}

#promociones .fila .servicio h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

#promociones .fila .servicio hr {
    width: 30%;
    margin: auto;
    color: #000;
    margin-bottom: 25px;
}

#promociones .fila .servicio ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#promociones .fila .servicio p {
    font-size: 1.3rem;
    line-height: 22px;
    color: #7b2c36;
}

#promociones .fila .servicio .precio {
    margin-top: 5rem;
    padding-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 22px;
    color: #7b2c36;
}


/*===========SECCION SOBRE NOSOTROS============*/
#about {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #121212;
    text-align: center;
    line-height: 1.6;
}

#about h2 {
    text-align: center;
    font-size: 3rem;
}

#about .intro-text {
    text-align: center;
    font-size: 1.3rem;
    padding: 90px;
}

#about .content-about {
    font-size: 1.3rem;
    padding: 1.5rem;
    margin-bottom: 20px;
}

#about .content-about .row-about {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 30px auto;
}

#about .content-about .row-about p {
    align-content: center;
    text-align: justify;
    max-width: 50%;
}

#about .content-about .row-about img {
    margin: 15px;
    max-width: 25rem;
    height: 25rem;
}

#about hr {
    width: 50%;
    margin: auto;
    color: #000;
    margin-bottom: 25px;
}

/*===========SECCION PRECIOS =================*/

#precios {
    background-image: url("recursos/imagenes/pres3.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #d3d3d3;
    text-align: center;
}

#precios h2 {
    font-size: 2.5rem;
    padding: 3rem;
}

#precios .content-precios {
    padding: 50px;
}

#precios .content-precios .row-precios {
    display: flex;
    justify-content: space-between;
}

#precios .content-precios .menu-table {

    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-table th {
    background-color: #300000;
    color: white;
    padding: 12px;
    text-align: left;
}

.menu-table td {
    padding: 10px 12px;
}

.menu-table tr:nth-child(even) {
    background-color: rgba(46, 46, 46, 0.4);
}

.product-name {
    font-weight: bold;
    color: #b1c5a4;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.price {
    text-align: right;
    font-weight: bold;
}

.size {
    padding-left: 20px;
}


/*===========SECCION UBICACION =================*/

#ubicacion {
    background-color: #1c1c1c;
    color: #b1c5a4;
    text-align: center;
}

#ubicacion h2 {
    padding: 4rem;
    font-size: 2rem;
}

#ubicacion iframe {
    width: 100%;
    height: 30rem;
    border: 0;
}

/*===========PIE DE PAGINA =================*/
footer {
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

footer img {
    width: 120px;
    margin-bottom: 20px;
    border-radius: 100%;
}

footer h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 10px;
}

.social-icons a img {
    width: 65px;
    color: #1da1f2;
    /* Azul por defecto */
    transition: transform 0.3s, color 0.3s;
}

footer p {
    font-size: 1.5rem;
    padding-top: 10px;
}

/*========RESPONSIVE PAGE======*/

/* ==== 1024px ==== */
@media (max-width: 1024px) {

    .menu-toggle {
        display: block;
        color: white;
        font-size: 30px;
    }

    #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1c1c1c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        display: flex !important;
        /* Forzar display */
    }

    #nav.active {
        right: 0;
    }

    #nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }

    #nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        z-index: 1100px;
    }

    #nav ul li a {
        font-size: 1.5rem;
        margin: 10px 0;
        display: block;
        width: 100%;
        padding: 10px;
    }

    /*promociones------------------------------*/

    #promociones .fila .servicio {
        max-width: 300px;
        padding: 25px;
        margin: 5px;
    }

    #promociones .fila .servicio:hover {
        box-shadow: 7px 7px 15px #151515, -7px 15px #000000;
        transform: scale(1.01);
    }

    #promociones .fila .servicio h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    #promociones .fila .servicio hr {
        width: 30%;
        margin: auto;
        color: #000;
        margin-bottom: 25px;
    }

    #promociones .fila .servicio p {
        font-size: 1.1rem;
        line-height: 17px;
    }

    #promociones .fila .servicio .precio {
        margin-top: 1.5rem;
        padding-bottom: 0rem;
        font-size: 1.7rem;
        line-height: 22px;
    }


    .social-icons a img {
        width: 65px;
    }

}

/*media MAX 900px-----------------------------*/
@media (max-width: 900px) {
    #promociones .fila .servicio {
        max-width: 250px;
        padding: 25px;
        margin: 5px;
    }
}

/*media MAX 768px----------------------------*/
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        color: white;
        font-size: 30px;
    }

    #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1c1c1c;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        transition: right 0.5s ease;
        z-index: 1000;
        display: flex !important;/* Forzar display */
    }

    #nav.active {
        right: 0;
    }

    #nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }

    #nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    #nav ul li a {
        font-size: 1.5rem;
        margin: 10px 0;
        display: block;
        width: 100%;
        padding: 10px;
    }

    /*presentacion*/
    #inicio .contenido .presentacion {
        padding: 10px;
    }


    /*Promociones-----------------*/
    #promociones {
        text-align: center;
    }

    #promociones .fila {
        display: block;
        max-width: 100%;
    }

    #promociones .fila .servicio {
        max-width: 100%;
        padding: 30px;
        margin: 15px;
    }

    /*sobre nosotros-----------------*/
    #about h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    #about .intro-text {
        text-align: center;
        font-size: 1.3rem;
        padding: 0px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #about .content-about .row-about {
        display: block;
        max-width: 100%;
    }

    #about .content-about .row-about p {
        text-align: center;
        max-width: 100%;
        padding: 0px;
    }

    #about .content-about .row-about img {
        width: 100%;
        height: 15rem;
        margin: 0px;
    }

    /*Precios*/

    #precios h2 {
        font-size: 2rem;
    }

    #precios .content-precios .row-precios {
        display: block;
    }

    #precios .content-precios .menu-table {
        max-width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding-bottom: 20px;
    }

    .menu-table th {
        background-color: #300000;
        color: white;
        padding: 12px;
        text-align: left;
    }

    .menu-table td {
        padding: 10px 15px;
    }

    .menu-table tr:nth-child(even) {
        background-color: rgba(46, 46, 46, 0.4);
    }

    .product-name {
        font-weight: bold;
        color: #b1c5a4;
        text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    .price {
        text-align: right;
        font-weight: bold;
    }

    .size {
        padding-left: 15px;
    }

    /*ubicacion*/
    #ubicacion h2 {
        padding: 4rem;
        font-size: 1.5rem;
    }

    /*Pie*/
    footer {
        padding: 150px 20px;
    }

    footer img {
        width: 110px;
        margin-bottom: 20px;
    }

    footer h3 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .social-icons a img {
        width: 65px;
        color: #1da1f2;
        /* Azul por defecto */
        transition: transform 0.3s, color 0.3s;
    }

    footer p {
        font-size: 1.5rem;
        padding-top: 10px;
    }
}