/* --- VARIÁVEIS E RESET --- */
:root {
    --brand-orange: #e85d38; 
    --brand-orange-hover: #cf4e2b;
    --brand-green: #a7c957;  
    --brand-purple: #7a5c96; 
    --dark: #1e293b;
    --text-gray: #475569;
    --light-bg: #f8fafc;
    --section-alt: #ffffff;
    --white: #ffffff;
    --alert-red: #ef4444;
    --alert-red-dark: #dc2626;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--light-bg); color: var(--dark); overflow-x: hidden; line-height: 1.5; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- BOTÕES GLOBAIS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; transition: all 0.3s ease; font-size: 0.95rem; cursor: pointer; }
.btn-primary { background: var(--brand-orange); color: var(--white); box-shadow: 0 6px 15px rgba(232, 93, 56, 0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(232, 93, 56, 0.3); background: var(--brand-orange-hover); color: var(--white); }
.btn-outline { border: 2px solid var(--brand-orange); color: var(--brand-orange); background: transparent; }
.btn-outline:hover { background: var(--brand-orange); color: var(--white); }

/* --- BARRA DE URGÊNCIA NOTÍCIAS (TOP BAR) --- */
.top-bar { background-color: var(--brand-purple); color: var(--white); text-align: center; padding: 10px 15px; font-size: 0.9rem; font-weight: 500; position: relative; z-index: 1001; }
.top-bar a { color: #facc15; text-decoration: underline; font-weight: 800; margin-left: 10px; transition: color 0.3s; }
.top-bar a:hover { color: var(--white); }

/* --- MENU (NAVBAR) --- */
.navbar-wrapper { position: sticky; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 75px; }
.logo img { height: 48px; display: block; transition: transform 0.3s; }
.logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { color: var(--dark); font-weight: 600; font-size: 0.9rem; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--brand-orange); }
.nav-links a:not(.btn-donate)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--brand-orange); transition: width 0.3s; }
.nav-links a:not(.btn-donate):hover::after { width: 100%; }
.btn-donate { padding: 10px 24px; }

/* --- HERO BANNER --- */
.hero { padding: 100px 0 60px; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f1f5f9 100%); text-align: center; }
.hero-badge { display: inline-block; background: rgba(167, 201, 87, 0.15); color: #6a8c20; padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; justify-content: center; gap: 15px; }

/* --- ESPAÇAMENTOS E CABEÇALHOS GERAIS --- */
.section-padding { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.section-header p { color: var(--text-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* --- FAIXA DE PARCEIROS --- */
.partners-section { background-color: var(--light-bg); padding: 40px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; text-align: center; }
.partners-section h4 { color: #94a3b8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partners-logos i { font-size: 2.5rem; color: #cbd5e1; transition: color 0.3s; }
.partners-logos i:hover { color: var(--brand-purple); }

/* --- CARTÃO ESPECIAL DE DENÚNCIAS --- */
.report-section { padding: 50px 0 20px 0; background-color: var(--light-bg); }
.report-card { background: linear-gradient(135deg, var(--alert-red), var(--alert-red-dark)); border-radius: 20px; padding: 40px 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--white); box-shadow: 0 15px 30px rgba(239, 68, 68, 0.2); position: relative; overflow: hidden; }
.report-card::after { content: '\f071'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -10px; bottom: -50px; font-size: 16rem; opacity: 0.1; transform: rotate(-15deg); pointer-events: none; }
.report-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;}
.report-text p { font-size: 1.05rem; opacity: 0.9; max-width: 700px; }
.btn-report { background: var(--white); color: var(--alert-red-dark); padding: 16px 35px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; z-index: 1; box-shadow: 0 5px 15px rgba(0,0,0,0.1);}
.btn-report:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* --- GALERIA DE ADOÇÕES --- */
.gallery-section { background-color: var(--light-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.animal-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s; }
.animal-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(232, 93, 56, 0.1); border-color: rgba(232, 93, 56, 0.2); }
.animal-img-wrapper { height: 220px; position: relative; overflow: hidden; }
.animal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;}
.animal-card:hover .animal-img-wrapper img { transform: scale(1.05); }
.animal-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.9); color: var(--brand-purple); padding: 4px 12px; border-radius: 20px; font-weight: 800; font-size: 0.75rem; backdrop-filter: blur(5px); }
.animal-info { padding: 20px; text-align: center; }
.animal-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; }
.animal-info p { color: var(--text-gray); display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }

