/* ===========================
   GERAL
=========================== */
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* --------------------- 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);
}

/* ===========================
   SEÇÕES
=========================== */
.section {
    padding: 80px 20px;
}

.light-section {
    background: #fff;
    color: #08005c;
}

.dark-section {
    background: #08005c;
    color: #fff;
}

/* ===========================
   CONTAINERS E TEXTOS
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* ===========================
   BANNER
=========================== */

.banner-slide {
    position: relative;
    width: 100%;
    max-height: 73vh;
    /* altura mínima flexível */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -180px;

}

.banner-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}


/* ===========================
   LAYOUT FLEXÍVEL
=========================== */
.layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.layout-texto {
    flex: 1 1 400px;
    text-align: center;
}

.layout-img {
    flex: 1 1 400px;
    text-align: center;
}

.layout-img img,
.layout-img video {
    width: 100%;
    border-radius: 12px;
    max-width: 400px;
    height: auto;
}

/* ===========================
   GALERIAS / GRIDS DE IMAGEM
=========================== */
.images-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.images-flex img,
.images-flex video {
    max-width: 400px;
    border-radius: 12px;
    height: auto;
    margin: 0 6% 0 6%;
}

/* ===========================
   ÁREA "SAIBA MAIS"
=========================== */
.saiba-mais {
    text-align: center;
    margin-bottom: 50px;
}

.saiba-mais a {
    color: #08005c;
    text-decoration: none;
    border-bottom: 2px solid #08005c;
    transition: all 0.3s ease;
}

.saiba-mais a:hover {
    color: #4c49e6;
    border-color: #4c49e6;
}

.contato {
    text-align: center;
    background: #08005c;
    color: #fff;
    padding: 40px 20px;
    border-radius: 16px;
}

.contato a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background-image: linear-gradient(180deg, #3373E4 0%, #40E9BF 100%);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.contato a:hover {
    background: #007acc;
}

/* ===========================
   RESPONSIVIDADE
=========================== */

/* Tablets e notebooks pequenos */
@media (max-width: 992px) {
    h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .layout {
        flex-direction: column;
        text-align: center;
    }

    .layout-texto {
        order: 1;
    }

    .layout-img {
        order: 2;
    }

    .images-flex {
        gap: 20px;
    }
}

/* Celulares */
@media (max-width: 600px) {
    .section {
        padding: 60px 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 0.95rem;
    }

    .images-flex img,
    .images-flex video {
        max-width: 100%;
    }

    .contato {
        padding: 30px 15px;
    }


    .banner-slide img {
        margin-top: 0;
    }


}