:root {
    --primary-color: #4e73df;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
}
body {
    background-color: #ededed;
    font-family: 'Segoe UI', system-ui, sans-serif;
    scroll-behavior: smooth;
}

/* Estilo para o item Blog do menu com brilho azul */
.nav-link.menu {
    font-size: 1.2rem; /* Aumenta o tamanho da fonte */
    font-weight: 600; /* Deixa o texto mais destacado */
    color: #fff !important; /* Garante que o texto seja branco */
    text-shadow: 0 0 10px rgba(78, 115, 223, 0.8), /* Brilho azul - tom principal */
                 0 0 20px rgba(78, 115, 223, 0.6), 
                 0 0 30px rgba(78, 115, 223, 0.4);
    animation: blue-glow 2s ease-in-out infinite alternate; /* Animação pulsante */
    transition: all 0.3s ease; /* Transição suave */
    position: relative;
    padding: 0.5rem 1rem !important; /* Ajusta o espaçamento */
    border-radius: 5px; /* Adiciona bordas arredondadas */
}

/* Animação do brilho azul */
@keyframes blue-glow {
    from {
        text-shadow: 0 0 10px rgba(78, 115, 223, 0.8),
                     0 0 20px rgba(78, 115, 223, 0.6),
                     0 0 30px rgba(78, 115, 223, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(78, 115, 223, 1),
                     0 0 25px rgba(78, 115, 223, 0.8),
                     0 0 35px rgba(78, 115, 223, 0.6);
    }
}

/* Efeito hover adicional com brilho mais intenso */
.nav-link.menu:hover {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 25px rgba(78, 115, 223, 0.9),
                 0 0 35px rgba(78, 115, 223, 0.7);
    transform: scale(1.05); /* Pequeno aumento no hover */
    background-color: rgba(78, 115, 223, 0.1); /* Fundo sutil no hover */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .nav-link.menu {
        font-size: 1.1rem; /* Reduz um pouco em telas menores */
        padding: 0.4rem 0.8rem !important;
    }
}

.nav-link.blog-menu {
    font-size: 1.2rem; /* Aumenta o tamanho da fonte */
    font-weight: 600; /* Deixa o texto mais destacado */
    color: #ffeb12 !important; /* Garante que o texto seja branco */
    text-shadow: 0 0 10px rgba(78, 115, 223, 0.8), /* Brilho azul - tom principal */
                 0 0 20px rgba(78, 115, 223, 0.6), 
                 0 0 30px rgba(78, 115, 223, 0.4);
    animation: blue-glow 2s ease-in-out infinite alternate; /* Animação pulsante */
    transition: all 0.3s ease; /* Transição suave */
    position: relative;
    padding: 0.5rem 1rem !important; /* Ajusta o espaçamento */
    border-radius: 5px; /* Adiciona bordas arredondadas */
}

/* Animação do brilho azul */
@keyframes blue-glow {
    from {
        text-shadow: 0 0 10px rgba(78, 115, 223, 0.8),
                     0 0 20px rgba(78, 115, 223, 0.6),
                     0 0 30px rgba(78, 115, 223, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(78, 115, 223, 1),
                     0 0 25px rgba(78, 115, 223, 0.8),
                     0 0 35px rgba(78, 115, 223, 0.6);
    }
}

/* Efeito hover adicional com brilho mais intenso */
.nav-link.blog-menu:hover {
    color: #d6ab00 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 25px rgba(78, 115, 223, 0.9),
                 0 0 35px rgba(78, 115, 223, 0.7);
    transform: scale(1.05); /* Pequeno aumento no hover */
    background-color: rgba(78, 115, 223, 0.1); /* Fundo sutil no hover */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .nav-link.blog-menu {
        font-size: 1.1rem; /* Reduz um pouco em telas menores */
        padding: 0.4rem 0.8rem !important;
    }
}

/* Prefixos para melhor compatibilidade com navegadores */
@-webkit-keyframes blue-glow {
    from {
        text-shadow: 0 0 10px rgba(78, 115, 223, 0.8),
                     0 0 20px rgba(78, 115, 223, 0.6),
                     0 0 30px rgba(78, 115, 223, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(78, 115, 223, 1),
                     0 0 25px rgba(78, 115, 223, 0.8),
                     0 0 35px rgba(78, 115, 223, 0.6);
    }
}

@-moz-keyframes blue-glow {
    from {
        text-shadow: 0 0 10px rgba(78, 115, 223, 0.8),
                     0 0 20px rgba(78, 115, 223, 0.6),
                     0 0 30px rgba(78, 115, 223, 0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(78, 115, 223, 1),
                     0 0 25px rgba(78, 115, 223, 0.8),
                     0 0 35px rgba(78, 115, 223, 0.6);
    }
}

/* Estilos para o e-mail de contato */
.contact-email {
    display: inline-flex;
    align-items: center;
    background: rgba(78, 115, 223, 0.1);
    border: 2px solid rgba(78, 115, 223, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(78, 115, 223, 0.15);
    border-color: rgba(78, 115, 223, 0.5);
    transform: translateY(-2px);
}

.contact-email i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 12px;
}

.email-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.btn-copy-email {
    background: none;
    border: none;
    color: var(--accent-color);
    margin-left: 15px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-copy-email:hover {
    background: rgba(243, 156, 18, 0.2);
    transform: scale(1.1);
}

.email-instructions {
    color: #6c757d;
    font-style: italic;
}

/* Animação de feedback quando copia */
.contact-email.copied {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
}

.contact-email.copied .btn-copy-email i {
    color: #28a745;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-email {
        padding: 10px 0px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-email i {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .btn-copy-email {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .email-text {
        font-size: 1rem;
    }
}

/* Estilos para o rodapé */
footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Links sociais no rodapé - Versão flexbox */
.social-link {
    color: #fff;
    text-decoration: none;
    display: block; /* Usa flexbox */
    align-items: left; /* Alinha ícone e texto verticalmente */
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 8px; /* Espaçamento entre os links */
}

.social-link i {
    margin-right: 8px; /* Espaçamento entre ícone e texto */
    font-size: 1.1rem;
    flex-shrink: 0; /* Impede que o ícone encolha */
    width: 20px; /* Largura fixa para alinhamento */
    text-align: left;
}

.social-link:hover {
    color: var(--accent-color);
}

.social-link:hover i {
    color: #fff;
    background: var(--accent-color);
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .social-link {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    footer .col-md-6.text-md-end {
        text-align: left !important;
    }
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
    text-align: center;
}
.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.donation-contact-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 20px 0;
}

.donation-contact-text i {
    color: var(--accent-color);
    margin-right: 8px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.contact-link:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .donation-contact-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-link {
        display: inline-block;
        margin-top: 5px;
    }
}

.contact-email-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.contact-email-text {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 15px;
    border: 1px solid rgba(78, 115, 223, 0.3);
    border-radius: 25px;
    background: rgba(78, 115, 223, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email-text:hover {
    background: rgba(78, 115, 223, 0.1);
    border-color: rgba(78, 115, 223, 0.5);
    transform: translateY(-2px);
}

.contact-email-text:active {
    transform: translateY(0);
}

.contact-email-text.copied {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
    color: #28a745;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-email-container {
        gap: 8px;
    }
    
    .contact-email-text {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

.btn-hope:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(247, 147, 26, 0.4);
}

.btn-hope::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: none;
    animation: none;
    opacity: 0;
    pointer-events: none;
}

.btn-hope:hover::before {
    animation: shine 2s ease;
    animation-fill-mode: none;
}

@keyframes shine {
    0% { 
        left: -100%; 
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        left: 100%; 
        opacity: 0;
    }
}

.progress {
    height: 24px;
    border-radius: 12px;
    background-color: #e9ecef;
    overflow: hidden;
}
.progress-bar {
    width: 0%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    transition: width 0.6s ease;
}
.phase-card h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.phase-card .lead {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.phase-card .custom-list li i {
    color: var(--accent-color);
}
.phase-card {
    padding: 1.5rem;
}
.mission-card, .donation-card, .phase-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.267);
    margin-bottom: 20px;
    height: 100%;
}
.mission-card:hover, 
.donation-card:hover, 
.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.phase-list {
    list-style: none;
    padding-left: 0;
}
.phase-list li {
    padding: 8px 0;
    border-bottom: 1px solid #94949442;
}
.donation-icon {
    color: var(--accent-color);
    margin: 15px 0;
}
.nested-list {
    list-style-type: circle;
    padding-left: 20px;
    margin: 5px 0;
}
.custom-list {
    list-style: none;
    padding-left: 0;
}
.custom-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}
.custom-list li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 10px;
}
.payment-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}
.payment-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
}
.btn-payment {
    background: linear-gradient(145deg, #FFD700, #F7931A);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(247, 147, 26, 0.3);
    white-space: nowrap;
    cursor: pointer;
    font-size: 1.5rem;
}
.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(247, 147, 26, 0.4);
}
.btn-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: none;
}
.btn-payment:hover::before {
    animation: shine2 0.8s ease;
}

@keyframes shine2 {
    0% { left: -100%; }
    100% { left: 100%; }
}

.payment-info {
    background-color: rgba(255, 215, 0, 0.15);
    border-left: 3px solid #F7931A;
    color: #2c3e50;
    padding: 10px 15px;
    margin-top: 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
    animation: fadeIn 0.25s ease-out;
    max-width: 250px;
    word-break: break-all;
    line-height: 1.4;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
.copy-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1000;
    animation: fadeInOut 2s ease-in-out;
    display: none;
}
@keyframes fadeInOut {
    0% { opacity: 0; top: 10px; }
    20% { opacity: 1; top: 20px; }
    80% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 10px; }
}
.text-fade {
    animation: colorFade 8s infinite alternate;
}
@keyframes colorFade {
    0% { color: #dc3545; }
    50% { color: #dca235; }
    100% { color: #6200ff; }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .payment-container {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-button-wrapper {
        width: 100%;
        max-width: 250px;
    }
}

.campaign-platforms {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.platform-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.platform-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    flex: 1 1 180px;
    max-width: 280px;
}

.platform-link:hover {
    transform: translateY(-5px);
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

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

.platform-icon {
    margin-bottom: 15px;
    color: var(--primary-color, #4e73df);
}

.platform-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-name {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.platform-phase {
    color: #6c757d;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .platform-container {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-link {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .platform-card {
        padding: 15px;
    }
    
    .platform-icon i {
        font-size: 2rem;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .platform-phase {
        font-size: 0.8rem;
    }
}

.phase-1-text {
    color: #ff0000;
    font-weight: 600;
}

.platform-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    cursor: pointer;
    flex: 1 1 180px;
    max-width: 280px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes highlight {
  0% { 
    background-color: transparent; 
    box-shadow: none;
  }
  50% { 
    background-color: rgba(220, 53, 69, 0.2); 
    box-shadow: rgb(220, 53, 70);
  }
  100% { 
    background-color: transparent; 
    box-shadow: none;
  }
}

.shake {
  animation: shake 0.5s ease-in-out !important;
}

#campaign-platforms-title {
    position: relative;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 3s ease-in-out;
    transition: box-shadow 2s ease-in-out;
}

.highlight {
    background-color: rgba(255, 0, 25, 0.2);
    box-shadow: 0 0 15px rgb(255, 0, 25);
}

#payment-container {
    position: relative;
    padding: 15px;
    border-radius: 10px;
    transition: all 1s ease-in-out;
}

#payment-container.highlight {
    background-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgb(255, 217, 0);
    transform: scale(1.02);
}

/* Container principal para os vídeos */
.video-container-wrapper {
    position: relative;
    margin: 20px 0;
}

/* Cards de vídeo */
.video-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* Importante para conter o badge */
}

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

/* Header do vídeo */
.video-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    text-align: center;
    position: relative; /* Crucial para conter o badge */
    overflow: hidden; /* Evita que o badge saia do container */
}

/* Badge de idioma */
.video-card .language-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(238, 90, 36, 0.3);
    z-index: 10;
}

/* Diferenciação visual entre versões */
.english-version .video-header {
    background: linear-gradient(135deg, #4e73df, #224abe);
}

.spanish-version .video-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Wrapper do vídeo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer do vídeo */
.video-footer {
    padding: 20px;
    background: rgba(0,0,0,0.03);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.video-disclaimer {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.video-disclaimer i {
    margin-right: 8px;
    color: var(--accent-color);
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.video-actions .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-header h3 {
        font-size: 1.2rem;
    }
    
    .video-subtitle {
        font-size: 0.85rem;
    }
    
    .video-disclaimer {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .video-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .video-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}