:root {
    --primary-color: #5a4196; /* Roxo */
    --secondary-color: #2bb575; /* Verde */
    --white: #FFFFFF;
    --light-purple: #a899d0; /* Versão mais clara do roxo para elementos secundários */
    --light-green: #8feec3; /* Versão mais clara do verde */
    --yellow-gold: #c2880b; /* Nova cor - amarelo/dourado */
    --pink: #e870b9; /* Nova cor - rosa/magenta */
    --blue: #3974fa; /* Nova cor - azul */
    --light-yellow: #ebc575; /* Versão mais clara do amarelo/dourado */
    --light-pink: #f3b9db; /* Versão mais clara do rosa */
    --light-blue: #a0bbfd; /* Versão mais clara do azul */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fcfcfc;
}

section {
    padding: 80px 0;
}

h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-weight: 700;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.container-custom {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Top Bar */
.top-bar {
    background-color: var(--blue);
    padding: 0.6rem 0;
    position: relative;
    z-index: 1000;
    border-bottom: none;
    font-size: 14px;
    color: var(--white);
}

.top-bar .contact-info span {
    color: var(--white);
}

.top-bar .social-links a {
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    color: var(--light-purple) !important;
    transform: scale(1.2);
}

/* Navbar */
.navbar {
    background-color: var(--white) !important;
    padding: 1rem 0;
    border-bottom: none;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
}

.navbar .logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover:before, 
.navbar .nav-link.active:before {
    width: 70%;
}

.navbar .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar .nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 20px;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(90, 65, 150, 0.3);
}

/* Containers com bordas arredondadas */
.hero-section-container {
    padding: 0;
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../img/2.png') center/cover no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(30deg, rgba(232, 112, 185, 0.4), rgba(57,116,250, 0.4), rgba(43, 181, 117, 0.4), rgba(90, 65, 150, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    line-height: 1.8;
}

.btn-yellow {
    background-color: var(--yellow-gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-yellow:hover {
    background-color: #fff;
    color: var(--yellow-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section-container {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .btn-yellow {
        font-size: 1rem;
        padding: 0.8rem 2rem !important;
    }
}

.donation-section-container {
    padding: 80px 0;
    position: relative;
}

.donation-section {
    background: url('../img/1.png') center/cover no-repeat;
    position: relative;
    padding: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(232, 112, 185, 0.3), rgba(57,116,250, 0.3), rgba(43, 181, 117, 0.3), rgba(90, 65, 150, 0.5));
    z-index: 1;
}

.donation-section .row {
    position: relative;
    z-index: 2;
}

.donation-section h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    padding-bottom: 0;
}

.donation-section h2:after {
    display: none;
}

.donation-section p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.donation-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
}

.donation-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.donation-details {
    background: rgba(43, 181, 117, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.donation-details p {
    color: #000!important;
    font-size: 1rem;
    margin-bottom: 12px;
    text-shadow: none;
}

.donation-details p:last-child {
    margin-bottom: 0;
}

.donation-details strong {
    color: #000!important;
    font-weight: 600;
    margin-right: 8px;
}

.donation-info .btn-blue {
    background-color: var(--blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--blue);
}

.donation-info .btn-blue:hover {
    background-color: #fff;
    color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 116, 250, 0.2);
}

@media (max-width: 768px) {
    .donation-section {
        padding: 30px;
    }
    
    .donation-section h2 {
        font-size: 2rem;
    }
    
    .donation-section p {
        font-size: 1rem;
    }
    
    .donation-info {
        margin-top: 30px;
        padding: 20px;
    }
    
    .donation-info h3 {
        font-size: 1.5rem;
    }
    
    .donation-details {
        padding: 20px;
    }
}

/* O Que Fazemos */
#oquefazemos {
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

#oquefazemos h2 {
    color: var(--blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0;
}

#oquefazemos h2:after {
    background-color: var(--blue);
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.divider-icon .line {
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.divider-icon i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0 10px;
}

#oquefazemos p.text-center {
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Novo Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 0;
}

.slider-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.projeto-content {
    padding: 0 30px;
}

.projeto-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.projeto-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Controles do Slider */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav span {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 35px;
    }

    .projeto-content {
        padding: 20px 0;
        text-align: center;
    }

    .projeto-content h3 {
        font-size: 1.4rem;
    }

    .slider-item img {
        height: 250px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }
}

/* Na Mídia */
.midia-section {
    margin-bottom: 2rem;
}

.midia-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.midia-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.midia-slider-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 15px;
}

.midia-slider-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.midia-content {
    padding: 15px 0 0 15px;
}

.midia-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.midia-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.midia-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Nosso Trabalho */
.nosso-trabalho-section {
    margin-top: 3rem;
}

.trabalho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.trabalho-item {
    position: relative;
    overflow: hidden;
}

.trabalho-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trabalho-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .midia-slider-item {
        padding: 10px;
    }

    .midia-content {
        padding: 10px 0 0 10px;
    }

    .midia-content h3 {
        font-size: 1rem;
    }

    .midia-slider-item img {
        height: 150px;
    }

    .trabalho-grid {
        gap: 10px;
    }

    .trabalho-item img {
        height: 150px;
    }
}

