/* Arquivo style.css (Parte 1) - Definições Globais e Seções Iniciais */

/* Variáveis CSS */
:root {
    --primary: #51827C;
    --primary-dark: #3e635f;
    --primary-light: #78a8a2;
    --primary-lighter: #e8f4f2;
    --secondary: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --accent: #ffbe76;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Reset e Definições Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar e Navegação */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: var(--primary);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 700;
}

.logo-text span {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links ul li a:hover {
    color: var(--primary);
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links ul li a:hover::after {
    width: 100%;
}

.donate-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(81, 130, 124, 0.3);
    border: 2px solid var(--primary);
}

.donate-btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(81, 130, 124, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(81, 130, 124, 0.9) 0%, rgba(62, 99, 95, 0.9) 100%), url('/api/placeholder/1900/1000') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-down i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Estilos Gerais de Seção */
section {
    padding: 100px 0;
    position: relative;
}

.section-bg {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

/* About Section Styles */
.about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-col {
    flex: 1;
    min-width: 300px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.about-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card h3 i {
    font-size: 1.5rem;
}

.about-card p {
    color: var(--text-light);
}
/* Arquivo style.css (Parte 2) - Continuação das Seções Específicas, Footer e Responsividade */

/* Mission Section Styles */
.mission-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mission-card:hover .mission-image img {
    transform: scale(1.1);
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.mission-location {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.mission-content {
    padding: 25px;
}

.mission-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.mission-stat {
    flex: 1;
    min-width: 100px;
    padding: 15px;
    background-color: var(--primary-lighter);
    border-radius: 10px;
    text-align: center;
}

.mission-stat h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.mission-stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.mission-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.mission-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.mission-action:hover {
    gap: 12px;
}

/* Missionary Section Styles */
.missionary-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.missionary-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.missionary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.missionary-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.missionary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.missionary-card:hover .missionary-image img {
    transform: scale(1.1);
}

.missionary-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.missionary-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white);
    z-index: 1;
}

.missionary-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.missionary-content p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.missionary-info {
    padding: 25px;
    background-color: var(--white);
}

.missionary-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.missionary-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Gallery Section Styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(81, 130, 124, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-icon {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-modal-close:hover {
    transform: rotate(90deg);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.gallery-modal-nav button {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-modal-nav button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Donate Section Styles */
.donate-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.donate-col {
    flex: 1;
    min-width: 300px;
}

.donate-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.donate-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.donate-content {
    padding: 20px;
}

.donate-content h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.donate-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pix-box {
    background-color: var(--primary-lighter);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.pix-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, 30%);
}

.pix-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pix-title i {
    color: var(--primary);
    font-size: 2rem;
}

.pix-title h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.pix-content {
    background-color: var(--white);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    background-color: var(--primary-dark);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Contact Section Styles */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details p, .contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(81, 130, 124, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(81, 130, 124, 0.2);
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-logo-text span {
    color: #bdc3c7;
    font-size: 0.8rem;
}

.footer-about p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-contact-text {
    color: #bdc3c7;
}

.footer-contact-text a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--white);
}

.footer-newsletter p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    background-color: #1e2a38;
    padding: 25px 0;
    margin-top: 70px;
}

.footer-bottom p {
    text-align: center;
    color: #95a5a6;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .donate-content h3 {
        font-size: 1.8rem;
    }
    
    .mission-container, .missionary-container {
        gap: 20px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.show {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .donate-btn {
        margin: 20px 0 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .mission-container, .missionary-container {
        flex-direction: column;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .contact-row {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .about-card, .mission-card, .missionary-card {
        padding: 20px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .pix-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-content {
        max-width: 95%;
    }
}


/* Estilos para a Seção de WhatsApp */

.whatsapp-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 0;
}

.whatsapp-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 100%;
}

.whatsapp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whatsapp-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 80px;
    height: 80px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1;
    border: 5px solid var(--white);
}

.whatsapp-badge i {
    color: var(--white);
    font-size: 2.5rem;
}

.whatsapp-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.whatsapp-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.whatsapp-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #25D366;
}

.whatsapp-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.whatsapp-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.whatsapp-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.whatsapp-benefits li i {
    color: #25D366;
    font-size: 1.2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.whatsapp-note {
    margin-top: 20px;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animação de pulsar para o botão */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .whatsapp-container {
        flex-direction: column;
    }
    
    .whatsapp-image {
        height: 300px;
    }
    
    .whatsapp-badge {
        bottom: -20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-badge i {
        font-size: 2rem;
    }
    
    .whatsapp-content {
        padding: 30px 20px;
    }
    
    .whatsapp-content h3 {
        font-size: 1.5rem;
    }
}

.hero {
    padding-top: 100px; /* Aumentar o padding superior */
}

/* Ajuste adicional para dispositivos móveis */
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 120px; /* Aumentar ainda mais para mobile */
        min-height: 100vh; /* Garantir altura mínima para evitar sobreposição */
    }
    
    .hero-content {
        padding-top: 40px; /* Espaço adicional para o conteúdo */
    }
    
    /* Garantir que o menu móvel tenha uma cor de fundo sólida e box-shadow */
    .navbar {
        background-color: rgba(255, 255, 255, 0.98); /* Quase opaco */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Caso o menu seja expansível, garantir um z-index adequado */
    .nav-links.show {
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Adicionar margem ao conteúdo quando o menu está aberto */
    body.menu-open .hero-content {
        padding-top: 80px; /* Mais espaço quando o menu está aberto */
    }
    
    /* Ajuste do height para o menu mobile aberto */
    .nav-links {
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

/* Estilos para a Hero Section com vídeo do YouTube em destaque */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(81, 130, 124, 0.9) 0%, rgba(62, 99, 95, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.featured-video-container {
    margin: 30px auto;
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured-video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.featured-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

/* Responsivo para dispositivos móveis */
@media screen and (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-video-container {
        margin: 25px auto;
    }
}