@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #FFC27F 0%, #C6B4FC 100%);
    min-height: 100vh;
}

/* Banner ocupa toda a largura */
.bannerBox {
    background-color: #F7CF69;
    width: 100%;
    position: relative;
}

.bannerContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.bannerText {
    position: absolute;
    top: 15%;
    left: 5%;
    z-index: 2;
    max-width: 600px;
    color: #333;
}

.mainTitle {
    font-size: 36px;
    font-weight: 900;
    color: #7653BB;
    margin-bottom: 15px;
}

.mainSubTitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

/* imagem de fundo em tela cheia */
.bannerImage {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção dos ícones */
.contentIcons {
    padding: 60px 5% 40px;
    text-align: center;
}

.contentIcons h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.iconsWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Cada item */
.iconCard {
    width: 140px;
    text-align: center;
    text-decoration: none;
    color: #2e2d2c;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.iconCard:hover {
    transform: translateY(-5px);
}

/* Quadrado com ícone dentro */
.iconCard__image-wrapper {
    background: white;
    border-radius: 40px;
    width: 140px;
    height: 140px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconCard__image {
    width: 65%;
    height: 65%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Texto abaixo */
.iconCard__text {
    font-size: 14px;
    font-weight: 500;
    color: #2e2d2c;
}


/* Footer */
.footer {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2%;
    flex-wrap: wrap;
}

.footer-icon {
    height: 140px;
}

.footer-logo{
    height: 180px;
}

.footer img {
    margin: 10px 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .bannerText {
        position: relative;
        top: unset;
        left: unset;
        padding: 20px;
        max-width: 100%;
        text-align: center;
    }

    .bannerImage {
        display: none;
    }

    .mainTitle {
        font-size: 28px;
    }

    .mainSubTitle {
        font-size: 16px;
    }

    .iconsWrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}