/* Sobre a ONG */
#sobre {
    background-color: #fff;
    padding: 80px 0;
}

#sobre h2 {
    color: var(--pink);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.sobre-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
}

.sobre-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.sobre-slider-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 50px;
}

.sobre-slider-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.sobre-content {
    padding: 0 30px;
}

.sobre-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sobre-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sobre-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.sobre-slider-nav:hover {
    background-color: var(--primary-color);
}

.sobre-slider-nav:hover span {
    color: var(--white);
}

.sobre-slider-nav.prev {
    left: 0;
}

.sobre-slider-nav.next {
    right: 0;
}

.sobre-slider-nav span {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

#sobre .row.mt-5 p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .sobre-slider-item {
        padding: 20px 35px;
    }

    .sobre-content {
        padding: 20px 0;
        text-align: center;
    }

    .sobre-content h3 {
        font-size: 1.6rem;
        margin-top: 1.5rem;
    }

    .sobre-slider-item img {
        height: 300px;
    }

    .sobre-slider-nav {
        width: 35px;
        height: 35px;
    }

    #sobre .row.mt-5 {
        margin-top: 2rem !important;
    }

    #sobre .row.mt-5 p {
        margin-bottom: 1.5rem;
    }
}

/* Depoimentos */
#depoimentos {
    background-color: var(--white);
    padding: 80px 0;
}

#depoimentos h2 {
    color: var(--yellow-gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0;
}

#depoimentos h2:after {
    background-color: var(--yellow-gold);
}

#depoimentos .divider-icon {
    margin-bottom: 2rem;
}

.depoimentos-subtitulo {
    margin-bottom: 4rem;
}

.depoimentos-subtitulo p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.depoimento-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.depoimento-text {
    margin-bottom: 2rem;
}

