/* navbar */
.navbar.show-navbar {
    top: 0;
    background-color: var(--principal);
}

.hero {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-text img {
    max-width: 90dvw;
}

.hero-content p {
    color: var(--gris);
    leading-trim: both;
    text-edge: cap;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.54px;
    max-width: 775px;
    text-align: center;
}

.explora-nuestras-esencias {
    background-color: var(--principal);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transition: 0.3s;
    color: var(--gris);
}

.explora-nuestras-esencias:hover {
    background-color: var(--gris);
    color: var(--principal);
}

.imagen-banner-producto {
    width: 420px;
    height: auto;
}

.imagen-banner-producto {
    width: 100%;
    height: 100%;
    max-height: 325px;
    border-radius: 10px;
    overflow: hidden;
}

.imagen-banner-producto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* titulo articulo */
.titulo-articulo {
    color: var(--gris);
    font-family: "Kritik", sans-serif;
    leading-trim: both;
    text-edge: cap;
    font-size: 65px;
    font-style: normal;
    font-weight: 300;
    line-height: 95%; /* 61.75px */
    letter-spacing: -3.25px;
    text-transform: uppercase;
}

.titulo-articulo-bold {
    color: var(--gris);
    leading-trim: both;
    text-edge: cap;
    font-size: 65px;
    font-style: normal;
    font-weight: 600;
    line-height: 95%;
    letter-spacing: -3.25px;
    text-transform: uppercase;
}

.texto-header-productos{
    width: 70%;
}

/* Interaccion imagen */
/* Modal */
.imagen-interactiva {
    cursor: pointer;
}
.imagen-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    overflow: hidden;
    cursor: not-allowed !important;
}

.imagen-modal img {
    max-width: 85vw;
    max-height: 85vh;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.1s ease;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
}

.cerrar {
    position: absolute;
    top: 4rem;
    right: 4rem;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 2100;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s;
}

.cerrar:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Nav productos */
.nav-productos {
  position: sticky;
  top: 0;
  z-index: 920;
  background: var(--gris);
}

.contenedor-productos {
  scroll-margin-top: 80px;
}


/* Queries */
@media (max-width: 991.98px) {
    .titulo-articulo {
        font-size: 45px;
    }
    .titulo-articulo-bold {
        font-size: 45px;
    }
    .imagen-banner-producto {
        height: 155px;
    }
    .texto-header-productos{
    width: 100%;
    }
    .contenedor-productos {
  scroll-margin-top: 120px;
}
}
