::-webkit-scrollbar {
    width: 15px; /* Define a largura da barra de rolagem */
    background-color: transparent
}

/* Estiliza o "polegar" da barra de rolagem */
::-webkit-scrollbar-thumb {
    background-color: #bbb; /* Cor da parte que se move da barra */
    border-radius: 20px; /* Deixa as pontas arredondadas */
    background-clip: padding-box; /* Garante uma leve borda ao redor */
}

/* Estiliza o "polegar" ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* Cor do polegar ao passar o mouse */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Impede a rolagem lateral */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px; /* Define a largura máxima do conteúdo */
    margin-left: 0;
}

body {
    display: inline;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.header.show {
    transform: translateY(0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Define uma largura máxima para centralizar o conteúdo */
    width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
}

.navigation ul {
    display: flex;
    gap: 50px; /* Espaçamento entre os itens */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Estilo dos links de navegação */
.navigation a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

/* Efeito de hover nos links */
.navigation a:hover {
    color: #00b3e6;
}

.login-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    background-color: #00b3e6;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 20px; /* Espaço entre a navegação e o botão */
}

/* Efeito de hover no botão de login */
.login-button:hover {
    background-color: #008bb5;
}

/* Banner com background-image responsivo */
.banner {
    position: relative;
    width: 100%;
    height: 40vh; /* Ajuste conforme necessário */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Pontos de navegação */
.banner-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-style: solid;
    border-radius: 50%;
    border-color: white;
    border-width: 1px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    border-color: white;
    border-width: 1px;
    background-color: white;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0px;
    background-color: #f9f9f9;
    transition: padding 0.5s ease;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-top: 0px;
    margin-bottom: 5px;
}

.about-content .highlight {
    color: #00b3e6;
}

.about-text-content {
    display: flex;
    flex-direction: column; /* Empilha o título e o texto */
    max-width: 600px;
    margin-left: 50px;
    margin-right: 50px;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    max-width: 600px;
    margin: 20px auto 10px; /* Espaço entre o título e o texto */
    line-height: 1.6;
}

.about-image {
    display: flex;
}

.about-image img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.read-more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1f1f1f;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    position: relative;
}

.read-more::after {
    content: "";
    display: inline;
    width: 0; /* Inicia a linha com largura zero */
    height: 2px;
    background-color: #00b3e6;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out; /* Animação suave para a largura */
}

.read-more:hover::after {
    display: inline;
    width: 13%; /* Expande a linha para 100% da largura do link */
}

.wellness {
    padding: 20px 20px;
    text-align: center;
    transition: padding 0.5s ease;
}

.wellness h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
}

.wellness p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 10px 0 30px;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0 auto;
  }

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    max-width: 250px;
    max-height: 350px;
}

.carousel-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  


/* Estilo para a seção de colaboradores */
.team-section {
    padding: 20px 20px;
    background-color: #f9f9f9;
    text-align: center;
    transition: padding 0.5s ease;
}

.team-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-card {
    background-color: #fff;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 5px;
}

.specialty {
    font-size: 1rem;
    color: #00b3e6;
    margin-bottom: 10px;
    font-weight: bold;
}

.description {
    font-size: 0.9rem;
    color: #666;
}

/* Estilos da seção de promoção à saúde */
.health-promotion-section {
    padding: 20px 0px;
    background-color: #00b3e6;
    text-align: start;
    transition: padding 0.5s ease;
}