.depoimento-text .quote {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.depoimento-text .author {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
}

.depoimento-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.depoimento-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.depoimento-dot.active {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    #depoimentos {
        padding: 60px 0;
    }

    #depoimentos h2 {
        font-size: 2rem;
    }

    .depoimentos-subtitulo {
        margin-bottom: 3rem;
    }

    .depoimento-text .quote {
        font-size: 1.4rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section-container {
        height: 100vh;
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn-yellow {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .donation-section {
        padding: 2rem;
    }
    
    .donation-info {
        margin-top: 1.5rem;
    }
    
    .staff-member img {
        width: 150px;
        height: 150px;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .navbar-nav .btn-primary {
        margin: 0.5rem auto;
        display: inline-block;
    }
}

/* Footer Quote com bordas arredondadas nos cantos superiores */
.footer-quote {
    background-color: var(--secondary-color);
    padding: 3rem 0;
    color: var(--white);
    border-radius: 50px 50px 0 0;
    margin-top: 3rem;
}

.quote-content {
    padding: 1rem;
}

.quote-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.quote-content h2:after {
    display: none;
}

.quote-content .author {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.action-buttons {
    gap: 15px;
}

.action-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.action-buttons .btn-primary {
    background-color: var(--yellow-gold);
    border-color: var(--yellow-gold);
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(194, 136, 11, 0.3);
}

.action-buttons .btn-primary:hover {
    background-color: var(--white);
    color: var(--yellow-gold);
    border-color: var(--white);
    transform: translateY(-3px);
}

.action-buttons .btn-outline-primary {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.action-buttons .btn-outline-primary:hover {
    background-color: var(--white);
    color: var(--yellow-gold);
    border-color: var(--white);
    transform: translateY(-3px);
}

.action-buttons .ou {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0 10px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer Info */
.footer-info {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Copyright */
.copyright {
    background-color: #4a3580; /* Versão mais escura do roxo */
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-quote {
        padding: 40px 0;
    }

    .quote-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .quote-content .author {
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch !important;
        margin-top: 2rem;
    }

    .action-buttons .ou {
        margin: 1rem auto;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info .col-md-3 {
        margin-bottom: 2rem;
    }

    .copyright {
        text-align: center;
    }

    .copyright .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Banner da Página */
.page-banner {
    background-color: var(--primary-color);
    padding: 60px 0;
    position: relative;
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.page-banner-content {
    color: var(--white);
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-banner .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.page-banner .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* Cartões de Projetos */
.project-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: var(--white);
    margin-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(43, 181, 117, 0.3);
}

.project-img {
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Cards CTA */
.cta-card {
    border-radius: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 20px;
}

/* Cartões da Equipe */
.team-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-img {
    height: 100%;
    object-fit: cover;
}

.team-info {
    background-color: white;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contadores */
.counter-item {
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(43, 181, 117, 0.3);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.counter-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Cartões de Depoimentos */
.testimonial-card {
    border-radius: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text p {
    font-style: italic;
    color: #666;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .project-img {
        height: 180px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

/* Página O Que Fazemos */
.project-detail-section {
    padding: 60px 0;
}

.project-detail-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project-detail-image:hover img {
    transform: scale(1.02);
}

.project-detail-content {
    position: relative;
    padding: 20px 0;
}

.project-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.help-card {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.help-icon i {
    color: var(--primary-color);
}

.cta-banner h2, .cta-banner p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-banner .btn {
    padding: 12px 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .project-detail-section {
        padding: 40px 0;
    }
    
    .project-number {
        font-size: 3rem;
        top: -20px;
    }
    
    .order-md-2 {
        order: 0;
    }
    
    .order-md-1 {
        order: 1;
    }
}

/* Página Mídia e Galeria */
.media-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.media-img {
    height: 100%;
    object-fit: cover;
}

.media-info {
    background-color: white;
}

.media-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-main, .video-small {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-main:hover, .video-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-link {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-link {
    transform: scale(1);
}

@media (max-width: 768px) {
    .media-info h3 {
        font-size: 1rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
}

/* Adicionando mais variações de cores aos elementos */
.mission-card:nth-child(1) .mission-icon i {
    color: var(--yellow-gold);
}

.mission-card:nth-child(2) .mission-icon i {
    color: var(--blue);
}

.mission-card:nth-child(3) .mission-icon i {
    color: var(--pink);
}

.feature-item:nth-child(1) .feature-icon i {
    color: var(--yellow-gold);
}

.feature-item:nth-child(2) .feature-icon i {
    color: var(--blue);
}

.feature-item:nth-child(3) .feature-icon i {
    color: var(--pink);
}

.feature-item:nth-child(4) .feature-icon i {
    color: var(--primary-color);
}

.step-card:nth-child(1) .step-icon span {
    background-color: var(--yellow-gold);
}

.step-card:nth-child(2) .step-icon span {
    background-color: var(--blue);
}

.step-card:nth-child(3) .step-icon span {
    background-color: var(--pink);
}

/* Modificando botões de ação no footer */
.action-buttons .btn-primary {
    background-color: var(--yellow-gold);
    border-color: var(--yellow-gold);
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(194, 136, 11, 0.3);
}

.action-buttons .btn-primary:hover {
    background-color: var(--white);
    color: var(--yellow-gold);
    border-color: var(--white);
    transform: translateY(-3px);
}

.action-buttons .btn-outline-primary {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.action-buttons .btn-outline-primary:hover {
    background-color: var(--white);
    color: var(--yellow-gold);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Modificar cores para títulos de seções alternados */
#oquefazemos h2 {
    color: var(--blue);
}

#sobre h2 {
    color: var(--pink);
}

#depoimentos h2 {
    color: var(--yellow-gold);
}

/* Ajustes para dividers coloridos */
#oquefazemos h2:after {
    background-color: var(--blue);
}

#sobre h2:after {
    background-color: var(--pink);
}

#depoimentos h2:after {
    background-color: var(--yellow-gold);
}

/* Botões coloridos com as novas cores */
.btn-yellow {
    background-color: var(--yellow-gold);
    color: var(--white);
    border: 2px solid var(--yellow-gold);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(194, 136, 11, 0.4);
}

.btn-yellow:hover {
    background-color: var(--white);
    color: var(--yellow-gold);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(194, 136, 11, 0.6);
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
    border: 2px solid var(--pink);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(232, 112, 185, 0.4);
}

.btn-pink:hover {
    background-color: var(--white);
    color: var(--pink);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 112, 185, 0.6);
}

.btn-blue {
    background-color: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 5px 15px rgba(57, 116, 250, 0.4);
}

.btn-blue:hover {
    background-color: var(--white);
    color: var(--blue);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(57, 116, 250, 0.6);
}

.btn-sm {
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Links sem sublinhado */
a {
    text-decoration: none !important;
}

/* Estilo para os detalhes de doação */
.donation-details {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.donation-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.donation-details strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
} 

.ico_whats img {
    width: 80px;  
    position: fixed;
    z-index: 99999;
    bottom: 20px; 
    transition: transform 0.3s; 
    right: 20px;
    }

    @media (max-width: 768px) {
    .ico_whats img{
        width: 70px;
        right: 10px;
        }
    }

    .ico_whats img:hover {
    transform: scale(1.1); 
    }

/* Seção Terceiro Setor */
.terceiro-setor {
    background-color: #f8f9fa;
}

.terceiro-setor-content {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.terceiro-setor-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.setor-item {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.setor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.setor-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Valor do Voluntariado */
.voluntariado-valor {
    background-color: #f8f9fa;
}

.data-especial {
    transition: all 0.3s ease;
}

.data-especial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Projetos */
.projeto-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.projeto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.projeto-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.projeto-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.projeto-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.projeto-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.cta-buttons .btn {
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .setor-item {
        margin-bottom: 1rem;
    }
    
    .projeto-card {
        padding: 1.5rem;
    }
    
    .projeto-icon {
        width: 60px;
        height: 60px;
    }
    
    .projeto-icon i {
        font-size: 1.5rem;
    }
}