/*==================================================
                    HERO
==================================================*/

.hero-banner{

    position:relative;

    overflow:hidden;

}

.heroSwiper{

    width:100%;

    height:720px;

}

.heroSwiper .swiper-slide{

    position:relative;

}

.heroSwiper .swiper-slide img{

    width:100%;

    height:720px;

    object-fit:cover;

    object-position:center;

    transition:8s;

}

/* Fotos de origem são retratos (2:3) espremidos numa faixa larga e baixa;
   cada foto precisa de um object-position próprio para não cortar o assunto principal. */

.heroSwiper .swiper-slide img.banner-img-1{

    object-position:center 40%;

}

.heroSwiper .swiper-slide img.banner-img-2{

    object-position:center 25%;

}

.heroSwiper .swiper-slide img.banner-img-3{

    object-position:center 55%;

}

.heroSwiper .swiper-slide-active img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55),
        rgba(0,0,0,.20),
        rgba(0,0,0,.05)
    );

}

.hero-content{

    position:absolute;

    top:50%;

    left:clamp(24px, calc((100% - 1140px) / 2 + 12px), 150px);

    transform:translateY(-50%);

    max-width:620px;

    color:#fff;

    z-index:20;

}

.hero-tag{

    display:inline-block;

    background:#F8D9DE;

    color:#8A6A56;

    padding:10px 22px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:62px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    max-width:520px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-vera{

    background:#F8D9DE;

    color:#8A6A56;

    padding:16px 34px;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.btn-vera:hover{

    background:#fff;

    color:#8A6A56;

    transform:translateY(-4px);

}

.btn-outline-vera{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:40px;

    text-decoration:none;

    transition:.35s;

}

.btn-outline-vera:hover{

    background:#fff;

    color:#8A6A56;

}

.swiper-button-next,

.swiper-button-prev{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(8px);

    color:#fff;

}

.swiper-button-next::after,

.swiper-button-prev::after{

    font-size:20px;

    font-weight:bold;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.5;

}

.swiper-pagination-bullet-active{

    width:35px;

    border-radius:20px;

    background:#F8D9DE;

    opacity:1;

}

/*=============================================
            HERO FEATURES
=============================================*/

.hero-features{

    background:#fff;

    padding:70px 0;

}

.feature-item{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-item:hover{

    transform:translateY(-8px);

}

.feature-item i{

    font-size:42px;

    color:#D8A2AD;

    margin-bottom:20px;

}

.feature-item h5{

    color:#8A6A56;

    font-weight:700;

    margin-bottom:12px;

}

.feature-item p{

    color:#777;

    margin:0;

    line-height:1.7;

}

/*=============================================
                RESPONSIVO
=============================================*/

@media(max-width:1200px){

    .hero-content h1{

        font-size:52px;

    }

}

@media(max-width:992px){

    .heroSwiper{

        height:620px;

    }

    .heroSwiper .swiper-slide img{

        height:620px;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:18px;

    }

}

@media(max-width:768px){

    .heroSwiper{

        height:520px;

    }

    .heroSwiper .swiper-slide img{

        height:520px;

    }

    .hero-content{

        text-align:center;

        left:50%;

        transform:translate(-50%,-50%);

        width:92%;

    }

    .hero-content h1{

        font-size:34px;

    }

    .hero-content p{

        font-size:16px;

        max-width:100%;

    }

    .hero-buttons{

        justify-content:center;

    }

    .btn-vera,

    .btn-outline-vera{

        width:100%;

    }

    .swiper-button-next,

    .swiper-button-prev{

        display:none;

    }

    .hero-features{

        padding:50px 0;

    }

}