/*NOVO CSS ATT */

/* ------------------------- */
/* Cabeçalho da página */
/* ------------------------- */

#margemv {
    margin-top: 145px;
    flex: 1;
}

.vereador-capa {
    position: relative;
}

.vereador-capa img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}


.breadcrumb-v {
    position: absolute;
    top: 15px;
    left: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* ------------------------- */
/* Perfil */
/* ------------------------- */

.vereador-profile {
    margin-top: -90px;
    text-align: center;
}

.vereador-profile .foto {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #7bc40e;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.vereador-profile .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vereador-profile h1 {
    margin-top: 10px;
    font-weight: bold;
}

.vereador-profile .cargo {
    margin-top: -15px;
    color: #444;
    font-size: 25px;
}

.vereador-profile .partido {
    color: #0b5cc2;
    margin: 5px 0 15px;
    font-weight: bold;
    font-size: 20px;
}


/* ------------------------- */
/* Conteúdo */
/* ------------------------- */

.container {
    margin: 40px auto;
    padding: 0 20px;
}

.container h2 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: bold;
    color: #0b5cc2;
}

.texto {
    font-size: 20px;
    text-align: justify;
    font-weight: bold;
    color: #000;
}

/* ------------------------- */
/* Timeline (Histórico) */
/* ------------------------- */

.timeline {
    border-left: 3px solid #7bc40e;
    padding-left: 20px;
}

.timeline .item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

.timeline .item:nth-child(odd) {
    animation-delay: .2s;
}

.timeline .item:nth-child(even) {
    animation-delay: .4s;
}

.timeline .bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #7bc40e;
    margin-top: 5px;
}

/* ------------------------- */
/* Contato */
/* ------------------------- */

.contato p {
    font-size: 17px;
    margin-bottom: 8px;
}

/* ------------------------- */
/* Animações */
/* ------------------------- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.bg_person {
    background-color: #004CB3;
    color: #fff;
}

.borda_c {
    border-radius: 15px;
}

.botao-v {
    text-decoration: none !important;
    background-color: #004cb3;
    color: #fff;
    font-weight: bold;
}

.botao-v:hover {
    text-decoration: none !important;
    background-color: #7bc40e;
}


.border-v {
    border-color: #004CB3;
    border-radius: 15px;
}

.text-v {
    color: #004CB3;
}

@media screen and (min-width: 1920px) {
    .vereador-capa img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

    .breadcrumb-v {
        position: absolute;
        top: 30px;
        left: 10%;
        color: #fff;
        font-size: 25px;
        font-weight: 600;
    }
}