/* Tema Missão África - Cores: Vermelho e Branco */

:root {
    --cor-primaria: #208e49; /* Vermelho vibrante */
    --cor-secundaria: #ffffff; /* Branco */
    --cor-texto-principal: #333333; /* Preto suave para texto */
    --cor-texto-secundario: #666666; /* Cinza para textos secundários */
    --cor-destaque: #000000; /* Preto para o botão de destaque */
}

/* Estilos gerais para o tema africano */
body {
    background-color: var(--cor-secundaria);
    padding-top: 100px; /* Espaço para o header fixo */
    color: var(--cor-texto-principal);
}

/* Header e navegação - estilo Missão África */
.header {
    background-color: var(--cor-secundaria);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-items li {
    margin: 0 10px;
}

.menu-items li a {
    color: var(--cor-texto-principal);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
}

.menu-items li a:hover {
    color: var(--cor-primaria);
}

.menu-items li a:active {
    transform: scale(0.98);
}

.menu-items li:last-child {
    margin-left: 15px;
}

.nav-btn-doar {
    background-color: var(--cor-primaria);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn-doar:hover {
    background-color: #b80000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--cor-primaria);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero modificado */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../images/africa-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0 2rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Fundo branco para seção hero */
.hero.white-bg {
    background: var(--cor-secundaria);
}

.hero.white-bg h1 {
    color: var(--cor-texto-principal);
    text-shadow: none;
}

.hero:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.hero.white-bg:before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.hero-content h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--cor-primaria);
}

/* Quando o menu móvel está ativo */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--cor-primaria);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--cor-primaria);
}

/* Botão de doação modificado para vermelho */
.btn-doar {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--cor-primaria);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-doar:hover {
    background-color: #b80000;
    color: white;
    border-color: #b80000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Botão Doar Agora de destaque */
.doar-agora-btn {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.btn-doar-destaque {
    background-color: var(--cor-destaque);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--cor-destaque);
}

.btn-doar-destaque:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-destaque);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Media queries para responsividade */
@media (max-width: 991px) {
    .header-content {
        height: 80px;
    }
    
    .logo {
        max-height: 60px;
    }
    
    .menu-items li a {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .nav-btn-doar {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .btn-doar-destaque {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--cor-secundaria);
        transition: all 0.4s ease;
        z-index: 1000;
        padding-top: 70px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-items {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 20px;
    }
    
    .menu-items li {
        margin: 10px 0;
        width: 100%;
    }
    
    .menu-items li a {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--cor-texto-principal);
    }
    
    .menu-items li:last-child {
        margin: 20px 0 0;
    }
    
    .nav-btn-doar {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Overlay para fundo escuro quando menu está aberto */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    .doar-agora-btn {
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .btn-doar-destaque {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding-bottom: 10px;
        margin-bottom: 1.5rem;
    }

    .hero-content h1:after {
        width: 60px;
        height: 2px;
    }
    
    .carousel-container {
        padding-bottom: 100%; /* Proporção 1:1 (quadrada) para celular */
        max-width: 90%;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption {
        padding: 0.8rem;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .carousel-controls {
        bottom: 8px;
        right: 8px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 28px;
        height: 28px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .btn-doar {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .doar-agora-btn {
        max-width: 150px;
    }
    
    .btn-doar-destaque {
        padding: 7px 14px;
        font-size: 12px;
        white-space: nowrap;
    }
}

/* Carrossel de imagens */
.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 para desktop */
}

.carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    text-align: left;
}

.carousel-caption h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    text-align: left;
    padding: 0;
}

.carousel-caption h2:after {
    display: none;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
}

.carousel-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--cor-primaria);
}

.carousel-indicators {
    display: flex;
    margin: 0 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--cor-primaria);
    transform: scale(1.2);
}

/* Seções */
section h2 {
    color: var(--cor-primaria);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

/* Seção História */
.historia, .realidade {
    position: relative;
}

.historia:not(.white-section):before, .realidade:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227, 6, 19, 0.02) 25%, transparent 25%, transparent 50%, rgba(227, 6, 19, 0.02) 50%, rgba(227, 6, 19, 0.02) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.historia-content, .realidade-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 15px;
    text-align: center;
}

.historia-content h2 {
    font-size: 2.5rem; /* Título maior */
    margin-bottom: 1.5rem;
    color: var(--cor-primaria);
    font-weight: 700;
}

