.hero-slider {
    background-color: var(--amarelo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4.25rem;
}

.slide {
    display: none;
    max-width: 80rem;
    margin: 0 auto;
}

.slide.active {
    display: block;
}

.slide h2 {
    font: clamp(2rem, 2.08vw, 2.5rem) "Inter-Black", sans-serif;
    color: var(--branco);
    letter-spacing: 6%;
    text-align: center;
    padding-bottom: 0.81rem;
}

.slide p {
    font: clamp(1.3rem, 1.25vw, 1.5rem) "Inter-Regular", sans-serif;
    color: var(--branco);
    letter-spacing: 6%;
    text-align: center;
    letter-spacing: 6%;
    opacity: 0.9;
}

.dots {
    padding-top: 1.5rem;
    display: flex;
    gap: 0.31rem;
}

.dot {
    height: clamp(0.6rem, 0.625vw, 0.75rem);
    width: clamp(0.6rem, 0.625vw, 0.75rem);
    border: 1px solid var(--branco);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: var(--branco);
}



#hero-section {
    max-width: 100rem;
    margin: 0 auto;
    margin-top: 5.43rem;
    display: flex;
    gap: 5.43rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrap-text-sobre {
    display: flex;
    flex-direction: column;
    gap: 1.43rem;
}

.wrap-text-sobre h1 {
    font: clamp(2rem, 2.5vw, 3rem) "Inter-Black", sans-serif;
    color: var(--amarelo);
    text-align: center;
}

.wrap-text-sobre p {
    font: clamp(1.3rem, 1.25vw, 1.5rem) "Inter-Medium", sans-serif;
    color: var(--cinza);
    text-align: center;
}

.wrap-text-sobre span#bold {
    font: clamp(1.3rem, 1.25vw, 1.5rem) "Inter-Bold", sans-serif;
}

.btn-hero {
    display: flex;
    justify-content: center;
    padding-top: 3.438rem;
}