/* Estilo automático para a página: planos-de-saude */

#cabecalho {
    .img-cabecalho {
        height: 300px !important;
    }
}

#planoSaude{
    padding: 90px 0 60px;
    background: var(--fundo-azul-super-claro, #F8FCFF);
    
    h3{
        text-align: center;
        color: var(--azul-tercirio, #051E73);
    }

    h2{
        text-align: center;
        color: var(--azul-tercirio);
        margin: 16px 0 40px;
    }

    .card-planos {
        border-radius: 20px;
        border: 1px solid var(--azulAcizentado);
        background: #FFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        text-align: center;

        .img-plano{
            width: 125px;
            height: 125px;
            border-radius: 150px;
            object-fit: cover;
        }
        
        .descri-plano {
            padding: 15px 0 30px;

            .nome-plano {
                color: var(--azul-texto);
                text-align: center;
                font-size: 20px;
                font-weight: 700;
                margin: 10px 0 0 0;
            }
            .tipo-plano {
                color: var(--azul-texto);
                font-size: 18px;
                font-weight: 400;
                margin-bottom: 10px;
            }
        }

        .vantagens{
            border-top: solid 1px var(--azulAcizentado);
            width: 100%;
            padding: 8px 0;
        }

        .tit-vantagem {
            color: var(--azul-texto);
            font-size: 17px;
            font-weight: 700;
            line-height: 24px;
            margin: 0;
        }

        .desc-vantagem {
            color: var(--azul-texto);
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            padding: 0 16px;
        }

        .btn-padrao{
            display: inline-block;
            padding: 10px 40px;
            cursor: pointer;
        }

    }

}

#atendimento{
    padding: 100px 0;

    h3{
        color: var(--azul-tercirio);
    }

    h2{
        color: var(--azul-tercirio);
        line-height: 42px;
    }
    .subitulo{
        color: var(--azul-tercirio);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px; 
    }
    
    .nav-pills {
        display: flex;
        gap: 4px; /* espaçamento entre os botões */
    }

    .nav-pills .nav-item {
        flex: auto;
    }

    .nav-pills .nav-link {
        width: 100%;
        border-radius: 100px;
        background: #E4F7FD;
        color: #060B35;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        padding: 15px 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        background: var(--azul-secundrio, #235AEB);
        color: #fff;

        img{
            filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(58deg) brightness(105%) contrast(102%);
        }
    }

    .img-clinica {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 480px;
        border-radius: 20px;
        position: relative;

        .nome-clinica {
            color: var(--azul-tercirio);
            font-size: 20px;
            font-weight: 600;
            line-height: 20px;
            border-radius: 0 18px;
            background: var(--azul-mais-claro);
            padding: 17px 40px;
            position: absolute;
            left: 0;
            bottom: 0;
            margin: 0;
        }
    }

    .swiper-button-prev {
        width: 40px;
        height: 40px;
        border: solid 1px var(--azul-secundrio);
        border-radius: 40px;
        left: -50px;
    }
    .swiper-button-next {
        width: 40px;
        height: 40px;
        border: solid 1px var(--azul-secundrio);
        border-radius: 40px;
        right: -50px;
    }
    .swiper-button-next:after, .swiper-button-prev:after{
        font-size: 14px;
    }

}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #cabecalho {
        .img-cabecalho {
            height: auto !important;
        }
    }

    #atendimento {
        .nav-pills {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 8px;

            .nav-item {
                flex: 0 0 auto;
            }
        }

        .swiper-button-prev {
            left: 0;
        }
        .swiper-button-next {
            right: 0;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) {
    #cabecalho {
        padding: 30px 15px 0 15px !important;
        .img-cabecalho {
            height: auto !important;
        }
    }

    #planoSaude {
        padding: 40px 15px;
    }

    #atendimento {
        padding: 40px 15px;
        overflow-x: hidden;

        .nav-pills {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 16px;

            .nav-item {
                flex: 0 0 auto;
            }
        }

        .passadores{
            position: absolute;
            top: 150px;
            width: 100%;
            display: flex;
            justify-content: space-between;

            .swiper-button-prev {
                right: var(--swiper-navigation-sides-offset, 10px) !important;
                left: var(--swiper-navigation-sides-offset, 10px) !important;
            }
            .swiper-button-next{
                right: var(--swiper-navigation-sides-offset, 10px) !important;
            }

        }
        /* .swiper-button-prev, .swiper-button-next {
            display: none;
        } */
        .img-clinica {
            height: 310px;
        }
    }
}
