
    /* Reset e fontes */
    * { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }
    body { background-color: #f8f5f2; color: #333; line-height: 1.6; scroll-behavior: smooth; }

    /* Header */
    header {
        background-color: #7a1f2f; 
        color: #fff;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .logo-placeholder {
        width: 60px;
        height: 60px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #7a1f2f;
        border: 2px solid #f2d6d8;
        overflow: hidden;
    }
    
    .logo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .header-text h1 { 
        color: #fff; 
        font-size: 1.5rem; 
        font-weight: 600; 
        margin: 0;
        line-height: 1.2;
    }
    
    .header-text p {
        color: #f2d6d8;
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Navegação Horizontal */
    nav {
        display: flex;
    }
    
    nav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    nav li {
        margin: 0;
    }
    
    nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        font-size: 1rem;
        padding: 10px 15px;
        display: block;
        border-radius: 4px;
    }
    
    nav a:hover { 
        background-color: rgba(255, 255, 255, 0.1); 
        color: #f2d6d8; 
    }
    
    /* Menu Mobile */
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Banner Principal */
    .main-banner {
        width: 100%;
        height: 400px;
        background: linear-gradient(rgba(122, 31, 47, 0.7), rgba(122, 31, 47, 0.7)), 
                    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 0 20px;
    }
    
    .banner-content {
        max-width: 800px;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* Seções */
    section {
        padding: 40px 20px;
        margin: 20px auto;
        max-width: 1100px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .section{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    section h2 { color: #7a1f2f; margin-bottom: 20px; font-size: 1.8rem; font-weight: 600; }
    section p { font-size: 1rem; margin-bottom: 15px; color: #555; }

    /* Botões */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        background-color: #7a1f2f;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
        cursor: pointer;
        border: none;
    }
    .btn:hover { 
        background-color: #a7495e; 
        transform: scale(1.05);
    }

    /* Estatísticas - Menor e Horizontal */
    .stats { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: space-around; 
        text-align: center; 
    }
    .stat { 
        margin: 10px; 
        flex: 1 1 150px; 
        background-color: #fdfdfd; 
        border-radius: 10px; 
        padding: 15px; 
        box-shadow: 0 1px 6px rgba(0,0,0,0.05); 
    }
    .stat h3 { font-size: 1.8rem; color: #7a1f2f; margin-bottom: 10px; }
    .stat p { font-size: 0.9rem; color: #555; }
    
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

    input[type="number"] {
    -moz-appearance: textfield;
    }
    /* Formulário */
    form input, form textarea, form select {
        
        width: 100%; 
        padding: 12px; 
        margin-bottom: 15px; 
        border: 1px solid #ccc; 
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    form input:focus, form textarea:focus, form select:focus {
        border-color: #7a1f2f;
        box-shadow: 0 0 10px rgba(122,31,47,0.2);
    }

    /* Galeria */
    .carousel {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease;
    }
    .carousel-item { 
        min-width: 100%; 
        position: relative;
    }
    .carousel-item img { 
        width: 100%; 
        display: block; 
        border-radius: 12px; 
        height: 400px;
        object-fit: cover;
    }
    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(122, 31, 47, 0.8);
        color: white;
        padding: 15px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(122,31,47,0.7);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 1.5rem;
        transition: background-color 0.3s;
    }
    .carousel-control:hover { background-color: rgba(122,31,47,0.9); }
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }
    .carousel-indicators { 
        display: flex; 
        justify-content: center; 
        margin-top: 15px; 
    }
    .carousel-indicator { 
        width: 12px; 
        height: 12px; 
        border-radius: 50%; 
        background-color: #ccc; 
        margin: 0 5px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    .carousel-indicator.active { background-color: #7a1f2f; }

    /* Vídeos */
    .videos-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    
    .video-item {
        background-color: #f8f5f2;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .video-placeholder {
        width: 100%;
        height: 200px;
        background-color: #ddd;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #7a1f2f;
        font-weight: bold;
    }
    
    .video-item h3 {
        color: #7a1f2f;
        margin-bottom: 10px;
    }

    /* Blog */
    .blog-posts {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .blog-post {
        background-color: #f8f5f2;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .blog-post h3 {
        color: #7a1f2f;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    .blog-post p {
        margin-bottom: 15px;
        color: #555;
    }
    .read-more {
        color: #7a1f2f;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
    }
    .read-more:hover {
        text-decoration: underline;
    }

    /* Sistema de Doação */
    .donation-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
    }
    .donation-option {
        padding: 15px 25px;
        background-color: #f8f5f2;
        border: 2px solid #7a1f2f;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: bold;
        text-align: center;
        min-width: 100px;
    }
    .donation-option:hover, .donation-option.selected {
        background-color: #7a1f2f;
        color: white;
    }
    .custom-donation {
        display: flex;
        margin-top: 15px;
        gap: 10px;
    }
    .custom-donation input {
        flex: 1;
    }

    /* Aviso Pix */
    .pix-warning {
        background-color: #fff3e0;
        border-left: 4px solid #7a1f2f;
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }
    
    .pix-warning strong {
        color: #7a1f2f;
    }

    /* Depoimentos */
    .testimonial {
        background-color: #f8f5f2;
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
        border-left: 4px solid #7a1f2f;
    }
    .testimonial-author {
        font-weight: bold;
        margin-top: 15px;
        color: #7a1f2f;
        text-align: right;
    }

    /* Footer */
    footer { 
        background-color: #222; 
        color: #ddd; 
        text-align: center; 
        padding: 40px 20px; 
        font-size: 0.9rem;
    }
    footer p { margin-bottom: 10px; }
    .social-links {
        margin: 20px 0;
    }
    .social-links a {
        color: #ddd;
        margin: 0 10px;
        font-size: 1.2rem;
        transition: color 0.3s;
    }
    .social-links a:hover {
        color: #f2d6d8;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            padding: 10px 20px;
        }
        
        .logo-container {
            margin-bottom: 10px;
        }
        
        .menu-toggle {
            display: block;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        
        nav {
            width: 100%;
            display: none;
        }
        
        nav.active {
            display: block;
        }
        
        nav ul {
            flex-direction: column;
            width: 100%;
        }
        
        nav li {
            width: 100%;
            text-align: center;
            margin: 5px 0;
        }
        
        nav a {
            padding: 12px;
            border-radius: 4px;
        }
        
        .main-banner {
            height: 300px;
        }
        
        .banner-content h2 {
            font-size: 2rem;
        }
        
        .banner-content p {
            font-size: 1rem;
        }
        
        .stats { flex-direction: row; }
        .videos-container { grid-template-columns: 1fr; }
        .blog-posts { grid-template-columns: 1fr; }
        section { padding: 30px 15px; }
        .donation-options { flex-direction: column; }
        .custom-donation { flex-direction: column; }
        .carousel-item img { height: 250px; }
    }
    
    @media (max-width: 480px) {
        .header-text h1 { font-size: 1.3rem; }
        section h2 { font-size: 1.4rem; }
        .btn { padding: 10px 20px; font-size: 0.9rem; }
        .stats { flex-direction: column; }
    }