            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            :root {
                --cor-primaria: #2d7d4f;
                --cor-secundaria: #5ba070;
                --cor-terciaria: #7fb588;
                --cor-destaque: #1f5633;
                --cor-claro: #e6f2eb;
                --cor-fundo: #f0f3f1;
                --cor-texto: #1a3a28;
                --cor-texto-claro: #4a6b5a;
                --cor-borda: #d4ddd7;
                --cor-accent: #c9b89f;
            }

            html {
                scroll-behavior: smooth;
                overflow-anchor: none;
            }

            body {
                font-family:
                    "Poppins",
                    "Inter",
                    -apple-system,
                    BlinkMacSystemFont,
                    "Segoe UI",
                    sans-serif;
                line-height: 1.7;
                color: var(--cor-texto);
                background-color: var(--cor-fundo);
            }

            /* ============ HEADER ============ */
            header {
                background: white;
                color: var(--cor-texto);
                padding: 1.2rem 0;
                box-shadow: 0 2px 20px rgba(45, 122, 74, 0.08);
                position: sticky;
                top: 0;
                z-index: 100;
                transition: all 0.3s ease;
            }

            header.scrolled {
                padding: 0.8rem 0;
                box-shadow: 0 4px 30px rgba(45, 122, 74, 0.12);
            }

            .header-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 3rem;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 3rem;
            }

            .logo-area {
                display: flex;
                align-items: center;
                gap: 1.2rem;
                text-decoration: none;
                color: inherit;
            }

            .logo-img {
                width: 55px;
                height: 55px;
                background: linear-gradient(135deg,
                        var(--cor-primaria) 0%,
                        var(--cor-secundaria) 100%);
                border-radius: 12px;
                padding: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                box-shadow: 0 4px 15px rgba(45, 122, 74, 0.2);
            }

            .logo-texto h1 {
                font-size: 1.3rem;
                font-weight: 800;
                margin-bottom: 0.1rem;
                letter-spacing: -0.5px;
                background: linear-gradient(135deg,
                        var(--cor-primaria),
                        var(--cor-secundaria));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .logo-texto p {
                font-size: 0.75rem;
                color: var(--cor-texto-claro);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .menu-toggle {
                display: none;
                flex-direction: column;
                background: none;
                border: none;
                cursor: pointer;
                gap: 6px;
                z-index: 101;
                padding: 0.5rem;
            }

            .menu-toggle span {
                width: 28px;
                height: 3px;
                background: var(--cor-primaria);
                border-radius: 2px;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                transform-origin: center;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
                transform: translateX(-10px);
            }

            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            nav {
                flex: 1;
            }

            nav ul {
                list-style: none;
                display: flex;
                gap: 3rem;
                justify-content: flex-end;
            }

            nav a {
                color: var(--cor-texto);
                text-decoration: none;
                font-size: 0.95rem;
                font-weight: 600;
                transition: all 0.3s ease;
                position: relative;
                white-space: nowrap;
            }

            nav a::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 3px;
                background: linear-gradient(90deg,
                        var(--cor-primaria),
                        var(--cor-secundaria));
                transition: width 0.3s ease;
                border-radius: 2px;
            }

            nav a:hover {
                color: var(--cor-primaria);
            }

            nav a:hover::after {
                width: 100%;
            }

            /* ============ CARROSSEL ============ */
            .carousel-section {
                background: linear-gradient(135deg,
                        var(--cor-primaria) 0%,
                        var(--cor-secundaria) 100%);
                padding: 0;
                margin: 0;
                overflow: hidden;
                position: relative;
                height: 500px;
            }

            .carousel-container {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
                touch-action: pan-y;
            }

            .carousel-wrapper {
                display: flex;
                transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                height: 100%;
            }

            .carousel-slide {
                min-width: 100%;
                height: 100%;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                background-size: cover;
                background-position: center;
            }

            .carousel-slide::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg,
                        rgba(45, 122, 74, 0.7) 0%,
                        rgba(74, 157, 106, 0.7) 100%);
                z-index: 1;
            }

            .carousel-content {
                position: relative;
                z-index: 2;
                color: white;
                text-align: center;
                padding: 3rem;
                max-width: 800px;
                animation: slideInUp 0.8s ease;
            }

            @keyframes slideInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .carousel-content h2 {
                font-size: 3rem;
                font-weight: 800;
                margin-bottom: 1rem;
                color: white;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
                line-height: 1.2;
            }

            .carousel-content p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                opacity: 0.95;
                font-weight: 300;
                line-height: 1.8;
            }

            .carousel-controls {
                position: absolute;
                bottom: 2rem;
                left: 50%;
                transform: translateX(-50%);
                z-index: 3;
                display: flex;
                gap: 1rem;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
                cursor: pointer;
                transition: all 0.3s ease;
                border: 2px solid white;
            }

            .carousel-dot.active {
                background: white;
                transform: scale(1.3);
            }

            .carousel-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255, 255, 255, 0.3);
                border: none;
                color: white;
                font-size: 1.5rem;
                width: 50px;
                height: 50px;
                cursor: pointer;
                border-radius: 50%;
                transition: all 0.3s ease;
                z-index: 3;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .carousel-btn:hover {
                background: rgba(255, 255, 255, 0.6);
                transform: translateY(-50%) scale(1.1);
            }

            .carousel-btn.prev {
                left: 2rem;
            }

            .carousel-btn.next {
                right: 2rem;
            }

            /* ============ CONTEÚDO PRINCIPAL ============ */
            .container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 3rem;
            }

            section {
                padding: 5rem 0;
                border-bottom: 1px solid var(--cor-borda);
            }

            section:last-child {
                border-bottom: none;
            }

            h2 {
                font-size: 2.5rem;
                color: var(--cor-primaria);
                margin-bottom: 3rem;
                text-align: center;
                position: relative;
                padding-bottom: 1.5rem;
                font-weight: 800;
                letter-spacing: -1px;
            }

            h2::before {
                content: "";
                position: absolute;
                top: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 5px;
                background: linear-gradient(90deg,
                        var(--cor-primaria),
                        var(--cor-secundaria));
                border-radius: 3px;
            }

            h2::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--cor-accent);
                border-radius: 2px;
            }

            /* ============ SOBRE ============ */
            .sobre-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
                margin-top: 3rem;
            }

            .sobre-texto h3 {
                font-size: 1.8rem;
                color: var(--cor-primaria);
                margin-bottom: 1.5rem;
                font-weight: 700;
            }

            .sobre-texto p {
                margin-bottom: 1.2rem;
                color: var(--cor-texto-claro);
                line-height: 1.9;
                font-size: 1rem;
            }

            .sobre-box {
                background: white;
                padding: 2.5rem;
                border-radius: 15px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
                border-left: 5px solid var(--cor-secundaria);
                transition:
                    transform 0.3s ease,
                    box-shadow 0.3s ease;
            }

            .sobre-box:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 50px rgba(45, 122, 74, 0.15);
            }

            .sobre-box h3 {
                color: var(--cor-primaria);
                font-size: 1.3rem;
                margin-bottom: 1.2rem;
                font-weight: 700;
            }

            .sobre-box p {
                color: var(--cor-texto-claro);
                font-size: 0.95rem;
                line-height: 1.8;
                margin-bottom: 0.9rem;
            }

            .sobre-box p:last-child {
                margin-bottom: 0;
            }

            .sobre-box li::before {
                content: "✓ ";
                color: var(--cor-secundaria);
                font-weight: 700;
                margin-right: 0.5rem;
            }

            /* ============ CHAPA DIRETIVA ============ */
            .chapa-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin-top: 3rem;
            }

            .membro-card {
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                text-align: center;
                position: relative;
                border-top: 5px solid var(--cor-secundaria);
            }

            .membro-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(45, 122, 74, 0.25);
            }


            .membro-avatar {
                width: 64px;
                height: 64px;
                min-width: 64px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
                color: white;
                font-size: 1.25rem;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
                letter-spacing: 1px;
            }

            .membro-info {
                padding: 2rem 2rem;
            }

            .membro-info h3 {
                font-size: 1.1rem;
                color: var(--cor-texto);
                margin-bottom: 0;
                font-weight: 600;
                line-height: 1.4;
            }

            .membro-cargo {
                color: var(--cor-primaria);
                font-size: 0.72rem;
                font-weight: 700;
                text-transform: uppercase;
                margin-bottom: 1rem;
                letter-spacing: 1px;
            }

            .membro-info p {
                font-size: 0.9rem;
                color: var(--cor-texto-claro);
                line-height: 1.6;
            }

            /* ============ POSTAGENS ============ */
            .posts-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
                gap: 2.5rem;
                margin-top: 3rem;
            }

            .post-card {
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .post-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(45, 122, 74, 0.25);
            }

            .post-imagem {
                width: 100%;
                height: 220px;
                overflow: hidden;
                position: relative;
            }

            .post-imagem-foto {
                background-size: cover;
                background-position: center;
                transition: transform 0.4s ease;
            }

            .post-card:hover .post-imagem-foto {
                transform: scale(1.04);
            }

            .post-imagem-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
            }

            .post-categoria-badge {
                position: absolute;
                bottom: 12px;
                left: 12px;
                background: var(--cor-primaria);
                color: white;
                font-size: 0.68rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.8px;
                padding: 0.3rem 0.7rem;
                border-radius: 5px;
            }

            .post-data {
                position: absolute;
                top: 15px;
                right: 15px;
                background: var(--cor-destaque);
                color: white;
                padding: 0.6rem 1rem;
                border-radius: 8px;
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            .post-conteudo {
                padding: 2rem;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }

            .post-categoria {
                color: var(--cor-secundaria);
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                margin-bottom: 0.8rem;
                letter-spacing: 1px;
            }

            .post-conteudo h3 {
                font-size: 1.25rem;
                color: var(--cor-primaria);
                margin-bottom: 1rem;
                font-weight: 700;
                line-height: 1.4;
                transition: color 0.3s ease;
            }

            .post-card:hover .post-conteudo h3 {
                color: var(--cor-secundaria);
            }

            .post-conteudo p {
                color: var(--cor-texto-claro);
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                flex-grow: 1;
                line-height: 1.7;
            }

            .post-link {
                color: var(--cor-secundaria);
                text-decoration: none;
                font-weight: 700;
                font-size: 0.9rem;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: all 0.3s ease;
                align-self: flex-start;
            }

            .post-link:hover {
                gap: 1rem;
                color: var(--cor-primaria);
            }

            /* ============ CONTATO ============ */
            .contato-split {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                gap: 3rem;
                align-items: start;
                margin-top: 3rem;
                background: white;
                border-radius: 16px;
                padding: 3rem;
                box-shadow: 0 4px 24px rgba(45, 122, 74, 0.08);
            }

            .contato-info h3,
            .contato-social h3 {
                font-size: 1rem;
                font-weight: 700;
                color: var(--cor-texto);
                margin-bottom: 1.2rem;
            }

            .contato-lista {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                margin-bottom: 1.8rem;
            }

            .contato-lista li {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
                font-size: 0.95rem;
                color: var(--cor-texto-claro);
                line-height: 1.5;
            }

            .contato-icon {
                font-size: 1rem;
                flex-shrink: 0;
                margin-top: 0.05rem;
            }

            .btn-whatsapp {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: #25D366;
                color: white;
                padding: 0.7rem 1.4rem;
                border-radius: 8px;
                font-size: 0.9rem;
                font-weight: 700;
                text-decoration: none;
                transition: opacity 0.2s;
            }

            .btn-whatsapp:hover {
                opacity: 0.88;
            }

            .contato-divisor {
                width: 1px;
                background: var(--cor-borda);
                align-self: stretch;
            }

            .contato-social p {
                font-size: 0.9rem;
                color: var(--cor-texto-claro);
                line-height: 1.7;
                margin-bottom: 1.5rem;
            }

            .social-botoes {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .btn-facebook,
            .btn-instagram {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.6rem;
                padding: 0.7rem 1.4rem;
                border-radius: 8px;
                font-size: 0.9rem;
                font-weight: 700;
                text-decoration: none;
                color: white;
                transition: opacity 0.2s;
            }

            .btn-facebook:hover,
            .btn-instagram:hover {
                opacity: 0.88;
            }

            .btn-facebook {
                background: #1877F2;
            }

            .btn-instagram {
                background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
            }

            /* ============ FOOTER ============ */
            footer {
                background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-destaque) 100%);
                color: white;
                padding: 3.5rem 2rem 0;
                font-size: 0.9rem;
            }

            .footer-grid {
                display: grid;
                grid-template-columns: 1.6fr 1fr 1fr;
                gap: 3rem;
                padding-bottom: 2.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-nome {
                font-size: 1.05rem;
                font-weight: 700;
                color: white;
                margin-bottom: 0.3rem;
            }

            .footer-cidade {
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                color: var(--cor-terciaria);
                margin-bottom: 0.9rem;
            }

            .footer-descricao {
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.5);
                line-height: 1.7;
            }

            .footer-col-titulo {
                font-size: 0.72rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                color: var(--cor-terciaria);
                margin-bottom: 1rem;
            }

            .footer-nav {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            .footer-nav a {
                color: rgba(255, 255, 255, 0.6);
                text-decoration: none;
                font-size: 0.88rem;
                transition: color 0.2s;
            }

            .footer-nav a:hover {
                color: white;
            }

            .footer-contato-lista {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                margin-bottom: 1.2rem;
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.6);
            }

            .footer-social-icons {
                display: flex;
                gap: 0.5rem;
            }

            .footer-social-icon {
                width: 34px;
                height: 34px;
                border-radius: 7px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 0.85rem;
                text-decoration: none;
                transition: opacity 0.2s;
            }

            .footer-social-icon:hover {
                opacity: 0.8;
            }

            .footer-facebook { background: #1877F2; }
            .footer-instagram { background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%); }
            .footer-whatsapp { background: #25D366; }

            .footer-rodape {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.2rem 0;
                font-size: 0.78rem;
                color: rgba(255, 255, 255, 0.3);
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            /* ============ MODAL ============ */
            .modal-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.55);
                z-index: 999;
                align-items: center;
                justify-content: center;
                padding: 1.5rem;
                backdrop-filter: blur(3px);
            }

            .modal-overlay.ativo {
                display: flex;
            }

            .modal-post {
                background: white;
                border-radius: 16px;
                padding: 2.5rem;
                max-width: 520px;
                width: 100%;
                position: relative;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
                animation: modalEntrar 0.25s ease;
            }

            @keyframes modalEntrar {
                from { opacity: 0; transform: translateY(20px) scale(0.97); }
                to   { opacity: 1; transform: translateY(0) scale(1); }
            }

            .modal-fechar {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: var(--cor-claro);
                border: none;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                font-size: 0.8rem;
                cursor: pointer;
                color: var(--cor-texto);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.2s;
            }

            .modal-fechar:hover {
                background: var(--cor-borda);
            }

            .modal-header {
                display: flex;
                align-items: center;
                gap: 0.9rem;
                margin-bottom: 1.2rem;
            }

            .modal-emoji {
                font-size: 2.2rem;
                line-height: 1;
            }

            .modal-categoria {
                font-size: 0.72rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: var(--cor-primaria);
            }

            .modal-data {
                font-size: 0.8rem;
                color: var(--cor-texto-claro);
                margin-top: 0.1rem;
            }

            .modal-titulo {
                font-size: 1.15rem;
                font-weight: 700;
                color: var(--cor-texto);
                margin-bottom: 1rem;
                line-height: 1.4;
            }

            .modal-texto {
                font-size: 0.92rem;
                color: var(--cor-texto-claro);
                line-height: 1.8;
                margin-bottom: 1.5rem;
                white-space: pre-line;
            }

            .modal-instagram {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
                color: white;
                padding: 0.6rem 1.2rem;
                border-radius: 8px;
                font-size: 0.85rem;
                font-weight: 700;
                text-decoration: none;
                transition: opacity 0.2s;
            }

            .modal-instagram:hover {
                opacity: 0.88;
            }

            /* ============ BOTÕES ============ */
            .btn-principal {
                background: linear-gradient(135deg,
                        var(--cor-primaria) 0%,
                        var(--cor-secundaria) 100%);
                color: white;
                padding: 1rem 2.5rem;
                border: none;
                border-radius: 50px;
                font-size: 1rem;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s ease;
                text-decoration: none;
                display: inline-block;
                box-shadow: 0 6px 20px rgba(45, 122, 74, 0.3);
                letter-spacing: 0.5px;
            }

            .btn-principal:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 30px rgba(45, 122, 74, 0.4);
            }

            /* ============ RESPONSIVO ============ */
            @media (max-width: 1024px) {
                .container {
                    padding: 0 2rem;
                }

                .header-container {
                    padding: 0 2rem;
                    gap: 2rem;
                }

                .carousel-content h2 {
                    font-size: 2.2rem;
                }

                h2 {
                    font-size: 2rem;
                }

                .sobre-grid {
                    grid-template-columns: 1fr;
                    gap: 2.5rem;
                }
            }

            @media (max-width: 768px) {
                header {
                    padding: 0;
                }

                .header-container {
                    padding: 1rem 1.5rem;
                    gap: 1rem;
                }

                .menu-toggle {
                    display: flex;
                }

                nav {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: white;
                    box-shadow: 0 8px 24px rgba(45, 125, 79, 0.15);
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    z-index: 99;
                }

                nav.active {
                    max-height: 300px;
                }

                nav ul {
                    flex-direction: column;
                    gap: 0;
                    padding: 1rem 0;
                }

                nav a {
                    padding: 1rem 2rem;
                    display: block;
                    border-bottom: 1px solid var(--cor-borda);
                    font-size: 0.95rem;
                    position: relative;
                }

                nav a::after {
                    display: none;
                }

                nav a:hover {
                    background: var(--cor-claro);
                    color: var(--cor-primaria);
                    padding-left: 2.5rem;
                    border-left: 4px solid var(--cor-primaria);
                }

                .logo-img {
                    width: 45px;
                    height: 45px;
                    font-size: 1.5rem;
                }

                .logo-texto h1 {
                    font-size: 1.1rem;
                }

                .carousel-section {
                    height: 350px;
                }

                .carousel-content {
                    padding: 2rem 1.5rem;
                }

                .carousel-content h2 {
                    font-size: 1.6rem;
                    margin-bottom: 0.8rem;
                }

                .carousel-content p {
                    font-size: 0.95rem;
                    margin-bottom: 1.5rem;
                }

                .carousel-btn {
                    display: none;
                    width: 40px;
                    height: 40px;
                    font-size: 1.2rem;
                }

                .carousel-btn.prev {
                    left: 1rem;
                }

                .carousel-btn.next {
                    right: 1rem;
                }

                .carousel-controls {
                    bottom: 1.5rem;
                    gap: 0.8rem;
                }

                .carousel-dot {
                    width: 10px;
                    height: 10px;
                }

                .btn-principal {
                    padding: 0.7rem 1.8rem;
                    font-size: 0.9rem;
                }

                h2 {
                    font-size: 1.6rem;
                    margin-bottom: 2rem;
                }

                h2::before {
                    width: 40px;
                }

                h2::after {
                    width: 60px;
                }

                section {
                    padding: 3rem 0;
                }

                .container {
                    padding: 0 1.5rem;
                }

                .chapa-grid {
                    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                    gap: 1.5rem;
                }

                .membro-card {
                    border-top: 3px solid var(--cor-secundaria);
                }

                .membro-info {
                    padding: 1.5rem;
                }

                .posts-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .post-card {
                    border-top: 3px solid var(--cor-secundaria);
                }

                .post-imagem {
                    height: 200px;
                }

                .post-conteudo {
                    padding: 1.5rem;
                }

                .post-conteudo h3 {
                    font-size: 1.1rem;
                }

                .contato-split {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                    padding: 2rem;
                }

                .contato-divisor {
                    width: 100%;
                    height: 1px;
                }

                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 2rem;
                }

                .footer-marca {
                    grid-column: 1 / -1;
                }

                .footer-rodape {
                    flex-direction: column;
                    text-align: center;
                    gap: 0.3rem;
                }

                .sobre-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .sobre-box {
                    padding: 2rem;
                    border-left-width: 4px;
                }
            }

            @media (max-width: 480px) {
                .header-container {
                    padding: 1rem;
                    gap: 0.8rem;
                }

                .logo-img {
                    width: 40px;
                    height: 40px;
                    font-size: 1.3rem;
                }

                .logo-texto h1 {
                    font-size: 0.95rem;
                }

                .logo-texto p {
                    font-size: 0.65rem;
                }

                .carousel-section {
                    height: 280px;
                }

                .carousel-content {
                    padding: 1.5rem 1rem;
                }

                .carousel-content h2 {
                    font-size: 1.2rem;
                    margin-bottom: 0.6rem;
                }

                .carousel-content p {
                    font-size: 0.85rem;
                    margin-bottom: 1.2rem;
                }

                .carousel-btn {
                    width: 35px;
                    height: 35px;
                    font-size: 1rem;
                }

                .carousel-btn.prev {
                    left: 0.5rem;
                }

                .carousel-btn.next {
                    right: 0.5rem;
                }

                .carousel-controls {
                    bottom: 1rem;
                    gap: 0.6rem;
                }

                .carousel-dot {
                    width: 8px;
                    height: 8px;
                    border-width: 1px;
                }

                .btn-principal {
                    padding: 0.6rem 1.5rem;
                    font-size: 0.85rem;
                }

                h2 {
                    font-size: 1.3rem;
                    margin-bottom: 1.5rem;
                    padding-bottom: 1rem;
                }

                h2::before {
                    width: 30px;
                    top: -10px;
                }

                h2::after {
                    width: 50px;
                }

                section {
                    padding: 2rem 0;
                }

                .container {
                    padding: 0 1rem;
                }

                .chapa-grid {
                    grid-template-columns: 1fr;
                    gap: 1.2rem;
                }

                .membro-info {
                    padding: 1.2rem;
                }

                .membro-info h3 {
                    font-size: 0.95rem;
                }

                .posts-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .post-imagem {
                    height: 180px;
                    font-size: 2.5rem;
                }

                .post-data {
                    top: 10px;
                    right: 10px;
                    padding: 0.4rem 0.7rem;
                    font-size: 0.7rem;
                }

                .post-conteudo {
                    padding: 1.2rem;
                }

                .post-categoria {
                    font-size: 0.7rem;
                }

                .post-conteudo h3 {
                    font-size: 1rem;
                    margin-bottom: 0.6rem;
                }

                .post-conteudo p {
                    font-size: 0.85rem;
                    margin-bottom: 0.8rem;
                }

                .post-link {
                    font-size: 0.85rem;
                }

                .contato-split {
                    padding: 1.5rem;
                    gap: 1.5rem;
                }

                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .footer-marca {
                    grid-column: auto;
                }

                .sobre-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .sobre-texto h3 {
                    font-size: 1.2rem;
                    margin-bottom: 0.8rem;
                }

                .sobre-texto p {
                    font-size: 0.9rem;
                    margin-bottom: 0.8rem;
                }

                .sobre-box {
                    padding: 1.5rem;
                    border-left-width: 4px;
                }

                .sobre-box h3 {
                    font-size: 1.1rem;
                    margin-bottom: 1rem;
                }

                .sobre-box ul {
                    line-height: 1.8;
                }

                .sobre-box li {
                    font-size: 0.9rem;
                }

                footer {
                    padding: 2rem 1rem;
                    font-size: 0.8rem;
                }
            }