
        /* ========================================= */
        /* SEU CSS ORIGINAL ORGANIZADO E OTIMIZADO   */
        /* ========================================= */
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body { 
            font-family: 'Open Sans', sans-serif; 
            color: #2d3748; 
            background-color: #f7fafc; 
            overflow-x: hidden; 
            -webkit-user-select: none; 
            -ms-user-select: none; 
            user-select: none; 
            line-height: 1.6;
        }

        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            pointer-events: none;
        }

        /* HEADER E LOGO GIGANTE */
        header { 
            background: #ffffff; 
            height: 100px; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
        }
        
        .navbar-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 0 2rem; 
            height: 100%;
            position: relative;
        }

        .logo-link { display: block; width: 180px; }
        
        .logo-overlap { 
            position: absolute; 
            top: 0px; 
            left: -6rem; 
            width: 700px; 
            height: auto; 
            z-index: 1005; 
        }

        .nav-menu { display: flex; }
        .nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
        .nav-links a { text-decoration: none; color: #4da6ba; font-weight: 700; font-family: 'Montserrat', sans-serif; transition: 0.3s; font-size: 0.95rem; }
        .nav-links a:hover, .nav-links a.active { color: #3b8799; }

        /* HERO SECTION */
        .hero { 
            background-image: url('banner.png.png'); 
            background-size: cover; 
            background-position: center; 
            height: 300px; 
            position: relative; 
        }
        .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; }
        .hero-content { text-align: center; color: white; max-width: 900px; padding: 0 2rem; }
        .hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .hero-content p { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 600; }

        /* FEATURES (ICONES) */
        .features { padding: 4rem 0; background: #ffffff; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; }
        
        .feature-card { text-align: center; opacity: 0; transform: translateX(-100px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .feature-card:nth-child(1) { transition-delay: 0.1s; }
        .feature-card:nth-child(2) { transition-delay: 0.3s; }
        .feature-card:nth-child(3) { transition-delay: 0.5s; }
        .feature-card:nth-child(4) { transition-delay: 0.7s; }
        .feature-card.show { opacity: 1; transform: translateX(0); }
        
        .feature-card .icon { height: 80px; width: auto; margin-bottom: 1rem; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .feature-card:hover .icon { transform: scale(1.25); }
        .feature-card p { color: #000; font-size: 1rem; line-height: 1.5; }

        /* QUEM SOMOS */
        .about-section { padding: 100px 0; background-color: #f7fafc; }
        .about-grid { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
        .about-text { flex: 1; min-width: 300px; }
        #quem-somos h2 { font-size: 2.5rem; color: #2980b9; margin-bottom: 25px; font-family: 'Montserrat', sans-serif; position: relative; }
        #quem-somos h2::after { content: ''; display: block; width: 80px; height: 5px; background: #3498db; margin-top: 10px; border-radius: 2px; }
        .about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }
        
        .descricao-oficial { font-style: italic; border-left: 4px solid #3498db; padding-left: 20px; margin: 30px auto; color: #4a5568; font-size: 1.1rem; max-width: 800px; line-height: 1.8; }
        #quem-somos p b, #quem-somos p strong { color: #2471a3; }

        .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
        .pillar-item { background-color: #ffffff; border: 2px solid #3498db; padding: 20px; border-radius: 25px; box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; }
        .pillar-item:hover { background-color: #ebf5fb; transform: translateY(-5px); box-shadow: 0 6px 20px rgba(52, 152, 219, 0.25); }
        .pillar-item strong { color: #2980b9; font-size: 1.15rem; margin-bottom: 8px; display: block; border-bottom: 1px solid rgba(52, 152, 219, 0.3); padding-bottom: 5px; }
        .pillar-item span { color: #5d6d7e; font-size: 0.95rem; }

        .about-image { flex: 1; min-width: 300px; border-radius: 20px; overflow: hidden; box-shadow: 15px 15px 0px rgba(52, 152, 219, 0.4); border: 2px solid rgba(52, 152, 219, 0.2); }
        .about-image img { width: 100%; height: auto; display: block; }

        /* PROJETOS E CARDS */
        .container-novo { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: block; }
        .sessao-projetos { background-color: #f7fafc; padding: 4rem 0; font-family: 'Open Sans', sans-serif; }
        .projetos-titulo { text-align: center; margin-bottom: 3rem; }
        .projetos-titulo h2 { font-size: 2.5rem; color: #2d3748; font-family: 'Montserrat', sans-serif; margin-bottom: 1rem; }
        .projetos-titulo p { color: #718096; max-width: 600px; margin: 0 auto; }
        
        .grid-projetos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
        .card-projeto { background: #ffffff; border-radius: 15px; padding: 2.5rem 2rem; text-align: center; box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1); border: 2px solid transparent; transition: all 0.3s ease; }
        .card-projeto:hover { background-color: #ebf5fb; transform: translateY(-5px); box-shadow: 0 6px 20px rgba(52, 152, 219, 0.25); border: 2px solid #3498db; }
        
        .icone-projeto { width: 80px; height: 80px; background-color: #ebf8ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
        .icone-projeto img { width: 40px; height: auto; }
        .card-projeto h3 { font-size: 1.2rem; color: #2b6cb0; margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; }
        .card-projeto p { color: #4a5568; font-size: 0.95rem; }

        /* CONTRIBUIR */
        .sessao-contribuir { background-color: #2b6cb0; padding: 6rem 0; text-align: center; color: #ffffff; font-family: 'Open Sans', sans-serif; }
        .sessao-contribuir h2 { font-size: 2.5rem; margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; }
        .sessao-contribuir p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
        .botao-doar { display: inline-block; background-color: #d69e2e; color: #ffffff; padding: 1rem 2.5rem; border-radius: 30px; font-weight: bold; text-transform: uppercase; text-decoration: none; font-family: 'Montserrat', sans-serif; transition: 0.3s; }
        .botao-doar:hover { background-color: #b7791f; }

        /* GALERIA INFINITA */
        .sessao-galeria { background-color: #ffffff; padding: 4rem 0; overflow: hidden; }
        .galeria-titulo { text-align: center; margin-bottom: 3rem; }
        .galeria-titulo h2 { font-size: 2.5rem; color: #2980b9; font-family: 'Montserrat', sans-serif; }
        .galeria-titulo h2::after { content: ''; display: block; width: 80px; height: 5px; background: #3498db; margin: 10px auto 0; border-radius: 2px; }
        
        .slider-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
        .slider-track { display: inline-flex; gap: 20px; animation: scroll-galeria 25s linear infinite; }
        .slider-track:hover { animation-play-state: paused; }
        .slider-track img { height: 250px; width: auto; border-radius: 15px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.3s ease; cursor: pointer; pointer-events: auto; }
        .slider-track img:hover { transform: scale(1.03); }
        @keyframes scroll-galeria { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 10px)); } }

        /* RODAPÉ PROFISSIONAL (TEXTOS DESLOCADOS) */
        .site-footer { background-color: #1a202c; color: #a0aec0; font-family: 'Open Sans', sans-serif; padding-top: 4rem; }
        .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
        .footer-container h3 { color: #ffffff; font-family: 'Montserrat', sans-serif; font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; }
        .footer-container h3::after { content: ''; display: block; width: 40px; height: 3px; background-color: #3498db; margin-top: 8px; }
        
        .footer-sobre { margin: 0; }
        .footer-logo { width: 600px; height: auto; filter: brightness(0) invert(1); position: relative; top: -30px; left: 0px; }
        .footer-sobre p { position: relative; top: -275px; left: -20px; }
        
        .footer-links { position: relative; z-index: 9999 !important; pointer-events: auto; }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #a0aec0; text-decoration: none; transition: color 0.3s; display: inline-block; padding: 5px 0; cursor: pointer !important; }
        .footer-links a:hover { color: #3498db; }
        
        .footer-contato p { margin-bottom: 1rem; line-height: 1.5; }
        .social-icons { display: flex; gap: 15px; margin-top: 1.5rem; }
        .social-icons a { color: #ffffff; text-decoration: none; font-size: 0.9rem; background-color: #2d3748; padding: 8px 15px; border-radius: 20px; transition: all 0.3s ease; pointer-events: auto; }
        .social-icons a:hover { background-color: #3498db; }
        
        .footer-acao p { margin-bottom: 1.5rem; }
        .btn-voluntario { display: inline-block; background-color: transparent; color: #ffffff; padding: 10px 20px; border: 2px solid #3498db; border-radius: 30px; font-weight: bold; text-transform: uppercase; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; pointer-events: auto; }
        .btn-voluntario:hover { background-color: #3498db; color: #ffffff; box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4); }
        
        .footer-bottom { background-color: #11151c; text-align: center; padding: 1.5rem 2rem; font-size: 0.85rem; color: #718096; position: relative; z-index: 1000; }

        /* ========================================= */
        /* A MÁGICA: AJUSTES PARA TELEMÓVEL (MOBILE) */
        /* ========================================= */
        @media (max-width: 768px) {
            /* 1. Ajuste do Menu/Navbar */
            .navbar-container {
                flex-direction: column; 
                padding: 1rem;
                height: auto;
            }

            .logo-link { width: 100%; display: flex; justify-content: center; }
            
            .logo-overlap {
                position: static; /* Tira o efeito de flutuar no mobile */
                width: 100%; 
                max-width: 250px; /* Logo menor para não vazar a tela */
                height: auto; 
                margin: 0 auto; 
            }

            .nav-menu { width: 100%; }
            nav ul.nav-links {
                flex-wrap: wrap; 
                justify-content: center;
                gap: 12px;
                margin-top: 15px;
                padding: 0;
            }
            .nav-links a { font-size: 0.85rem; }

            /* 2. Ajuste do Título Principal (Hero) */
            .hero { height: 250px; }
            .hero-content h1 { font-size: 1.8rem; }
            .hero-content p { font-size: 0.95rem; }

            /* 3. Seções e Espaçamentos */
            .features, .about-section, .sessao-projetos, .sessao-galeria {
                padding: 3rem 1.5rem; 
            }
            .about-grid { flex-direction: column; gap: 30px; }
            .about-image { box-shadow: 10px 10px 0px rgba(52, 152, 219, 0.4); }
            .pillars { grid-template-columns: 1fr; }

            /* 4. Galeria de Fotos */
            .slider-track img {
                height: 180px; 
            }

            /* 5. Rodapé (Footer) - Anulando as margens negativas do PC */
            .footer-container {
                grid-template-columns: 1fr; 
                text-align: center;
                gap: 2.5rem;
            }

            .footer-container h3::after {
                margin: 8px auto 0; 
            }

            /* Desfaz a Mágica do PC no Mobile para alinhar corretamente */
            .footer-logo {
                width: 200px !important;
                position: static !important;
                margin: 0 auto 1rem auto !important;
            }

            .footer-sobre p {
                position: static !important;
                margin: 0 auto !important;
            }

            .social-icons {
                justify-content: center;
            }
        }
        