@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}


.text-nav{
    font-size: 18px;
    text-align: center;
}

.logo {
    width: 120px ;
}


.search-icon {
    font-size: 24px;
    cursor: pointer;
    color: #161616;
}

.btn-login {
    font-size: 16px;
    color: darkblue;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Estilo do popup de pesquisa */
.search-popup {
    display: none;
    position: fixed;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.search-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-search {
    background-color: #1e40af;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* ------------------------------------------- */

.navigation {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Estilos para as abas */
.navigation a {
    font-size: 18px;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid transparent; /* Borda invisível por padrão */
    color: #1e40af;
    transition: all 0.3s ease;
}


.navigation .active {
    border-bottom: 3px solid #1e40af;
}



.categories {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}


.highlights {
    padding: 0 50px;
    
}

.highlights-header {
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.highlights-header h2 {
    font-size: 18px;
    color: #202020;
}

.section-saude{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    padding: 20px;
}

.section-saude h2 {
    font-size: 16px;
    color: #202020;
}
.cont-icons{
    margin-bottom: 25px;
}

.btn-view-all {
    color: #1e40af;
    text-decoration: none;
    white-space: nowrap;
}


.slide-container {
    position: relative;
    width: 80%;
    height: auto;
    margin: 0 auto;
}

/* Mantém o mesmo conteúdo anterior, com ajustes no slide */
.slide {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slide img {
    width: 100%;
    display: none;
    border-radius: 8px;
}

.slide img.active {
    display: block;
}

.slide-dots {
    display: flex;
    position: relative;
    justify-content: center;
    bottom: 10px;
}

.dot {
    height: 2px; /* Antes era 6px */
    width: 20px;
    margin: 0 4px;
    background-color: white;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
}
.dot {
    border: none;
    padding: 0;
}


.dot.active {
    background-color: #a3a8b8;
}

.button-container {
    display: flex;
    flex-direction: row; /* Coloca os botões lado a lado */
    justify-content: center;
    gap: 10px; /* Espaço entre os botões */
    margin-bottom: 20px;
}
.button-container a {
    text-decoration: none;
}

/* Estilo do botão */

.btn-expand {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background-color: #e0dcdc;
    color: #161616;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    overflow-wrap: break-word;/* Permite quebra de linha no texto */
}
.btn-expand2 {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background-color: #e0dcdc;
    color: #161616;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    overflow-wrap: break-word;/* Permite quebra de linha no texto */
}


.button-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}


/* Container dos ícones */
.icons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

/* Container dos ícones */
.icons-container3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}



.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}


.icon-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}


.icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.icon i {
    font-size: 40px;
    color: #007bff;
}

@media (max-width: 768px) {

    .highlights-header h2 {
        font-size: 16px;
    }

    .highlights-header {
        padding: 0 20px;
    }

    .highlights {
        padding: 0;
        
    }


    .slide-container {
        width: 100%;
        padding: 10px 20px;
        
    }

    .btn-expand {
        font-size: 18px; 
        padding: 22px;
    }

    .icon {
        width: 65px;
        height: 65px;
    }
    .icon i {
        font-size: 35px;
    }

    .icon-item p {
        font-size: 12px;
    }

    .button-container {
        padding: 0 10px;
    }
    /* Estilo do botão */
    .btn-expand {
        padding: 20px 42px;   
    }

    .highlight-items {
        padding: 0 3px;
    }
    
    .highlight-img {
        width: 23%;
        box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.479);
    }
    
}

@media (max-width: 440px) {
    .btn-expand {
        padding: 22px 42px;   
    }
    .btn-expand2 {
        padding: 10px 15px;
        overflow-wrap: break-word;/* Permite quebra de linha no texto */
        
    }

}

