.hero .carousel-inner {
    height: 100%;
}

#heroCarousel {
    height: 100%;
}

.hero .carousel-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transition: opacity 1s ease;
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease;
}

.hero .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Bolinhas */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-style>h1 {
    font-family: 'Dancing Script', serif;
}

.subtitle-hero {
    font-size: 22px;
    font-family: 'Courgette', serif;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 300px;
    margin: auto;
}

.subtitle-hero::before,
.subtitle-hero::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ccc;
}

.hero-style>a {
    margin-top: 40px;
    font-style: normal;
}

.hero {
    height: 100vh;
    max-height: 500px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .hero {
        height: 75vh;
        /* desktop mostra mais da próxima seção */
    }
}

@media (max-width: 768px) {
    .hero {
        height: 65vh;
        /* mobile precisa de mais espaço */
    }
}