/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #1abc9c;
    --dark-green: #16a085;
    --light-green: #d5f4e6;
    --bg-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Animações de entrada */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

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

/* Seções */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Sobre o Projeto */
.sobre-projeto {
    background: var(--white);
}

.projeto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.projeto-text .destaque {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.8;
}

.projeto-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.lema {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.lema-icon {
    font-size: 3rem;
}

.lema p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.projeto-image {
    display: flex;
    justify-content: center;
}

.projeto-foto {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.projeto-foto:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-green), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

/* Parceria Box */
.parceria-box {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
}

.parceria-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.parceria-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Destinação dos Materiais */
.destinacao {
    background: var(--white);
}

.destinacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destinacao-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.destinacao-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow);
}

.destinacao-card.destaque-oleo {
    background: linear-gradient(135deg, #fff5e6, #ffe4b3);
    border: 2px solid #f39c12;
}

.destinacao-card.destaque-oleo:hover {
    background: linear-gradient(135deg, #ffe4b3, #ffd280);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.destinacao-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.destinacao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.destinacao-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Resultados Destaque */
.resultados-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.resultado-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resultado-numero {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.resultado-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.resultado-nota {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Projeto Sucesso */
.projeto-sucesso {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.projeto-sucesso h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.projeto-sucesso p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Valores */
.valores {
    background: var(--white);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.valor-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.valor-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.valor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.valor-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
}

/* Melhorias */
.melhorias {
    background: var(--bg-light);
}

.melhoria-destaque {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
    margin: 50px 0;
}

.melhoria-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.melhoria-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.melhoria-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.compromisso-box {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.compromisso-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

/* Impactos */
.impactos {
    background: var(--bg-light);
}

.impactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impacto-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.impacto-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.impacto-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.impacto-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Como Participar */
.participar {
    background: var(--white);
}

/* Ações Grid - Nova seção */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.acao-card {
    background: linear-gradient(135deg, var(--light-green), var(--white));
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.acao-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.acao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.acao-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Divider entre ações e participação */
.participar-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.participar-divider h3 {
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
    background: var(--white);
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.participar-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
}

.participar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.participar-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.participar-card:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow);
}

.participar-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.participar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.participar-card p {
    color: var(--text-light);
}

.cta-center {
    text-align: center;
}

/* Depoimento */
.depoimento {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: var(--white);
    padding: 100px 0;
}

.depoimento-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 8rem;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

blockquote {
    position: relative;
    z-index: 1;
}

blockquote p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.depoimento-descricao {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    opacity: 0.9;
    font-style: normal !important;
}

.depoimento-autor {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.depoimento-autor strong {
    font-size: 1.2rem;
}

.depoimento-autor span {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    transform: none !important;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8); }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .projeto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impactos-grid,
    .participar-grid,
    .destinacao-grid,
    .valores-grid,
    .acoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resultados-destaque {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .melhoria-destaque {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    blockquote p {
        font-size: 1.4rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .participar-divider h3 {
        font-size: 1.7rem;
    }
    
    .acao-icon,
    .impacto-icon,
    .destinacao-icon,
    .valor-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .lema {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .lema p {
        font-size: 1.1rem;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 5rem;
    }
    
    .projeto-foto {
        height: 300px;
    }
    
    .projeto-text .destaque {
        font-size: 1.1rem;
    }
    
    .projeto-text p {
        font-size: 1rem;
    }
    
    .resultados-destaque {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resultado-numero {
        font-size: 2.2rem;
    }
    
    .resultado-label {
        font-size: 0.9rem;
    }
    
    .parceria-box,
    .melhoria-destaque {
        padding: 20px;
    }
    
    .parceria-box h3,
    .melhoria-content h3 {
        font-size: 1.2rem;
    }
    
    .parceria-box p,
    .melhoria-content p {
        font-size: 1rem;
    }
    
    .impacto-card,
    .acao-card,
    .destinacao-card,
    .valor-card {
        padding: 25px 20px;
    }
    
    .participar-divider h3 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .participar-card h3,
    .acao-card h3,
    .destinacao-card h3,
    .valor-card h3 {
        font-size: 1.1rem;
    }
    
    blockquote p {
        font-size: 1.2rem;
    }
    
    .depoimento-descricao {
        font-size: 1rem !important;
    }
    
    .depoimento-autor strong {
        font-size: 1rem;
    }
    
    .depoimento-autor span {
        font-size: 0.85rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .projeto-sucesso h3 {
        font-size: 1.4rem;
    }
    
    .projeto-sucesso p {
        font-size: 1rem;
    }
    
    .melhoria-icon {
        font-size: 3.5rem;
    }
}