/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #2c2c2c;
    color: #f4f4f4;
}

.bg-orange {
    background-color: #FF7A00; /* Laranja Sr. Reis - Ajustar conforme referência exata */
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif; /* Fonte com toque futurista para títulos */
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FF7A00; /* Laranja Sr. Reis */
    margin: 20px auto 0;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.btn-primary {
    background-color: #FF7A00; /* Laranja Sr. Reis */
    color: #fff;
    border: 2px solid #FF7A00;
}

.btn-primary:hover {
    background-color: #e66e00;
    border-color: #e66e00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #FF7A00; /* Laranja Sr. Reis */
    border: 2px solid #FF7A00;
}

.btn-secondary:hover {
    background-color: #FF7A00;
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: #FF7A00; /* Laranja Sr. Reis */
    border: 2px solid #fff;
}

.btn-white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.btn-orange {
    background-color: #FF7A00;
    color: #fff;
    border-color: #FF7A00;
}
.btn-orange:hover {
    background-color: #e66e00;
    border-color: #e66e00;
}

/* Cabeçalho */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

header nav ul li a:hover, header nav ul li a.active {
    color: #FF7A00; /* Laranja Sr. Reis */
    border-bottom-color: #FF7A00;
}

.btn-donate-header {
    margin-left: 30px;
    padding: 10px 20px;
    background-color: #FF7A00; /* Laranja Sr. Reis */
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-donate-header:hover {
    background-color: #e66e00;
}

/* Seção Herói */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Garante que o vídeo não ultrapasse */
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay escuro para legibilidade */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    margin: 0 10px;
    font-size: 1.1rem;
}

/* Seção Sobre Nós */
.about-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-us-text {
    flex: 1;
}

.about-us-text h3 {
    color: #FF7A00; /* Laranja Sr. Reis */
    font-size: 1.8rem;
    margin-top: 30px;
}

.about-us-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.about-us-text ul li {
    margin-bottom: 8px;
}

.about-us-image {
    flex: 1;
    max-width: 500px;
}

.about-us-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.read-more-container {
    text-align: center;
    margin-top: 40px;
}

#idealizador-placeholder {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 5px solid #FF7A00;
}

/* Seção Nossas Ações */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.action-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.action-card-content {
    padding: 25px;
}

.action-card-content h3 {
    font-size: 1.5rem;
    color: #FF7A00;
}

.btn-details {
    display: inline-block;
    margin-top: 15px;
    color: #FF7A00;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-details:hover {
    text-decoration: underline;
}

/* Seção Impacto em Números */
.impact-numbers {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('media/gallery_5.jpeg') no-repeat center center/cover;
    /* Usar uma imagem de fundo genérica ou uma das fornecidas */
    color: #fff;
}

.impact-numbers h2 {
    color: #fff;
}
.impact-numbers h2::after {
    background-color: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.impact-item .impact-number {
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: #FF7A00; /* Laranja Sr. Reis */
    display: block;
}

.impact-item p {
    font-size: 1.1rem;
}

/* Seção CTA Doar */
.cta-donate-section {
    text-align: center;
}

.cta-donate-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}
.cta-donate-section h2::after {
    display: none; /* Remover a linha laranja aqui pois o fundo já é laranja */
}

/* Seção Parceiros */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.partner-logo {
    max-height: 80px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.become-partner-container {
    text-align: center;
    margin-top: 50px;
}

/* Seção Doar */
.donate-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-donate-value {
    padding: 15px 25px;
    font-size: 1.2rem;
    background-color: #fff;
    color: #FF7A00;
    border: 2px solid #FF7A00;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-donate-value:hover, .btn-donate-value.selected {
    background-color: #FF7A00;
    color: #fff;
}

.custom-donation {
    text-align: center;
    margin-bottom: 40px;
}

.custom-donation label {
    font-size: 1.1rem;
    margin-right: 10px;
}

.custom-donation input[type="number"] {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 150px;
    font-size: 1.1rem;
    text-align: center;
}

.payment-methods {
    margin-bottom: 40px;
}

.payment-methods h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #FF7A00;
}

.payment-method {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.payment-method h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.volunteer-section {
    text-align: center;
    margin-bottom: 30px;
}

.volunteer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FF7A00;
}

.transparency-link {
    text-align: center;
    font-size: 1rem;
}

.transparency-link a {
    color: #FF7A00;
    font-weight: bold;
}

/* Rodapé */
.footer-section {
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo-info .footer-logo {
    height: 70px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact h4, .footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FF7A00;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    height: 30px;
    width: 30px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    /* Tentativa de deixar os ícones brancos ou laranjas */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        position: static; /* Para o cabeçalho rolar com a página em mobile */
    }
    header .container {
        flex-direction: column;
    }
    header nav {
        margin-top: 15px;
    }
    header nav ul li {
        margin: 0 10px;
    }
    .btn-donate-header {
        margin-top: 15px;
        margin-left: 0;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .about-us-content {
        flex-direction: column;
    }
    .about-us-image {
        margin-top: 30px;
    }
    h2 {
        font-size: 2.2rem;
    }
    .impact-item .impact-number {
        font-size: 3rem;
    }
    .cta-donate-section h2 {
        font-size: 2rem;
    }
}