.historia-imagem {
    margin: 2rem auto;
    max-width: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.historia-imagem img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.historia-texto {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 1rem 0;
}

.historia-texto p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.25rem;
    color: var(--cor-texto-principal);
}

.historia-texto .btn-doar {
    margin-top: 1rem;
}

/* Ajustes para telas menores */
@media (max-width: 576px) {
    .historia-imagem {
        margin: 1.5rem auto;
        max-width: 95%;
    }
    
    .historia-texto p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }
    
    .historia-texto .btn-doar {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 380px) {
    .historia-texto p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .historia-texto .btn-doar {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Barra de progresso */
.barra-progresso {
    background-color: #f0f0f0;
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.barra-progresso-fill {
    background-color: var(--cor-primaria);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

/* Modal de doação */
.modal-content {
    border-top: 5px solid var(--cor-primaria);
    padding: 2rem;
    border-radius: 0.5rem;
}

.modal h2 {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-subtitulo {
    margin-bottom: 2rem;
    color: var(--cor-texto-secundario);
    text-align: center;
}

/* Grid de valores de doação */
.valores-doacao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Cards de valores */
.valor-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border: 2px solid #eaeaea;
    border-radius: 0.75rem;
    padding: 1.25rem 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.valor-card:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.valor-principal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin-bottom: 0.5rem;
}

.valor-impacto {
    font-size: 0.85rem;
    color: var(--cor-texto-secundario);
    text-align: center;
    line-height: 1.3;
}

/* Estilo para valor popular */
.valor-card.popular {
    border-color: var(--cor-primaria);
    background-color: rgba(227, 6, 19, 0.05);
}

.valor-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--cor-primaria);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.modal-footer {
    border-top: 1px solid #eaeaea;
    padding-top: 1.5rem;
    text-align: center;
}

.modal-footer p {
    font-size: 0.85rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 0.75rem;
}

.metodos-pagamento {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #666;
}

@media (max-width: 576px) {
    .valores-doacao-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem 1rem;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtitulo {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .valor-principal {
        font-size: 1.3rem;
    }

    .valor-impacto {
        font-size: 0.75rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 374px) {
    .valores-doacao-grid {
        gap: 0.5rem;
    }
    
    .valor-card {
        padding: 1rem 0.5rem;
    }
    
    .valor-principal {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .valor-impacto {
        font-size: 0.7rem;
    }
    
    .valor-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Footer */
footer {
    background-color: #444444; /* Cor cinza para o rodapé */
    color: white;
    padding: 3rem 0;
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-mission {
    max-width: 800px;
    margin: 0 auto;
}

.footer-mission h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.footer-mission p {
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info p:last-child {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0;
    }
    
    .footer-mission p {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* Seção branca sem padrões */
.white-section {
    background-color: white;
}

.white-section:before {
    display: none !important;
}

/* Seção de comentários (doar) */
.doar {
    background-color: #fff;
    position: relative;
    padding: 2rem 0;
}

.doar:before {
    display: none;
}

.doar-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 15px;
}

/* Comentários */
.comentario {
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.comentario-header h4 {
    color: var(--cor-texto-principal);
    font-weight: 600;
}

.comentario-texto p {
    color: var(--cor-texto-principal);
}

.comentario-meta span {
    color: var(--cor-texto-secundario);
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-container {
        padding-bottom: 75%; /* Proporção 4:3 para tablet */
    }
    
    .carousel-wrapper {
        height: 100%;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-doar {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding-bottom: 10px;
        margin-bottom: 1.5rem;
    }

    .hero-content h1:after {
        width: 60px;
        height: 2px;
    }
    
    .carousel-container {
        padding-bottom: 100%; /* Proporção 1:1 (quadrada) para celular */
        max-width: 90%;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption {
        padding: 0.8rem;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .carousel-controls {
        bottom: 8px;
        right: 8px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 28px;
        height: 28px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .btn-doar {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção de Galeria */
.galeria {
    padding: 4rem 0;
    background-color: #f8f8f8;
    position: relative;
}

.galeria:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227, 6, 19, 0.02) 25%, transparent 25%, transparent 50%, rgba(227, 6, 19, 0.02) 50%, rgba(227, 6, 19, 0.02) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.galeria-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.galeria h2 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.galeria-descricao {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--cor-texto-secundario);
    font-size: 1.1rem;
    line-height: 1.6;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.galeria-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 0;
    padding-bottom: 100%; /* Proporção quadrada */
    position: relative;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.galeria-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria-footer {
    margin-top: 2rem;
}

.galeria-footer p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--cor-texto-secundario);
}

/* Responsividade da Galeria */
@media (max-width: 991px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .galeria-descricao {
        font-size: 1rem;
    }
}

/* Seção de Embaixadores */
.embaixadores {
    padding: 4rem 0;
    background-color: #fafafa;
    position: relative;
}

.embaixadores-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.embaixadores h2 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.embaixadores-descricao {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--cor-texto-secundario);
    font-size: 1.1rem;
}

/* Carrossel de embaixadores */
.embaixadores-carousel {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.embaixadores-carousel-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.embaixador-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.embaixador-slide.active {
    opacity: 1;
    z-index: 2;
}

.embaixador-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
}

.embaixador-img {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--cor-primaria);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    margin: 0 auto;
}

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

.embaixador-slide:hover .embaixador-img img {
    transform: scale(1.05);
}

.embaixador-info {
    text-align: center;
    max-width: 600px;
    padding: 0 15px;
}

.embaixador-info h3 {
    font-size: 2rem;
    color: var(--cor-texto-principal);
    margin-bottom: 0.6rem;
}

.embaixador-titulo {
    color: var(--cor-primaria);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.embaixador-divisor {
    width: 60px;
    height: 3px;
    background-color: var(--cor-primaria);
    margin: 0 auto 1.2rem;
    opacity: 0.7;
}

.embaixador-frase {
    font-style: italic;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.15rem;
    position: relative;
}

.embaixador-frase::before,
.embaixador-frase::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--cor-primaria);
    opacity: 0.5;
}

.embaixador-frase::before {
    margin-right: 0.1rem;
}

.embaixador-frase::after {
    margin-left: 0.1rem;
}

.embaixadores-controles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2.5rem;
}

.embaixadores-prev,
.embaixadores-next {
    background-color: var(--cor-primaria);
    color: white;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.embaixadores-prev:hover,
.embaixadores-next:hover {
    background-color: #b80000;
    transform: scale(1.1);
}

.embaixadores-indicadores {
    display: flex;
    gap: 12px;
}

.embaixador-indicador {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.embaixador-indicador.active {
    background-color: var(--cor-primaria);
    transform: scale(1.2);
}

.embaixadores-nota {
    font-style: italic;
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsividade para Embaixadores */
@media (max-width: 768px) {
    .embaixadores-carousel-wrapper {
        min-height: 520px;
    }
    
    .embaixador-img {
        width: 200px;
        height: 200px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .embaixador-img {
        width: 180px;
        height: 180px;
    }
    
    .embaixador-info h3 {
        font-size: 1.5rem;
    }
    
    .embaixador-titulo {
        font-size: 1rem;
    }
    
    .embaixador-frase {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .embaixadores-carousel-wrapper {
        min-height: 480px;
    }
}

/* Seção Como Você Pode Ajudar */
.como-ajudar {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.como-ajudar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.como-ajudar h2 {
    color: var(--cor-primaria);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 2.2rem;
}

.como-ajudar h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--cor-primaria);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-ajuda {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-ajuda:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-text {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-text p {
    color: var(--cor-texto-principal);
    line-height: 1.6;
    font-size: 1rem;
}

.btn-card {
    display: inline-block;
    background-color: #FDBA12;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FDBA12;
    font-size: 0.95rem;
}

.btn-card:hover {
    background-color: #e6a800;
    border-color: #e6a800;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsividade para a seção Como Ajudar */
@media (max-width: 768px) {
    .cards-container {
        gap: 20px;
    }
    
    .card-ajuda {
        padding: 1.5rem;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .como-ajudar h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .card-ajuda {
        max-width: 100%;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
}

/* Seção de FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-subtitle {
    color: var(--cor-texto-secundario);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
    display: none;
}

.faq-icon {
    min-width: 24px;
    height: 24px;
    position: relative;
    margin-left: 15px;
}

.faq-plus {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--cor-primaria);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.faq-plus::after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background-color: var(--cor-primaria);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

details[open] .faq-plus::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    margin-top: -1px;
}

.faq-answer p {
    margin: 0;
}

/* Responsividade do FAQ */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-icon {
        min-width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-subtitle {
        font-size: 0.95rem;
    }
}

.valor-card.full-width {
    grid-column: 1 / -1;
    width: 100%;
} 