/* 
===========================================
MOZAMBIQUEHOPE.ORG - CUSTOM CSS
This file contains only essential custom styles
that complement Bootstrap 5 framework
===========================================
*/

:root {
    /* Color Variables */
    --azul-profundo: #1A365D;
    --verde-esperanca: #2E8B57;
    --laranja-suave: #FF8C42;
    --vermelho-terra: #C84630;
    --bege-areia: #F2EFEA;
    --text-dark: #333333;
    
    /* Shadow Variables */
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    
    /* Spacing */
    --section-padding: 5rem 0;
}

/* ==================== PADRONIZAÇÃO TIPOGRÁFICA ==================== */
/* Estilos gerais para títulos e textos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevenir overflow horizontal */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Padronização de tamanhos e cores para títulos */
h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-profundo);
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--azul-profundo);
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--azul-profundo);
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--azul-profundo);
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--azul-profundo);
}

/* Cores de texto específicas para diferentes fundos */
.bg-azul-profundo h1, .bg-azul-profundo h2, .bg-azul-profundo h3, 
.bg-azul-profundo h4, .bg-azul-profundo h5, .bg-azul-profundo h6,
.bg-verde-esperanca h1, .bg-verde-esperanca h2, .bg-verde-esperanca h3,
.bg-verde-esperanca h4, .bg-verde-esperanca h5, .bg-verde-esperanca h6,
.bg-vermelho-terra h1, .bg-vermelho-terra h2, .bg-vermelho-terra h3,
.bg-vermelho-terra h4, .bg-vermelho-terra h5, .bg-vermelho-terra h6,
.bg-laranja-suave h1, .bg-laranja-suave h2, .bg-laranja-suave h3,
.bg-laranja-suave h4, .bg-laranja-suave h5, .bg-laranja-suave h6 {
    color: #fff;
}

/* Padronização de parágrafos */
p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Padronização dos títulos das seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-profundo);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    background-color: var(--vermelho-terra);
}

/* Padronização dos subtítulos dos cards */
.card-title {
    color: var(--azul-profundo);
    font-weight: 600;
}

.card-text {
    color: #555;
    line-height: 1.5;
}

.bg-light .card-title {
    color: var(--azul-profundo);
}

.bg-azul-profundo .card-title,
.bg-verde-esperanca .card-title,
.bg-vermelho-terra .card-title,
.bg-laranja-suave .card-title {
    color: #fff;
}

/* Ajuste específico para a seção Como Ajudar */
#como-ajudar h3 {
    color: #000 !important;
} 

#como-ajudar h4 {
    color: #fff !important;
}

#como-ajudar h5 {
    color: #333333 !important;
}

/* Padronização dos cards em fundos escuros */
.bg-azul-profundo .card h3, 
.bg-azul-profundo .card h4, 
.bg-azul-profundo .card h5,
.bg-verde-esperanca .card h3,
.bg-verde-esperanca .card h4,
.bg-verde-esperanca .card h5,
.bg-vermelho-terra .card h3,
.bg-vermelho-terra .card h4,
.bg-vermelho-terra .card h5,
.bg-laranja-suave .card h3,
.bg-laranja-suave .card h4,
.bg-laranja-suave .card h5 {
    color: var(--azul-profundo);
}

/* Padronização dos espaçamentos */
.card-body {
    padding: 1.5rem;
}

.list-group-item {
    padding: 0.75rem 1.25rem;
}

/* Melhorar contraste para acessibilidade */
.text-muted {
    color: #6c757d !important;
}

/* Ajustar cor do texto "Forma de pagamento" */
.payment-methods-container h5 {
    color: #000000;
    font-weight: 600;
}

/* ==================== GENERAL STYLES ==================== */
.section-padding {
    padding: var(--section-padding);
}

.bg-azul-profundo {
    background-color: var(--azul-profundo);
}

.bg-verde-esperanca {
    background-color: var(--verde-esperanca);
}

.bg-vermelho-terra {
    background-color: var(--vermelho-terra);
}

.bg-laranja-suave {
    background-color: var(--laranja-suave);
}

.bg-bege-areia {
    background-color: var(--bege-areia);
}

.text-azul-profundo {
    color: var(--azul-profundo);
}

.text-verde-esperanca {
    color: var(--verde-esperanca);
}

.text-vermelho-terra {
    color: var(--vermelho-terra);
}

.text-laranja-suave {
    color: var(--laranja-suave);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.transition {
    transition: all 0.3s ease;
}

/* ==================== HEADER & NAVIGATION ==================== */
.navbar {
    background-color: rgba(26, 54, 93, 0.95);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    background-color: rgba(26, 54, 93, 0.98) !important;
}

.nav-link {
    position: relative;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--laranja-suave);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 60%;
}

