/* ==================================================
   AJUSTES GLOBALES: Section Intro Hero
   ================================================== */

section.intro-hero__section {
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 24px 24px;
}

section.intro-hero__section, section.intro-hero__section div.e-con-inner {
    padding: 0;
}

div.intro-hero__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

img.intro-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    content-visibility: auto;
}

div.intro-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
}

div.intro-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
    text-align: end;
}

h1.intro-hero__title {
    color: #FEF3E7;
    line-height: 1.3; 
    font-family: Qalogre Fit;
    font-weight: 400;
    margin: 0;
    
}

p.intro-hero__description {
    text-align: right;
    color: #FEF3E7;
    font-weight: 300;
}

a.intro-hero__button {
    color: #960946;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 6rem;
    background-color: #FEF3E7;
    font-family: Celestia;
    transition: transform 0.2s ease;
    letter-spacing: 2px;
}

a.intro-hero__button:hover, a.intro-hero__button:focus {
    background: #F3DBD7;
    transform: scale(1.08);
}

/* ==================================================
   AJUSTES DESKTOP: Section Intro Hero
   ================================================== */

@media screen and (min-width: 1025px) {
    
    section.intro-hero__section {
        width: 74%;
        max-width: 60rem !important;
        margin-bottom: -120.062px;
    }
    
    div.intro-hero__container {
        height: 24rem;
    }    
    
    div.intro-hero__content {
        width: 76%;
        max-width: 40rem;
        gap: 2rem;
    }
    
    h1.intro-hero__title {
        font-size: 2.8rem;
        width: 26rem;
    }
    
    span.intro-hero__title-accent {
        font-size: 1.4rem;
        vertical-align: -4px;
    }
    
    p.intro-hero__description {
        font-size: 1.5rem;
        line-height: 1.15;
        width: 26rem;
    }
    
    a.intro-hero__button {
        font-size: 1.1rem;
        padding: 0.65rem 1.55rem;
    }
}



/* ==================================================
   AJUSTES MOBILE: Section Intro Hero
   ================================================== */

@media screen and (max-width: 767px) {

    section.intro-hero__section {
        width: 100%;
        max-width: 36rem;
        margin-bottom: -93px;
    }
    
    section.intro-hero__section div.e-con-inner {
        margin: 0;
        min-width: 100%;
    }
    
    div.intro-hero__container {
        height: 22rem;
    } 
    
    div.intro-hero__content {
        width: 100%;
        padding: 0 1.4rem;
        max-width: 26rem;
        gap: 2rem;
    }
    
    h1.intro-hero__title {
        font-size: 2.2rem;
    }
    
    span.intro-hero__title-accent {
        font-size: 1.2rem;
        vertical-align: -4px;
    }
    
    p.intro-hero__description {
        font-size: 1.4rem;
        line-height: 1.15;
    }
    
    a.intro-hero__button {
        font-size: 1.08rem;
        padding: 0.5rem 1.2rem;
    }
}



/* ==================================================
   AJUSTES TABLET: Section Intro Hero
   ================================================== */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    
    section.intro-hero__section {
        width: 76%;
        max-width: 42rem;
        margin-bottom: -95.188px;
    }
    
    div.intro-hero__container {
        height: 22rem;
    } 
    
    div.intro-hero__content {
        width: 84%;
        max-width: 30rem;
        gap: 2rem;
    }
    
    h1.intro-hero__title {
        font-size: 2.4rem;
    }
    
    span.intro-hero__title-accent {
        font-size: 1.4rem;
        vertical-align: -4px;
    }
    
    p.intro-hero__description {
        font-size: 1.4rem;
        width: 25rem;
        line-height: 1.1;
    }
    
    a.intro-hero__button {
        font-size: 1.08rem !important;
        padding: .5rem 1.4rem;
    }
}