/* CORES GERAIS */
:root {
    --teal: #00695C;
    --teal-light: #00897B;
}

/* HEADER */
header {
    background-color: var(--teal);
}
header .nav-link:hover {
    color: #fff !important;
}

/* HERO IMAGE */
.hero-section {
    position: relative;
    background: url(../images/2151993626.jpg) no-repeat center;
    background-size: cover;
    padding: 150px 0px 150px 0px;
    text-align: center;
    height: 550px;
}
.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-hero .shape-fill {
    fill: #ffffff; /* cor da onda (branco) */
}

.hero-img {
    width: 100%;
    border-radius: 0 0 15px 15px;
}
.search-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

/* CENTRAL DE COMUNICADOS */
.comunicados-card img {
    height: 200px;
    object-fit: cover;
}

/* PAGINATION */
.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: var(--teal);
}
.pagination a:hover {
    font-weight: bold;
}

/* GALERIA */
.gallery-card {
    position: relative;
}
.gallery-title {
    background: var(--teal);
    color: white;
    text-align: center;
    margin-top: -3px;
    padding: 8px;
    font-weight: bold;
}

/* NEWS CARDS */
.news-card {
    border: 1px solid #ccc;
    border-radius: 8px;
}
.birthday-list{
    border: 1px solid #ccc;
    border-radius: 8px;
}
    

/* ANIVERSARIANTES */
.birthday-list p {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

/* EVENTOS BOX */
.eventos-card {
    max-width: 280px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 30px;
}


.text-teal{
    color: #00695C;
}

.user-icon{
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.birthday-photo {
    object-fit: cover;
    border: 2px solid #ddd;
}

.nav{
    text-transform: uppercase;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.btn_buscar{
    background-color: #00695C;
    color: #fff;
}
.confirmacao{
    background-color: #000000ad!important;
}
