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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #1a1a1a;
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #d32f2f 0%, #8b0000 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(211, 47, 47, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Banner/Hero Original */
        .banner {
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.9), rgba(139, 0, 0, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/><g fill="%23d32f2f" opacity="0.1"><polygon points="0,0 400,300 0,600"/><polygon points="1200,200 800,500 1200,800"/><polygon points="400,0 800,200 600,800 200,600"/></g></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), rgba(255, 215, 0, 0.1));
            animation: pulse 4s ease-in-out infinite alternate;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 800px;
        }

        .banner h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInLeft 1s ease-out;
        }

        .banner .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #ffd700;
            font-weight: 600;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            background: linear-gradient(45deg, #ffd700, #ffb300);
            color: #333;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            animation: slideInUp 1s ease-out 0.9s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            background: linear-gradient(45deg, #ffb300, #ffd700);
        }

        /* Nova Seção Banner com Imagem */
.banner-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(211, 47, 47, 0.1),
        rgba(255, 215, 0, 0.1)
    );
    display: none;
    animation: pulse-overlay 4s ease-in-out infinite alternate;
}

@keyframes pulse-overlay {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.banner-overlay .banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.banner-overlay .banner-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: slideInDown 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-overlay .banner-content .subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out 0.3s both;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-overlay .banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInRight 1s ease-out 0.6s both;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-overlay .banner-content .cta-button {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #333;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    animation: slideInUp 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
}

.banner-overlay .banner-content .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.banner-overlay .banner-content .cta-button:hover::before {
    left: 100%;
}

.banner-overlay .banner-content .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffb300, #ffd700);
}

/* Efeito de partículas */
.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffd700" opacity="0.3"/><circle cx="5" cy="5" r="0.3" fill="%23fff" opacity="0.2"/><circle cx="15" cy="15" r="0.4" fill="%23ffd700" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* RESPONSIVIDADE DO BANNER */

/* TABLETS - 1024px e menor */
@media screen and (max-width: 1024px) {
    .banner-page {
        height: 90vh;
    }

    .banner-overlay .banner-content h1 {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .banner-overlay .banner-content .subtitle {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .banner-overlay .banner-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .banner-overlay .banner-content .cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* MOBILE LANDSCAPE - 768px e menor */
@media screen and (max-width: 768px) {
    .banner-page {
        height: 80vh !important;
    }

    .banner-overlay .banner-content {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .banner-overlay .banner-content h1 {
        font-size: 2.8rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
    }

    .banner-overlay .banner-content .subtitle {
        font-size: 1.3rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1.5rem !important;
    }

    .banner-overlay .banner-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
    }

    .banner-overlay .banner-content .cta-button {
        padding: 1.2rem 2rem !important;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }

    .banner-image img {
        object-position: center top;
    }
}

/* MOBILE PORTRAIT - 480px e menor */
@media screen and (max-width: 480px) {
    .banner-page {
        height: 70vh !important;
    }

    .banner-overlay .banner-content {
        padding: 0 0.5rem !important;
    }

    .banner-overlay .banner-content h1 {
        font-size: 2.2rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.8rem !important;
    }

    .banner-overlay .banner-content .subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.2rem !important;
    }

    .banner-overlay .banner-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }

    .banner-overlay .banner-content .cta-button {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* MOBILE MUITO PEQUENO - 320px e menor */
@media screen and (max-width: 320px) {
    .banner-page {
        height: 60vh !important;
    }

    .banner-overlay .banner-content h1 {
        font-size: 1.8rem !important;
    }

    .banner-overlay .banner-content .subtitle {
        font-size: 1rem !important;
    }

    .banner-overlay .banner-content p {
        font-size: 0.8rem !important;
    }

    .banner-overlay .banner-content .cta-button {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.8rem !important;
    }
}
        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
        }

        /* Sobre Section */
        .sobre {
            padding: 6rem 0;
            background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
            color: #fff;
        }

        .sobre-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .sobre-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #ffd700;
            position: relative;
        }

        .sobre-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #d32f2f, #ffd700);
        }

        .sobre-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #e0e0e0;
        }

        .sobre-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(211, 47, 47, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #e0e0e0;
        }

        .sobre-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .sobre-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(211, 47, 47, 0.3), rgba(255, 215, 0, 0.3));
            z-index: 1;
        }

        .sobre-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       /* Seção de Campanhas */
