/* Estilos gerais e navbar */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

* {
    transition: all 0.3s ease-in-out;
}

/* Aplicar estilo de scrollbar personalizado em todo o documento */
::-webkit-scrollbar {
    width: 4px;
    /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Cor do fundo do track da barra de rolagem */
}

::-webkit-scrollbar-thumb {
    background-color: #069cbe;
    /* Cor do thumb da barra de rolagem */
    border-radius: 0px;
    /* Bordas arredondadas para deixar mais elegante */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0488a5;
    /* Cor ao passar o mouse no thumb */
}

/* Exemplo de conteúdo com barra de rolagem */
.content {
    max-height: 200px;
    overflow-y: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.top-bar {
    background-color: #069cbe;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info i {
    margin-right: 8px;
}

.top-bar .social-media a {
    color: #ffffff;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-bar .social-media a:hover {
    color: #ffd700;
}

.custom-navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-bottom: 3px solid #e0e0e0;
    transition: top 0.5s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: top 0.5s ease-in-out;
}

.banner {
    width: 100%;
    border-bottom-right-radius: 80px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}


/* Esconde o banner para desktop em telas menores que 768px */
.banner-desktop {
    display: none;
}

/* Exibe o banner para mobile em telas menores que 768px */
.banner-mobile {
    display: block;
}

/* Media query para telas maiores que 768px */
@media (min-width: 768px) {
    .banner-mobile {
        display: none;
        /* Esconde o banner para mobile em telas maiores que 768px */
    }

    .banner-desktop {
        display: block;
        /* Exibe o banner para desktop em telas maiores que 768px */
    }
}


.custom-navbar .navbar-brand img {
    height: 65px;
    margin-right: 12px;
}