.logo-img {
    height: 45px;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .logo-img {
        height: 55px;
    }
}

.btn-doar {
    background-color: var(--vermelho-terra);
    border-color: var(--vermelho-terra);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(200, 70, 48, 0.3);
    transition: all 0.3s ease;
}

.btn-doar:hover, 
.btn-doar:focus {
    background-color: #a83a29;
    border-color: #a83a29;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(200, 70, 48, 0.4);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 70, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(200, 70, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 70, 48, 0);
    }
}

.tradutor-container {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 4px 12px !important;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.tradutor-container:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.tradutor-container i {
    font-size: 1.1rem;
    margin-right: 8px !important;
}

.tradutor-container::after {
    content: 'Idioma';
    color: white;
    font-size: 0.9rem;
    margin-right: 8px;
    opacity: 0.9;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background-image: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.7)), url('../media/mozambiquechildrens4.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

/* ==================== QUEM SOMOS SECTION ==================== */
.mensagem-igreja {
    border-left: 4px solid var(--vermelho-terra);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    border-radius: 8px;
}

/* Video components */
.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container-widescreen {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-container-portrait {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--vermelho-terra);
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 0.95);
}

.video-stats-overlay {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.video-stat-item {
    background-color: rgba(26, 54, 93, 0.9);
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    min-width: 80px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: rgba(231, 76, 60, 0.9);
}

/* ==================== ATUALIZAÇÃO DOS GRÁFICOS ==================== */
.chart-bar {
    width: 60px !important;
    height: 180px !important;
    border-radius: 6px 6px 0 0 !important;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background-color: var(--azul-profundo) !important;
    margin-bottom: 5px;
    display: block;
    min-height: 30px !important;
}

.chart-bar:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.chart-bar[style*="height: 60%"] {
    height: 180px !important;
}

.chart-bar[style*="height: 30%"] {
    height: 90px !important;
}

.chart-bar[style*="height: 10%"] {
    height: 30px !important;
}

.chart-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--azul-profundo);
    margin-bottom: 10px;
}

/* ==================== NOVAS OPÇÕES DE DOAÇÃO ==================== */
.donation-values-selector {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, #2c5285 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.25);
}

.donation-value-option {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
}

.donation-value-option:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.donation-value-option.active {
    border-color: var(--laranja-suave);
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.donation-value-option .value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.donation-value-option .description {
    font-size: 0.85rem;
    opacity: 0.9;
}

.donation-value-option.outro-valor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donation-value-option.outro-valor .value {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 0.5rem auto;
}

.most-popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--laranja-suave);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.payment-methods-container {
    background-color: rgba(26, 54, 93, 0.05);
    border-left: 3px solid var(--azul-profundo);
}

.payment-method-option {
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.payment-method-option:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.payment-method-option label {
    margin-left: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.payment-method-option i {
    font-size: 1.25rem;
    color: var(--azul-profundo);
}

.donation-impact-message {
    border-left: 3px solid var(--vermelho-terra);
}

/* ==================== CONHECA AS CRIANCAS SECTION ==================== */
.card-img-overlay-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: all 0.3s ease;
}

.card:hover .overlay-gradient {
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent 80%);
}

/* Estilização adicional para títulos em seções de destaque */
.card-overlay-title {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    font-weight: 600;
}

.card-icon-wrapper {
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--azul-profundo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.special-moment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 54, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-profundo);
    font-size: 1.25rem;
}

.special-info {
    background-color: rgba(26, 54, 93, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ==================== NOSSO IMPACTO SECTION ==================== */
.impact-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow);
}

.impact-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.impact-suffix::after {
    content: '%';
}

.counter {
    transition: all 0.5s ease;
}

.transformation-card {
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.transformation-card.before {
    border-left: 4px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.transformation-card.after {
    border-left: 4px solid #198754;
    background-color: rgba(25, 135, 84, 0.05);
}

.transformation-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.transformation-card.before .transformation-badge {
    background-color: #dc3545;
    color: white;
}

.transformation-card.after .transformation-badge {
    background-color: #198754;
    color: white;
}

.video-caption {
    font-style: italic;
    color: #666;
}

.journey-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.journey-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--vermelho-terra);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
}

.timeline {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid #dee2e6;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--azul-profundo);
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-item.future::before {
    background-color: var(--verde-esperanca);
}

.cta-wrapper {
    background: linear-gradient(to right, rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.1));
    border-left: 4px solid var(--azul-profundo);
}

/* ==================== COMO AJUDAR SECTION ==================== */
.donation-highlight {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, #2c5285 100%);
}

.donation-icon-top {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 8rem;
    opacity: 0.05;
    color: white;
    transform: rotate(15deg);
}