.campanhas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FCFDFD, #FCFDFD);
    position: relative;
    overflow: hidden;
}

.campanhas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d32f2f" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.campanhas-titulo {
    color: #d32f2f;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.campanhas-titulo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #d32f2f, #ffd700);
    border-radius: 2px;
}

.campanhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.campanha-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.campanha-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.campanha-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* Filtro escuro apenas no hover */
.campanha-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0); /* Sem filtro inicial */
    z-index: 1;
    transition: all 0.3s ease;
}

.campanha-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: none; /* Sem filtro inicial */
}

/* Hover effect - aplica filtro escuro */
.campanha-card:hover .campanha-image::before {
    background: rgba(0, 0, 0, 0.6); /* Mais escuro no hover */
}

.campanha-card:hover .campanha-image img {
    transform: scale(1.1);
    filter: brightness(0.7) contrast(1.2); /* Mais escuro no hover */
}

.campanha-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2; /* Acima do filtro escuro */
}

.campanha-card:hover .campanha-overlay {
    opacity: 1;
}

.campanha-info {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.campanha-card:hover .campanha-info {
    transform: translateY(0);
}

.campanha-info h3 {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.campanha-info p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.campanha-btn {
    display: inline-block;
    background: linear-gradient(45deg, #d32f2f, #8b0000);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.campanha-btn:hover {
    background: linear-gradient(45deg, #8b0000, #d32f2f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

/* Indicador de nova campanha */
.campanha-card::before {
    content: 'NOVA';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}

/* Filtros alternativos opcionais */
.campanha-image.dark-filter::before {
    background: rgba(0, 0, 0, 0.6); /* Mais escuro */
}

.campanha-image.dark-filter img {
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
}

.campanha-image.red-filter::before {
    background: linear-gradient(
        45deg,
        rgba(211, 47, 47, 0.3),
        rgba(0, 0, 0, 0.4)
    );
}

.campanha-image.gradient-filter::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Responsividade */
@media (max-width: 768px) {
    .campanhas {
        padding: 4rem 0;
    }

    .campanhas-titulo {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

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

    .campanha-card {
        margin: 0 1rem;
    }

    .campanha-image {
        height: 250px;
    }

    .campanha-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 70%,
            rgba(0, 0, 0, 0.9) 100%
        );
        padding: 1.5rem;
    }

    .campanha-info {
        transform: translateY(0);
    }

    .campanha-info h3 {
        font-size: 1.2rem;
    }

    .campanha-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .campanhas {
        padding: 3rem 0;
    }

    .campanhas-titulo {
        font-size: 2rem;
    }

    .campanha-overlay {
        padding: 1rem;
    }

    .campanha-info h3 {
        font-size: 1.1rem;
    }

    .campanha-info p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .campanha-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
        /* Título da seção parceiros */
        .parceiros-titulo {
            color: #ffd700;
            font-size: 3rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .parceiros-titulo::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #d32f2f, #ffd700);
        }

        .parceiros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .parceiro-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .parceiro-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .parceiro-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .parceiro-logo .logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .parceiro-item:hover .parceiro-logo .logo {
            opacity: 1;
            transform: scale(1.1);
        }

        .parceiro-info h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .parceiro-link {
            color: #ff6b6b;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .parceiro-link:hover {
            color: #ff5252;
            text-decoration: underline;
            transform: scale(1.05);
        }

        /* Formulário */
        .formulario {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1a1a1a, #333);
            position: relative;
        }

        .formulario::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d32f2f" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .form-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .form-header h2 {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .form-header p {
            font-size: 1.3rem;
            color: #e0e0e0;
            line-height: 1.8;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: bold;
            color: #ffd700;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .manifesto {
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.2), rgba(255, 215, 0, 0.1));
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #d32f2f;
            margin: 2rem 0;
            position: relative;
        }

        .manifesto::before {
            content: '✊';
            position: absolute;
            top: -10px;
            left: -10px;
            font-size: 2rem;
            background: #d32f2f;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .manifesto h4 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-transform: uppercase;
        }

        .manifesto p {
            color: #e0e0e0;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .submit-btn {
            background: linear-gradient(45deg, #d32f2f, #8b0000);
            color: #fff;
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
            background: linear-gradient(45deg, #8b0000, #d32f2f);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000, #1a1a1a);
            color: #fff;
            padding: 4rem 0 2rem;
        }

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

        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-transform: uppercase;
        }

        .footer-section p {
            color: #e0e0e0;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            color: #999;
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(45deg, #2e7d32, #388e3c);
            color: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
            border-left: 5px solid #4caf50;
            display: none;
            animation: slideInUp 0.5s ease-out;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

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

        @keyframes slideInDown {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .banner-overlay .banner-content h1 {
                font-size: 3.5rem;
            }

            .banner-overlay .banner-content .subtitle {
                font-size: 1.5rem;
            }

            .banner-overlay .banner-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .banner h1 {
                font-size: 2.5rem;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .banner-content {
                text-align: center;
            }

            .sobre-stats {
                grid-template-columns: 1fr;
            }

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

            .parceiro-item {
                padding: 1.5rem;
            }

            .parceiro-logo {
                width: 70px;
                height: 70px;
            }

            .parceiro-logo .logo {
                width: 50px;
                height: 50px;
            }

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

            .campanha-card {
                margin: 0 1rem;
            }

            .campanhas-titulo {
                font-size: 2.5rem;
                margin-bottom: 2rem;
            }

            .campanha-image {
                height: 250px;
            }

            .campanha-overlay {
                opacity: 1;
                background: linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(0, 0, 0, 0.5) 70%,
                    rgba(0, 0, 0, 0.9) 100%
                );
            }

            .campanha-info {
                transform: translateY(0);
            }

            /* Nova seção banner - responsivo */
            .banner-page {
                height: 80vh;
            }

            .banner-overlay .banner-content {
                padding: 0 1rem;
            }

            .banner-overlay .banner-content h1 {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }

            .banner-overlay .banner-content .subtitle {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            .banner-overlay .banner-content p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .banner-overlay .banner-content .cta-button {
                padding: 1.2rem 2rem;
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 480px) {
            .campanhas {
                padding: 4rem 0;
            }

            .campanhas-titulo {
                font-size: 2rem;
            }

            .campanha-overlay {
                padding: 1.5rem;
            }

            /* Nova seção banner - mobile */
            .banner-page {
                height: 70vh;
            }

            .banner-overlay .banner-content h1 {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }

            .banner-overlay .banner-content .subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .banner-overlay .banner-content p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .banner-overlay .banner-content .cta-button {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
        }

  .alert-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}

.alert-message.success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

  .iniciativa-ceprol {
            background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), rgba(255, 215, 0, 0.1));
            padding: 60px 0;
        }

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

        .iniciativa-content {
            display: flex;
            align-items: center;
            gap: 40px;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .iniciativa-image {
            flex: 0 0 200px;
        }

        .iniciativa-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .iniciativa-text {
            flex: 1;
        }

        .iniciativa-text h2 {
            color: #0B7712;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .lead {
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .iniciativa-text p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .ceprol-link {
            display: inline-block;
            background: linear-gradient(135deg, #0B7712, #b71c1c);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .ceprol-link:hover {
            background: linear-gradient(135deg, #b71c1c, #a31a1a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }

        @media (max-width: 768px) {
            .iniciativa-content {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .iniciativa-image {
                flex: 0 0 150px;
            }

            .iniciativa-text h2 {
                font-size: 1.8rem;
            }
        }

