/* --------------------- RESET E BASE --------------------- */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #fff;
    color: #08005c;
    overflow-x: hidden;
}

h1,
h2,
h4,
h5,
h6 {
    font-family: 'Michroma', sans-serif !important;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --------------------- ANIMAÇÃO BÁSICA --------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* fade + escala */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.fade-in-scale.show {
    opacity: 1;
    transform: scale(1);
}

.fade-rotate {
    opacity: 0;
    transform: rotate(-10deg);
    transition: all 0.8s ease-out;
}

.fade-rotate.show {
    opacity: 1;
    transform: rotate(0deg);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-right.show {
    opacity: 1;
    transform: translateX(1);
}

/* --------------------- BANNER --------------------- */
.banner-slide {
    position: relative;
    width: 100%;
    height: 73vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.img-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conteudo-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.texto-banner {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
}

.conteudo-link {
    margin-top: 25px;
}

.conteudo-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(180deg, #3373e4 0%, #40e9bf 100%);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.conteudo-link a:hover {
    transform: scale(0.97);
    opacity: 0.9;
}

.conteudo-link img {
    height: 22px;
}

/* --------------------- HERO --------------------- */
.hero {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    color: #0a033b;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin-bottom: 30px;
}

.texto {
    max-width: 900px;
    margin: 30px auto;
    text-align: justify;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}

/* --------------------- RESPONSIVIDADE --------------------- */

/* Tablets */
@media (max-width: 992px) {
    .banner-slide {
        height: 60vh;
    }

    .texto-banner {
        font-size: clamp(1.2rem, 5vw, 2.2rem);
    }

    .conteudo-link a {
        padding: 10px 20px;
    }
}

/* Celulares médios */
@media (max-width: 768px) {
    .banner-slide {
        height: 55vh;
    }

    .conteudo-banner {
        top: 45%;
        padding: 0 15px;
    }

    .texto-banner {
        font-size: clamp(1rem, 5vw, 1.8rem);
    }

    .texto {
        width: 100%;
        margin: 20px auto;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .banner-slide {
        height: 50vh;
    }

    .conteudo-banner {
        top: 50%;
        padding: 0 10px;
    }

    .conteudo-link {
        margin-top: 15px;
    }

    .conteudo-link a {
        width: 50%;
        justify-content: center;
        text-align: center;
        padding: 10px;
        font-size: 10px;
    }

    .texto-banner {
        font-size: 1.1rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .texto {
        font-size: 0.95rem;
        margin: 15px auto;
    }
}

/* Telas muito grandes */
@media (min-width: 1600px) {
    .banner-slide {
        height: 80vh;
    }

    .texto-banner {
        font-size: 3rem;
    }
}