:root {
    /* colores */
    --fondo: #191e22;
    --card: #1a1f23;
    --cafe: #fa9049;
    --cafe-claro: #d1a78f;
    --cafe-claro-borde: #caab9710;
    /* sombras */
    --sombra: 10px 10px 50px 20px rgba(0, 0, 0, 0.25);
    /* fuentes */
    --parrafo: "Montserrat", sans-serif;
    --titulo: "Poppins", sans-serif;

    /* texto */

    --texto: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

body {
    color: var(--texto);
    font-size: 1.6rem;
    background-color: var(--fondo);
}

a {
    text-decoration: none;
    color: inherit;
}
h1,
h2,
h3 {
    margin: 0 0 2rem 0;
    font-family: var(--titulo);
    color: var(--cafe);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2.6rem;
    text-transform: uppercase;

    text-align: center;
}
h3 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}
h4 {
    font-family: var(--titulo);
    color: var(--cafe);
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.6rem;
    }
    h3 {
        font-size: 3rem;
    }
    h4 {
        font-size: 2rem;
    }
}
p {
    font-family: var(--parrafo);
    color: var(--cafe-claro);
}
.contenedor {
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
}

.centrado {
    margin: 0 auto;
    background-color: var(--card);
    width: 100%;
    box-shadow: var(--sombra);
    border-radius: 10px;
    -webkit-border-radius: 10px;

    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (min-width: 768px) {
    .contenedor {
        width: 95%;
    }

    .centrado {
        width: 90%;
    }
}
/* <header> */
/* navegacion */
.navegacion {
    height: 12rem;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 1;
}

@media (min-width: 768px) {
    .navegacion {
        width: 90%;
        flex-direction: row;
        justify-content: end;
        align-items: center;
    }
}

.navegacion__link {
    color: var(--cafe);
    line-height: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.navegacion__link::after {
    display: inline-block;
    width: 100%;
    content: "";
    height: 2px;
    border-bottom: 3px solid rgb(167, 162, 162);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}
@media (min-width: 768px) {
    .navegacion__link:hover {
        color: rgb(167, 162, 162);
    }
    .navegacion__link:hover::after {
        border-bottom: 3px solid var(--cafe);
    }
}

/* hero */

.hero {
    padding: 2rem;

    position: relative;
    overflow: hidden;
    z-index: 10;
    text-align: center;
}
@media (min-width: 768px) {
    .hero {
        padding: 0;
        height: 78rem;
        text-align: unset;
    }
}

.hero__texto {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    margin: 0 auto;
    height: 80%;
}

@media (min-width: 768px) {
    .hero__texto {
        width: 80%;
    }
}
.cta {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.boton {
    display: block;
    border-radius: 0.2rem;
    width: 100%;
    background-color: var(--cafe);
    color: var(--fondo);
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    padding: 2rem 2rem;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
}
.boton:hover {
    background-color: white;
    box-shadow: 0px 0px 20px 1px rgba(252, 252, 252, 0.38);
}

@media (min-width: 768px) {
    .cta {
        margin-bottom: 0;
    }
    .boton {
        display: inline;
    }
}

.hero__titulo {
    font-weight: 400;
    font-size: 4rem;
    color: var(--cafe-claro);
}

@media (min-width: 768px) {
    .hero__titulo {
        font-size: 6.4rem;
    }
}
.hero__titulo span {
    font-weight: bold;
}

.hero__descriccion {
    width: 100%;
    font-weight: 400;
    font-size: 2.2rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .hero__descriccion {
        width: 75%;
    }
}
.hero__titulo-meta {
    font-style: italic;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .img-bg {
        background-image: url(../images/rama-tiny.webp);
        background-size: cover;
        max-width: 100%;
        width: 366.037px;
        height: 100%;
        position: absolute;
        top: 100px;
        right: 0;
        z-index: 10;
        transform: rotate(-151.785deg);
        filter: drop-shadow(-20px 20px 10px #00000056);
        -webkit-filter: drop-shadow(-20px 20px 10px #00000056);
    }

    .img-bg-pinon {
        background-image: url(../images/pion-tiny.webp);
        background-size: cover;

        width: 800px;
        height: 800px;
        max-height: 100%;
        position: absolute;
        top: 30px;
        left: -200px;
        z-index: 1;
        rotate: 160deg;
    }
}

/* </header> */

/* productos */
main {
    scroll-snap-align: start;
}
.productos-grid {
    margin-top: 5rem;
}

.productos__titulo {
    padding: 3rem;
}
.producto {
    width: 90%;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

@media (min-width: 950px) {
    .producto {
        width: 80%;
        flex-direction: row;
        gap: 2rem;
    }
    .card-de {
        flex-direction: row-reverse;
    }
}

.producto__imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    margin: 0 0 1rem 0;
}
.producto__titulo--desk {
    display: none;
}

@media (min-width: 768px) {
    .producto__imagen {
        width: 50%;
        height: 50%;
    }

    .producto__titulo--desk {
        display: block;
        text-align: center;
    }
    .producto__titulo {
        display: none;
    }
}

.producto__descripcion {
    font-size: 1.6rem;
    text-align: le;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--cafe-claro-borde);

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer {
    padding: 5rem 2rem;
    display: flex;
    text-align: center;
    gap: 5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
}

.navegacion-footer {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
@media (min-width: 768px) {
    .footer {
        padding: 10rem 0;
    }

    .top-footer {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: row-reverse;
    }
    .navegacion-footer {
        display: flex;
        gap: 5rem;
    }
    .navegacion-footer a {
        color: var(--cafe);
        margin: 0 0 1rem 0;
        font-size: 3rem;
        font-weight: 400;
    }
}

@media (min-width: 768px) {
    .contacto {
        text-align: center;
        padding: 5rem 0;
    }
    .contacto__titulo-footer {
        margin: 0;
    }

    .datos-contacto {
        display: flex;
        gap: 5rem;
    }
}

.direccion {
    margin-bottom: 2rem;
}
.telefono h3 {
    margin: 0;
}

.img-wasap {
    object-fit: contain;
    width: 10rem;
    height: 10rem;
}
.linea {
    width: 100%;
    border-bottom: 1px solid var(--cafe);
}
