﻿
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    transition: background-color 0.3s ease;
}

header h1, header h2, header h3 {
    margin-top: 0;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    filter: none !important;
}

.btn-primary:hover {
    background-color: #13394D;
}

.title-effect {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #1a73e8; /* Cor azul agradável e moderna */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1a73e8; /* Cor do destaque inferior */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

.title-effect:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.title-effect:hover {
    color: #13394D;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Sombra suave ao passar o mouse */
}

.conteudoPagina {
    background: #fff !important;
}


/*Background*/
.banner-bk {
    background-image: url('/images/bk1.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 8rem;
}

.consulta-bk {
    background-image: url('/images/bk2.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 26rem;
}


.faleconosco-bk {
    position: relative;
    background-image: url('/images/bk3.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 56rem; /* substitui height fixa por responsiva */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 2rem; /* espaçamento interno para o conteúdo */
    z-index: 1;
}
    .line-bk {
    background: url('/images/line.png') center / 100% auto no-repeat;
}

.footer-bk {
    background: url('/images/caneta.png') right top / 25% auto no-repeat;
}
/*Linhas*/
.barra-gold {
    padding: 0.3em;
    width: 100%;
    background: linear-gradient(90deg, #ffd600 0%, #c59b6d 50%, #ffa900 100%);
}

/*Cores*/
.azul-p{
    color: #00215F;
}

.azul-s {
    color: #3C66B2;
}

.azul-t {
    color: #00aeef;
}

.amarelo-gold {
    color: #BA9221!important;
}
/*Background*/
.bk-azul-p {
    background-color: #00215F;
}

.bk-azul-s {
    background-color: #3C66B2;
}

.bk-azul-t {
    background-color: #00aeef!important;
}

.bk-cinza {
    background-color: #F3F3F3;
}

/*Titulos*/


/*slidee*/
.swiper {
    padding-bottom: 50px;
}

.swiper-slide {
    width: 250px;
    flex-shrink: 0;
}

.img-card {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* SWIPER NAVIGATION BUTTONS AJUSTADAS */
.swiper-button-prev, .swiper-button-next {
    top: 45%;
    width: 25px !important;
    height: 25px !important;
    background-color: #fff;
    color: white;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #003062;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 10px!important;
    color: #003062;
}

/*slide do modal*/
#contentModal .swiper-button-next,
#contentModal .swiper-button-prev {
    display: none !important;
}

.mySwiperModal .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiperModal img {
    max-height: 70vh; /* limita pra não estourar a tela */
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Scroll */
#btnTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #00215F;
    color: white;
    border: none;
    padding: 0px 15px;
    border-radius: 50%;
    border: 3px solid #cfcfcf;
    font-size: 22px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#btnTop:hover {
    opacity: 1;
}

/*Nav*/
/* Quando fixar o menu */
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* garante 100% da largura da janela */
    z-index: 1050;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.sticky-menu .navbar-nav {
    font-size: 0.9rem!important;
}
.sticky-menu {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
}
/* Esconde as colunas com o logo e 50 anos */
.hide-logo {
    display: none !important;
}

.modal-custom {
    padding-top: 10rem!important; /* Ajuste conforme a altura do seu menu fixo */
    z-index: 1056; /* Garante que o modal fique acima do menu fixo (Bootstrap usa 1050 para navbar) */
}

.img-1 {
    margin-top: -3rem;
}