.donation-option {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donation-option:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.donation-option.highlight {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--laranja-suave);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.donation-form-card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-option {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(26, 54, 93, 0.05);
    transition: all 0.3s ease;
}

.payment-option:hover {
    background-color: rgba(26, 54, 93, 0.1);
}

.payment-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(25, 135, 84, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid #198754;
    margin-top: 1rem;
}

.transparency-card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
}

.card-icon-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-top i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--azul-profundo);
    font-size: 1.75rem;
}

.report-badge {
    display: inline-block;
    background-color: rgba(26, 54, 93, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    color: var(--azul-profundo);
}

.report-link {
    transition: all 0.3s ease;
}

.report-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.help-options-card {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
}

.help-option {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.help-option:hover {
    transform: translateY(-5px);
}

.help-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ==================== FOOTER ==================== */
.footer-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--laranja-suave);
}

.footer-link {
    transition: all 0.3s ease;
}

.footer-link:hover {
    transform: translateX(5px);
    color: var(--laranja-suave) !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--laranja-suave);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

/* ==================== TRUST BADGES & FLOATING BUTTON ==================== */
#trust-badges {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    z-index: 100;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Floating donation button for mobile */
.floating-donation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    max-width: calc(100vw - 40px);
    overflow: hidden;
}

.badge-item {
    background-color: transparent;
    color: var(--azul-profundo);
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.8);
}

.badge-item i {
    font-size: 1.25rem;
    color: var(--verde-esperanca);
}

@media (min-width: 992px) {
    .badge-item {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    #trust-badges {
        padding: 12px;
    }
}

/* ==================== SECURITY BADGES ==================== */
.security-badges {
    background-color: rgba(240, 249, 245, 0.7);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.security-badge-item {
    transition: transform 0.3s ease;
}

.security-badge-item:hover {
    transform: translateY(-3px);
}

.security-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(25, 135, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.security-badge-icon i {
    color: var(--verde-esperanca);
    font-size: 1.2rem;
}

/* ==================== MEDIA QUERIES ==================== */
@media (min-width: 576px) {
    .video-container-portrait {
        padding-bottom: 130%;
    }
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 3rem;
    }
    
    .video-container-portrait {
        padding-bottom: 120%;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
    
    .video-container-portrait {
        padding-bottom: 100%;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1200px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#google_translate_element {
    min-width: auto;
}

#google_translate_element .goog-te-gadget {
    color: transparent;
}

#google_translate_element .goog-te-gadget .goog-te-combo {
    margin: 0;
    padding: 4px 8px;
    border-radius: 12px;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    color: var(--azul-profundo);
    font-weight: 500;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A365D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    -webkit-appearance: none;
    appearance: none;
}

#google_translate_element .goog-te-gadget .goog-te-combo:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border: none !important;
    outline: none !important;
}

#google_translate_element .goog-te-gadget span {
    display: none;
}

#google_translate_element select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A365D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 25px !important;
}

/* ==================== COMO AJUDAR SECTION - UPDATES ==================== */
.donation-value-showcase {
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, #2c5285 100%);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.25);
    position: relative;
    overflow: hidden; 
}

.donation-impact-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.donation-impact-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.donation-impact-card.highlight {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.donation-impact-card.highlight:hover {
    transform: translateY(-5px) scale(1.08);
}

.donation-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--laranja-suave);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.ribbon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 150px;
    height: 150px;
}

.ribbon {
    position: absolute;
    top: 30px;
    right: -40px;
    transform: rotate(45deg);
    width: 200px;
    background-color: var(--laranja-suave);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.testimonial-box {
    border-left: 4px solid var(--vermelho-terra);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.chart-legend {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.pie-chart-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--azul-profundo) 0% 65%,
        var(--laranja-suave) 65% 90%,
        var(--vermelho-terra) 90% 100%
    );
    box-shadow: var(--shadow);
}

.pie-chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
}

/* Adicionar estilos para o tradutor minimalista */
.tradutor-minimal {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 4px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tradutor-minimal i {
    color: var(--vermelho-terra);
    font-size: 1.2rem;
}

/* Corrigir o gráfico de barras */
.chart-bar {
    width: 60px !important;
    height: 180px !important;
    border-radius: 6px 6px 0 0 !important;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background-color: var(--azul-profundo) !important;
    margin-bottom: 5px;
    display: block;
    min-height: 30px !important;
}

/* Corrigir margens na seção "Como Ajudar" */
#como-ajudar.section-padding {
    padding: 3rem 0 !important;
}

#como-ajudar .container > .row {
    margin-bottom: 2rem !important;
}

/* Garantir contraste adequado em todos os cards */
.card {
    overflow: hidden;
}

.card h3, .card h4, .card h5 {
    color: var(--azul-profundo);
}

