/* HERO */
/* CARROSSEL */
.hero-carousel {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-top: 55px;
}

.hero-carousel .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.hero-carousel .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-carousel .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-carousel .content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-carousel h2 {
    font-size: 4rem;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 0rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-carousel p {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 18px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* CTA (evita conflito com botões do carrossel) */
.hero-carousel .cta {
    background: #007bff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.hero-carousel .cta:hover {
    background: #0056b3;
}

/* setas */
.hero-carousel .prev,
.hero-carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: white;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

.hero-carousel .prev {
    left: 16px;
}

.hero-carousel .next {
    right: 16px;
}

/* DOTS - centralizadas embaixo */
.hero-carousel .dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 25;
}

.hero-carousel .dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: transform .12s ease, background .12s ease;
}

.hero-carousel .dots button.active {
    background: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}


/* FEATURES */
.container-home {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
}

.features-home {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.feature-home {
    flex: 1 1 250px;
    background: #fff;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-home img {
    border: 5px solid #2196F3;
}

.feature-home p {
    font-family: 'Exo 2', sans-serif;
}

.feature-home h3 {
    font-family: 'Exo 2', sans-serif;
    color:#2196F3;
}