.custom-navbar .nav-link {
    color: #069cbe;
    font-size: 1.1rem;
    font-weight: 400;
    margin-right: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #ffffff;
    background-color: #069cbe;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Estilo dos cards de vacina */
/* Estilo dos cards de vacina */
/* Estilo dos cards de vacina */
/* Estilo dos cards de vacina */
.vaccine-card {
    background: radial-gradient(circle, #069cbe, #047ea1);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    /* Aumenta o padding para manter as proporções */
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 360px;
    /* Aumenta a altura do card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

/* Efeito de hover no card */
.vaccine-card:hover {
    transform: scale(1.03);
    /* Leve expansão do card */
}


/* Define uma altura mínima para o título para alinhamento */
.vaccine-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 40px;
}

/* Ajusta o espaço do conteúdo e mantém o botão na parte inferior */
.vaccine-card ul {
    list-style-type: none;
    padding: 0;
    margin: 8px 0 15px;
    flex-grow: 1;
}

.vaccine-card .btn {
    background-color: #ffffff;
    color: #069cbe;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.vaccine-card .btn i {
    font-size: 0.9rem;
    /* Tamanho do ícone */
}

.vaccine-card .btn:hover {
    background-color: #e6f2fa;
    color: #069cbe;
}

/* Centralizar as setas na parte inferior do carrossel */
.owl-nav {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    /* Espaço entre o carrossel e as setas */
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background-color: #069cbe;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

/* Efeito de hover */
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background-color: #047ea1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Remover conteúdo padrão das setas */
.owl-nav button.owl-prev:before,
.owl-nav button.owl-next:before {
    content: none;
}

/* Ícones de seta do Font Awesome */
.owl-nav button.owl-prev::after {
    /* Ícone de seta esquerda do Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.owl-nav button.owl-next::after {
    /* Ícone de seta direita do Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Container geral */
.cta-banner-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Conteúdo e estilo da imagem do banner */
.cta-banner-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Imagem do banner */
.cta-banner {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(70%);
}

/* Sobreposição com gradiente (exibida por padrão) */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(6, 156, 190, 0.85), rgba(4, 126, 161, 0.85));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de leve aumento no hover */
.cta-banner-content:hover .cta-overlay {
    transform: scale(1.02);
}

/* Título e descrição */
.cta-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 80%;
}

/* Botão de ação com ícone */
.cta-button {
    background-color: #ffffff;
    color: #069cbe;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6f2fa;
    color: #047ea1;
}

/* Media Queries para dispositivos móveis */
@media (max-width: 768px) {
    .cta-banner-content {
        height: 350px;
        /* Define a altura de 400px no mobile */
    }

    .cta-banner {
        display: none;
        /* Remove a imagem de fundo no mobile */
    }

    .cta-overlay h2 {
        font-size: 1.5rem;
    }

    .cta-overlay p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}



/* ===================================== */


/* Estilo das colunas customizadas */
.custom-col {
    background-color: #069cbe;
    color: #ffffff;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

/* Hover mais dinâmico */
.custom-col:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Ícones */
.custom-col i {
    color: #ffffff;
}

/* Título e parágrafo */
.custom-col h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-col p {
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* ================================== */


.idades {
    border: solid #047ea1 2px;
    border-radius: 10px 0px 10px 0px;
    font-size: 3vmin;
    color: #047ea1;
    font-weight: 400;
}

.idades:hover {
    border: solid #047ea1 2px;
    border-radius: 10px 0px 10px 0px;
    font-size: 3vmin;
    color: #ffffff;
    font-weight: 400;
    background-color: #047ea1;
}


/* ================================== */


/* Contêiner da lista */
.list-group {
    margin-bottom: 20px;
    padding: 0;
    max-width: 600px;
    /* Limite de largura para legibilidade */
    margin: auto;
}

/* Estilo dos itens da lista */
.list-group-item {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background-color: #ffffff;
    /* Fundo branco para maior elegância */
    color: #333;
    /* Cor do texto para melhor contraste */
    border: 1px solid #e0e0e0;
    /* Bordas suaves */
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    /* Sombra leve */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Ícone */
.list-group-item i {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-right: 12px;
}

/* Hover refinado */
.list-group-item:hover {
    border-color: #4CAF50;
    /* Destaque de borda no hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    /* Sombra mais pronunciada no hover */
    transform: translateY(-3px);
    /* Efeito de leve elevação */
    background-color: #f9fffa;
    /* Fundo levemente esverdeado no hover */
}

/* Título da lista */
.list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50;
    /* Verde para destaque */
    text-align: center;
    margin-bottom: 20px;
}


/* =================================== */


/* Estilo para o título e descrição */
.section-title {
    color: #069cbe;
    font-weight: 500;
    font-size: 2rem;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    color: #4f4f4f;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Estilo dos ícones e texto das características */
.features-list {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4f4f4f;
    margin-bottom: 25px;
    padding-top: 10px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 400;
    color: #069cbe;
    margin-top: 3px;
}

.feature-item p {
    font-weight: 300;
    font-size: 0.9rem;
    color: #6f6f6f;
    line-height: 1.6;
}

.feature-item i {
    color: #069cbe;
}

/* Imagem com sobreposição de texto */
.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: 8px;
    width: 100%;
}

.overlay-text {
    position: absolute;
    top: 15%;
    left: 8%;
    background-color: rgba(6, 156, 190, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.overlay-text .highlight-text {
    font-size: 1.7rem;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 1rem;
        top: 8%;
        left: 5%;
        padding: 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-item {
        flex-direction: row;
        gap: 10px;
    }
}

/* ============================ */


/* Estilo do Footer */
.footer {
    background-color: #069cbe;
    color: #f0f0f0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Gradiente na paleta #069cbe */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, #069cbe, #047ea1);
    z-index: 1;
    opacity: 0.9;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer p,
.footer i {
    color: #dcdcdc;
}

.social-links a {
    color: #dcdcdc;
    font-size: 1.7rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Botão do WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    background-color: #20b955;
    transform: translateY(-3px);
}

/* Divider */
.footer-divider {
    border-top: 1px solid #ffffff;
    opacity: 0.3;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Copyright */
.copyright {
    font-size: 0.85rem;
    color: #dcdcdc;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-title {
        font-size: 1.15rem;
    }

    .social-links a {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estilo do conteúdo principal */
.content {
    padding: 20px;
}

/* Estilo do botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 70%;
    height: 70%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


.nav-link.active {
    color: #069cbe;
    /* Exemplo de cor para o link ativo */
    font-weight: bold;
}

.nav-tabs_calendario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: none;
    margin-bottom: 20px;
    gap: 10px;
}

.nav-tabs_calendario .nav-link {
    color: #069cbe;
    background-color: #fff;
    border: 1px solid #069cbe;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    text-align: center;
}

.nav-tabs_calendario .nav-link:hover {
    color: #005f7f;
    background-color: #e6f9ff;
}

.nav-tabs_calendario .nav-link.active {
    background-color: #069cbe;
    color: #fff;
    border-bottom-color: #fff;
}

.tab-content_calendario {
    color: #333;
    border: 1px solid #069cbe;
    border-radius: 0.5rem;
    padding: 20px;
}

.titulo_calendario {
    color: #069cbe;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.subtitulo_calendario {
    color: #005f7f;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.table_calendario {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table_calendario td {
    border: 1px solid #ddd;
    padding: 10px;
}

.table_calendario tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .nav-tabs_calendario .nav-link {
        flex: 1 1 auto;
        font-size: 0.9rem;
    }

    .titulo_calendario {
        font-size: 1.5rem;
    }

    .tab-content_calendario {
        padding: 15px;
    }

    .subtitulo_calendario {
        font-size: 1.1rem;
    }

    .table_calendario {
        font-size: 0.9rem;
    }

    .table_calendario td {
        display: block;
        text-align: left;
        padding: 10px;
    }

    .table_calendario tr {
        display: block;
        margin-bottom: 10px;
    }

    #tab1-tab::before {
        content: "0 - 6";
        display: inline;
    }

    #tab1-tab {
        visibility: visible;
    }

    #tab1-tab span {
        display: none;
    }

    #tab2-tab::before {
        content: "9 - 19";
        display: inline;
    }

    #tab2-tab {
        visibility: visible;
    }

    #tab2-tab span {
        display: none;
    }

    #tab3-tab::before {
        content: "20 - 59";
        display: inline;
    }

    #tab3-tab {
        visibility: visible;
    }

    #tab3-tab span {
        display: none;
    }

    #tab4-tab::before {
        content: "Gestantes";
        display: inline;
    }

    #tab4-tab {
        visibility: visible;
    }

    #tab4-tab span {
        display: none;
    }

    #tab5-tab::before {
        content: "60+";
        display: inline;
    }

    #tab5-tab {
        visibility: visible;
    }

    #tab5-tab span {
        display: none;
    }
}



.fade_modal{
    background-color: rgba(23, 87, 124, 0.644);
}