.card-body .text-muted {
    color: #666 !important;
}

/* Ajustes para elementos específicos */
.modal-title {
    color: var(--azul-profundo);
    font-weight: 600;
}

.modal-body p {
    color: #444;
    line-height: 1.6;
}

.footer-title-underline {
    width: 40px;
    height: 3px;
}

/* Melhorar legibilidade em fundos escuros */
.bg-azul-profundo p, 
.bg-verde-esperanca p, 
.bg-vermelho-terra p, 
.bg-laranja-suave p {
    color: rgba(255, 255, 255, 0.9);
}

/* Melhorar destaque de botões */
.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-primary, .btn-outline-primary:hover {
    color: #fff;
}

/* Ajustes de legibilidade em mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    /* Improved floating button styles for mobile */
    .floating-donation-btn {
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
    
    .floating-donation-btn .btn {
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ==================== ESTILOS PARA OPÇÕES DE DOAÇÃO ==================== */

/* Container das opções de doação */
.pix-donation, .bank-donation {
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
    max-width: 100%;
    overflow: hidden;
}

/* Garantir que o conteúdo não cause overflow */
.pix-donation .row,
.bank-donation .row {
    margin: 0;
    max-width: 100%;
}

.pix-donation .col-md-4,
.pix-donation .col-md-8,
.bank-donation .col-12 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-width: 100%;
}

/* Títulos das opções de doação - sempre em uma linha */
.pix-donation h5, .bank-donation h5,
.pix-donation h6, .bank-donation h6 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* QR Code PIX */
.qr-code-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-container {
    padding: 0.5rem;
}

/* Layout responsivo para PIX */
@media (max-width: 768px) {
    .qr-code-img {
        max-width: 100px;
    }
    
    .qr-code-container {
        margin-bottom: 1rem;
    }
}

.pix-donation:hover, .bank-donation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(0, 123, 255, 0.2) !important;
}

.bank-donation:hover {
    border-color: rgba(40, 167, 69, 0.2) !important;
}

/* Ícones das opções de doação */
.pix-icon, .bank-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
}

.bank-icon {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.2));
}

/* Container da chave PIX */
.pix-key-container {
    border: 2px dashed #dee2e6 !important;
    transition: all 0.3s ease;
}

.pix-key-container:hover {
    border-color: #007bff !important;
    background-color: rgba(0, 123, 255, 0.05) !important;
}

/* Chave PIX - nunca quebrar, tamanho otimizado */
.pix-key-container p {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    line-height: 1.2;
    max-width: 100%;
}

/* Detalhes bancários */
.bank-details {
    border: 2px dashed #dee2e6 !important;
    transition: all 0.3s ease;
}

.bank-details:hover {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

/* Botões de copiar */
.btn-outline-primary, .btn-outline-success {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-1px);
}

.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    transform: translateY(-1px);
}

/* Notificações de cópia */
.copy-notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Espaçamento entre as opções de doação */
.pix-donation {
    margin-bottom: 1.5rem;
}

.bank-donation {
    margin-bottom: 0;
}

/* Responsividade para as opções de doação */
@media (max-width: 768px) {
    .pix-donation, .bank-donation {
        margin-bottom: 1rem;
    }
    
    .pix-icon, .bank-icon {
        width: 35px;
        height: 35px;
    }
    
    .pix-key-container, .bank-details {
        padding: 0.75rem !important;
    }
    
    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .bank-detail-item span:first-child {
        font-size: 0.75rem;
    }
    
    .bank-detail-item span:last-child {
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    /* Garantir que os títulos não quebrem em mobile */
    .pix-donation h5, .bank-donation h5,
    .pix-donation h6, .bank-donation h6 {
        white-space: nowrap;
        font-size: 1rem;
    }
    
    /* Layout do PIX em mobile - QR code em cima, chave embaixo */
    .pix-donation .row {
        flex-direction: column;
        margin: 0;
    }
    
    .pix-donation .col-md-4,
    .pix-donation .col-md-8 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Chave PIX em mobile - tamanho otimizado */
    .pix-key-container p {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    /* Garantir que textos longos não causem overflow (exceto PIX) */
    .bank-details .bank-detail-item {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Ajustar padding dos containers em mobile */
    .pix-donation, .bank-donation {
        padding: 1rem !important;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Telas muito pequenas - chave PIX otimizada */
@media (max-width: 400px) {
    .pix-key-container p {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .pix-key-container {
        padding: 0.5rem !important;
    }
}

/* Telas extremamente pequenas - último recurso */
@media (max-width: 320px) {
    .pix-key-container p {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Melhorar acessibilidade */
.pix-key-container:focus-within,
.bank-details:focus-within {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Animação suave para os cards */
.pix-donation, .bank-donation {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}