.carrusel-con-encabezado {
    position: relative;
}

.encabezado__container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    color: white;
    padding: 1rem;
}

.encabezado__botones a,
.encabezado__boton__dos {
    pointer-events: auto; /* activa clics en botones */
}

.encabezado__titulo p{
    font-family: Gunterz-regular;
    text-align: left;
    font-size: clamp(32px, 5vw, 56px);
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
}

.encabezado__botones{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 0px 25vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

.encabezado__boton__uno{
    text-align: left;
    font-family: "Azeret Mono", monospace;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    width: 225px;
    margin-bottom: 40px;
    color:var(--white)
}

.encabezado__boton__dos{
    background-color: none;
    width: 374.6px;
    height: 56.9px;
    padding: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: transparent;
    border: 2px solid white;
}

.encabezado__boton__dos a{
    width: 100%;
    text-decoration: none;
    color: var(--white);
    text-decoration: none;
    font-family: "Antapani Regular";
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.72px;
}

.encabezado__boton__dos:hover{
    background-color: white;
    border: 1px solid var(--black);
    color:var(--black);
}

.encabezado__boton__dos:hover a{
    color: var(--black);
}

@media screen and (max-width: 640px){
    .encabezado__container {
        justify-content: flex-start;
        padding: 2rem 1rem;
        gap: 1rem;
        width: 100%;
        height: 55%;
    }

    .encabezado__plantas__boton__dos{
        width: 288px;
        margin:40px auto;
    }

    .encabezado__botones{
        flex-direction: column;
        gap: 0px 0px;
        align-items: flex-start;
        padding-left: 2vw;
        padding-right: 2vw;
    }

}
