

    /* ESTILOS EXCLUSIVOS DO MÓDULO 1 */
    .beneficios-section {
        width: 100%;
        background: linear-gradient(135deg, #000 0%, #111 100%);
        padding: 60px 0 80px 0;
        font-family: "Arimo", sans-serif;
        overflow: hidden;
    }

    .beneficios-container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Título da seção (igual ao das unidades) */
    .titulo-beneficios {
        text-align: center;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        color: #FFF;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
        padding-bottom: 20px;
    }

    .titulo-beneficios::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #FDD428, transparent);
        border-radius: 2px;
    }

    /* Subtítulo opcional */
    .subtitulo-beneficios {
        text-align: center;
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        color: #CCC;
        max-width: 800px;
        margin: 0 auto 50px auto;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Grid de cards - 3 colunas no desktop */
    .grid-beneficios {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        width: 100%;
    }

    /* Cards individuais - ESTADO NORMAL JÁ COM EFEITO */
    .card-beneficio {
        background: rgba(255,255,255,0.08);  /* Mais claro que antes (era 0.05) */
        backdrop-filter: blur(10px);
        border: 2px solid rgba(253, 212, 40, 0.3);  /* Borda amarela sutil */
        border-radius: 30px;
        padding: 40px 25px 35px 25px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 15px 35px rgba(253, 212, 40, 0.1);  /* Sombra amarela sutil */
        position: relative;
        overflow: hidden;
    }

    /* Efeito HOVER - mantém e amplifica */
    .card-beneficio:hover {
        border-color: #FDD428;
        border-width: 3px;
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 45px rgba(253, 212, 40, 0.25);
        background: rgba(255,255,255,0.12);
    }

    /* Container do ícone/imagem - ESTADO NORMAL JÁ COM EFEITO */
    .icone-beneficio {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(253, 212, 40, 0.15);  /* Mais forte que antes (era 0.1) */
        border-radius: 50%;
        padding: 20px;
        transition: all 0.3s ease;
        border: 2px solid rgba(253, 212, 40, 0.3);  /* Borda amarela sutil */
    }

    /* Efeito HOVER no ícone */
    .card-beneficio:hover .icone-beneficio {
        border-color: #FDD428;
        border-width: 3px;
        background: rgba(253, 212, 40, 0.25);
        transform: scale(1.05);
    }

    .icone-beneficio img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1); /* Ícones brancos */
        transition: all 0.3s ease;
    }

    /* HOVER nos ícones - ficam amarelos */
    .card-beneficio:hover .icone-beneficio img {
        filter: brightness(0) saturate(100%) invert(76%) sepia(50%) saturate(1000%) hue-rotate(350deg) brightness(105%) contrast(105%);
    }

    /* Título do card */
    .card-beneficio h3 {
        color: #FFF;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: -0.02em;
        position: relative;
        padding-bottom: 15px;
    }

    .card-beneficio h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #FDD428, transparent);
        border-radius: 2px;
    }

    /* Descrição do card */
    .card-beneficio p {
        color: #CCC;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.9;
    }

    /* Linha divisória */
    .divisoria-beneficios {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(253, 212, 40, 0.3), transparent);
        margin: 40px 0;
    }

    /* Responsividade */
    @media screen and (max-width: 1024px) {
        .grid-beneficios {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media screen and (max-width: 768px) {
		    .beneficios-container {
 		margin-top: 120%;
    }
		
        .grid-beneficios {
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 450px;
            margin: 0 auto;
        }

        .card-beneficio {
            padding: 30px 20px;
        }

        .icone-beneficio {
            width: 80px;
            height: 80px;
            padding: 15px;
        }

        .card-beneficio h3 {
            font-size: 1.3rem;
        }
    }

    @media screen and (max-width: 480px) {
        .card-beneficio h3 {
            font-size: 1.2rem;
        }

        .card-beneficio p {
            font-size: 0.95rem;
        }
    }