/* --- NOTÍCIAS (CARROSSEL MODERNO) --- */
.news-section { background-color: var(--white); }
.news-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.news-header-flex .section-header { margin-bottom: 0; text-align: left; }

.carousel-nav { display: flex; gap: 10px; }
.carousel-btn { width: 45px; height: 45px; border-radius: 50%; background: var(--white); border: 1px solid #e2e8f0; color: var(--dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); font-size: 1.1rem; }
.carousel-btn:hover { background: var(--brand-orange); color: var(--white); border-color: var(--brand-orange); transform: translateY(-2px); }

.news-carousel-container { position: relative; margin: 0 -10px; padding: 0 10px; }
.news-carousel { display: flex; gap: 25px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 20px; scroll-behavior: smooth; }
.news-carousel::-webkit-scrollbar { display: none; }

.news-card { flex: 0 0 calc(33.333% - 17px); min-width: 300px; scroll-snap-align: start; border-radius: 20px; overflow: hidden; background: var(--light-bg); border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.news-img { height: 200px; width: 100%; object-fit: cover; }
.news-content { padding: 25px; }
.news-date { color: var(--brand-purple); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; display: block; }
.news-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.3; }
.news-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 15px; }
.news-link { color: var(--brand-orange); font-weight: 700; font-size: 0.9rem; }
.news-link:hover { text-decoration: underline; }

/* --- COMO AJUDAR --- */
.help-section { background-color: var(--brand-purple); color: var(--white); }
.help-section .section-header h2 { color: var(--white); }
.help-section .section-header p { color: rgba(255,255,255,0.8); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.help-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 30px 25px; text-align: center; backdrop-filter: blur(10px); transition: transform 0.3s; }
.help-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.help-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--brand-green); }

/* --- WHATSAPP --- */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; background-color: #25d366; color: #fff; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3); z-index: 999; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); color: #fff; }

/* --- RODAPÉ --- */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 20px; border-top-left-radius: 30px; border-top-right-radius: 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.15rem; margin-bottom: 20px; color: var(--brand-orange); font-weight: 800; }
.footer-col p, .footer-links a, .contact-info li { color: #94a3b8; font-size: 0.9rem; margin-bottom: 10px; }
.footer-links a:hover { color: var(--brand-green); }
.contact-info li { display: flex; gap: 12px; }
.contact-info i { color: var(--brand-orange); margin-top: 4px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.3s; }
.social-icons a:hover { background: var(--brand-orange); border-color: var(--brand-orange); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #64748b; font-size: 0.8rem; }

/* --- POP-UP (MODAL) DE DENÚNCIAS --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { background: var(--white); border-radius: 24px; width: 90%; max-width: 650px; max-height: 90vh; padding: 40px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.25); transform: translateY(-20px); transition: transform 0.3s ease; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 1.8rem; color: #94a3b8; cursor: pointer; background: none; border: none; transition: color 0.3s; }
.close-modal:hover { color: var(--brand-orange); }
.iframe-zoho { width: 100%; height: 500px; border: none; border-radius: 12px; background: var(--light-bg); margin-top: 20px; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .help-grid, .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; }
    .contact-info li { justify-content: center; }
    .social-icons { justify-content: center; }
    .modal-content { padding: 30px 20px; }
    .report-card { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px;}
    .report-text h2 { justify-content: center; }
    .report-card::after { display: none; }
    .news-header-flex { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .news-header-flex .section-header { text-align: center; }
}
@media (max-width: 768px) {
    .news-card { flex: 0 0 calc(100% - 10px); } 
}