#jumbotron {
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}

#jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 15, 51, 0.85) 0%, rgba(44, 15, 51, 0) 60%);
    z-index: 1;
}

.jumbotron-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
}

.jumbotron-tagline {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.jumbotron-content .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.jumbotron-content .lead {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px !important;
}

.jumbotron-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.home_btn {
    font-weight: bold;
    padding: 10px 25px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    border-radius: 50px;
    border: 2px solid #FFFFFF;
    transition: all 0.3s ease;
}

.home_btn.btn_donate {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-color: var(--primary-color);
}

.home_btn.btn_donate:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.home_btn.btn_support {
    background-color: transparent;
    color: var(--light-text-color);
    border-color: var(--light-text-color);
}

.home_btn.btn_support:hover {
    background-color: var(--light-text-color);
    color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

#summary {
    position: relative;
    overflow: hidden;
}

#summary h3 {
    z-index: 1;
    position: relative;
}

.img-diretora {
    max-width: 125px;
    max-height: 125px;
    border-radius: 100%;
    box-shadow: 0px 0px 7px #beafdd;
}

.img-padrinhos {
    cursor: pointer;
    width: 100%;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-left: 1px solid black;
    z-index: 1;
}

#canvas,
#canvas1 {
    height: 100%;
    width: 100%;
    position: absolute;
}

#about {
    background-color: var(--primary-color);
}

#about .container .row {
    padding: 20px;
    width: 100%;
    background-color: var(--secondary-color);
    margin: -1vw 0;
    color: #d2d1d0;
}

#h1Desc {
    text-align: center;
    margin: 35px auto;
}

#iconeSobre {
    float: left;
    width: 200px;
}

.about-info {
    font-size: 22px;
}

#iconeMissao, #iconeVisao, #iconeValores {
    height: 100px;
    width: auto;
}

#containerPadrinhos {
    display: none;
}

.cardMoreAbout {
    border-radius: 25px;
    box-shadow: -1px 1px 1px #ebc3eb;
    height: 100%; 
    display: flex;
    flex-direction: column;
}
.cardMoreAbout a.noTextDecoration {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.card-description {
    text-align: center;
    margin-bottom: 0;
    font-weight: bold;
    font-style: italic;
    padding: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-more-title {
    text-align: center;
    font-weight: bold;
}

.card-img-container {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Proporção 4:3 (altura é 75% da largura) */
    overflow: hidden;
}

.card-img-container .imgAl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.h1-desc {
    text-align: center;
    margin: 30px auto;
}

.display-4 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .jumbotron-content .display-4 {
        font-size: 2.5rem;
    }
    .jumbotron-content .lead {
        font-size: 1.1rem;
    }
    .jumbotron-buttons {
        flex-direction: column;
        align-items: center;
    }
    .home_btn {
        width: 80%;
        max-width: 280px;
    }
    .display-4 {
        font-size: 2rem;
    }
}