.health-promotion-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.options-menu {
    flex: 1;
    max-width: 200px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.options-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options-menu li {
    padding: 15px;
    cursor: pointer;
    color: #333;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.options-menu li.active, .options-menu li:hover {
    background-color: #f0f0f0;
    color: #00b3e6;
    font-weight: bold;
}

.content-display {
    flex: 2;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.content-display h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.content-display p {
    color: #666;
    margin-bottom: 20px;
    float: left;
    margin-right: 50px;
    text-align: start;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-list li::before {
    content: "✓";
    color: #00b3e6;
    font-weight: bold;
    margin-right: 10px;
}

.learn-more-button {
    background-color: #00b3e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.learn-more-button:hover {
    background-color: #00b3e6;
}

.image-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 50%;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para o rodapé */
.footer {
    display: block;
    background-color: #f2f2f2;
    color: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    max-width: 200px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons .icon {
    background-color: #333;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Estilos para os links do rodapé */
.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.column h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.column ul {
    list-style-type: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 5px;
}

.column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.column ul li a:hover {
    text-decoration: underline;
}

/* Estilo para o rodapé inferior */
.footer-bottom {
    background-color: #00b3e6;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: auto;
    font-size: 0.8rem;
}

/* Botão de menu hamburguer para telas menores */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Dropdown menu para telas menores */
.dropdown-menu {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    text-align: center;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 10px 0;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

@media screen and (max-width: 1060px) {

    .carousel-item {
        flex: 0 0 350px;
    }

    .logo {
        display: flex;
        align-items: start;
        margin-left: 50px;
    }

    .banner-navigation {
        gap: 25px;
    }

    .about {
        display: flex;
        padding: 20px 15px;
        background-color: #f9f9f9;
    }
    
    .logo img {
        width: 150px;
    }

    .login-button {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        color: #fff;
        background-color: #00b3e6;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin-right: 50px; /* Espaço entre a navegação e o botão */
    }

    .navigation, .about-image {
        display: none;
    }

    .carousel {
        display: flex;
        transition: transform 0.4s ease;
        gap: 20px;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        max-width: 95%;
        margin: 0 auto;
    }

    .wellness {
        padding: 60px 5px;
        text-align: center;
    }
    
    .wellness h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 2rem;
    }
    
    .wellness p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        margin: 10px 0 30px;
    }
    
    .wellness-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .card {
        min-height: 350px;
        min-width: 250px;
    
        margin: 0 0px;
        background-color: #ddd;
        height: 150px;
        border-radius: 8px;
        display: flex;
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 720px) {
    .banner {
        height: 100vh; /* Preenche a altura da viewport para dispositivos maiores */
    }
}

@media (max-width: 480px) {

    .read-more{
        text-align: center;
    }
	
    .health-promotion-section {
        padding: 20px;
    }

    .health-promotion-section h2 {
        font-size: 1.5rem;
    }

    .content-container {
        padding: 10px;
    }

    .options-menu li {
        font-size: 0.9rem;
    }

    .content-display h3 {
        font-size: 1.1rem;
    }

    .learn-more-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
	
	    .footer-logo h3 {
        font-size: 1rem;
    }

    .social-icons .icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }

    .column h4 {
        font-size: 0.85rem;
    }

    .column ul li a {
        font-size: 0.8rem;
    }

    .footer {
        padding: 15px 5px;
    }

    .footer-bottom {
        padding: 5px 0;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {

    /* Ajustes para o layout de conteúdo */
    .content-container {
        flex-direction: column;
        padding: 15px;
    }

    .carousel-item {
        flex: 0 0 auto; /* Ajusta o flex para tamanho fixo */
        width: 250px; /* Largura fixa no mobile */
        height: 350px; /* Altura fixa no mobile */
    }

    .carousel-item img {
        width: 100%;
        height: 100%; /* Garante que a imagem se ajuste ao container */
        object-fit: cover; /* Mantém a proporção da imagem */
    }

    .options-menu {
        max-width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
    }

    .content-display {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .content-display h3 {
        font-size: 1.25rem;
    }

    .content-display p,
    .benefits-list li {
        font-size: 0.95rem;
    }

    .image-container {
        position: static;
        max-width: 100%;
        margin-top: 20px;
        border-radius: 10px;
        width: 100%;
    }

    /* Header e navegação */
    .navigation {
        display: none; /* Esconde a navegação e o botão de login */
    }

    .menu-toggle {
        display: block; /* Exibe o botão hamburguer */
        position: absolute;
        left: 20px;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 100%; /* Centraliza a logo */
    }

    /* Ajustes para a seção de equipe */
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 300px;
    }

    /* Ajustes para o rodapé */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .footer-links {
        max-width: 100%;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .social-icons .icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .column h4 {
        font-size: 0.9rem;
    }

    .column ul li a {
        font-size: 0.85rem;
    }

    .footer {
        padding: 20px 10px;
    }

    .footer-bottom {
        padding: 8px 0;
    }
}
