

    /* ESTILOS EXCLUSIVOS DO MÓDULO 6 - RODAPÉ */
    .rodape-section {
        width: 100%;
        background: linear-gradient(135deg, #030303 0%, #0a0a0a 100%);
        background-image: radial-gradient(circle at 0% 0%, rgba(253, 212, 40, 0.02) 0%, transparent 50%),
                          radial-gradient(circle at 100% 100%, rgba(253, 212, 40, 0.02) 0%, transparent 50%);
        padding: 80px 0 40px 0;
        font-family: "Arimo", sans-serif;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(253, 212, 40, 0.15);
    }
    
    /* Efeito de textura sutil */
    .rodape-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(45deg, rgba(253,212,40,0.01) 0px, rgba(253,212,40,0.01) 2px, transparent 2px, transparent 20px);
        pointer-events: none;
        z-index: 0;
    }

    .rodape-container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* Grid principal - 3 colunas */
    .rodape-grid {
        display: grid;
        grid-template-columns: 1.2fr 1.5fr 1.2fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    /* Coluna 1 - Logo e texto persuasivo */
    .rodape-logo-coluna {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .rodape-logo {
        max-width: 100px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .rodape-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(253, 212, 40, 0.2);
    }

    .rodape-texto {
        color: #CCC;
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
        opacity: 0.9;
    }

    .rodape-destaque {
        color: #FDD428;
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* Selo de experiência */
    .selo-experiencia {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(253, 212, 40, 0.1);
        border: 1px solid rgba(253, 212, 40, 0.2);
        border-radius: 50px;
        padding: 10px 20px;
        margin-top: 15px;
    }

    .selo-experiencia span {
        color: #FDD428;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .selo-experiencia small {
        color: #FFF;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Coluna 2 - Informações da unidade */
    .rodape-info-coluna {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-titulo {
        color: #FDD428;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
    }

    .info-titulo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #FDD428, transparent);
    }

    .info-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .info-item:hover {
        transform: translateX(10px);
    }

    .info-icone {
        width: 45px;
        height: 45px;
        background: rgba(253, 212, 40, 0.1);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(253, 212, 40, 0.2);
        transition: all 0.3s ease;
    }

    .info-item:hover .info-icone {
        background: rgba(253, 212, 40, 0.2);
        border-color: #FDD428;
    }

    .info-icone img {
        width: 22px;
        height: 22px;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .info-item:hover .info-icone img {
        filter: brightness(0) saturate(100%) invert(76%) sepia(50%) saturate(1000%) hue-rotate(350deg) brightness(105%) contrast(105%);
    }

    .info-conteudo {
        flex: 1;
    }

    .info-conteudo strong {
        display: block;
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .info-conteudo p {
        color: #CCC;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.9;
    }

    .info-conteudo a {
        color: #CCC;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .info-conteudo a:hover {
        color: #FDD428;
    }

    /* Coluna 3 - Redes Sociais */
    .rodape-social-coluna {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .social-titulo {
        color: #FDD428;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
    }

    .social-titulo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #FDD428, transparent);
    }

    /* Container das redes sociais */
    .redes-sociais-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .rede-item {
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
    }

    .rede-item:hover {
        transform: translateX(10px);
    }

    .rede-icone {
        width: 55px;
        height: 55px;
        background: rgba(253, 212, 40, 0.1);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(253, 212, 40, 0.2);
        transition: all 0.3s ease;
    }

    .rede-item:hover .rede-icone {
        background: rgba(253, 212, 40, 0.2);
        border-color: #FDD428;
        transform: scale(1.1);
    }

    .rede-icone img {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .rede-item:hover .rede-icone img {
        filter: brightness(0) saturate(100%) invert(76%) sepia(50%) saturate(1000%) hue-rotate(350deg) brightness(105%) contrast(105%);
    }

    .rede-info {
        flex: 1;
    }

    .rede-info strong {
        display: block;
        color: #FFF;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .rede-info span {
        color: #999;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .rede-info a {
        color: #CCC;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .rede-info a:hover {
        color: #FDD428;
    }

    /* Badge de horário de atendimento */
    .atendimento-badge {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(253, 212, 40, 0.15);
        border-radius: 30px;
        padding: 15px 20px;
        margin-top: 20px;
        text-align: center;
    }

    .atendimento-badge p {
        color: #CCC;
        font-size: 0.95rem;
        margin: 5px 0;
    }

    .atendimento-badge strong {
        color: #FDD428;
        font-size: 1.1rem;
    }

    /* Botão WhatsApp - igual aos outros módulos */
    .btn-whatsapp-rodape {
        display: inline-block;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #FFF !important;
        font-weight: 700;
        font-size: 1.2rem;
        padding: 15px 20px;
        border-radius: 50px !important;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        border: 2px solid transparent;
        text-align: center;
        width: 100%;
        margin-top: 15px;
    }

    .btn-whatsapp-rodape:hover {
        background: transparent;
        color: #25D366 !important;
        border-color: #25D366;
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
    }

    .btn-whatsapp-rodape i {
        margin-right: 20px;
        font-size: 1.4rem;
        vertical-align: middle;
    }

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

    /* Copyright */
    .rodape-copyright {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }

    .rodape-copyright a {
        color: #999;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .rodape-copyright a:hover {
        color: #FDD428;
    }

    /* Responsividade */
    @media screen and (max-width: 1024px) {
        .rodape-grid {
            gap: 30px;
        }
    }

    @media screen and (max-width: 768px) {
        .rodape-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .rodape-logo-coluna {
            align-items: center;
            text-align: center;
        }
        
        .info-titulo::after,
        .social-titulo::after {
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
        }
        
        .info-item {
            justify-content: center;
        }
        
        .rede-item {
            justify-content: center;
        }
        
        .btn-whatsapp-rodape {
            font-size: 1rem;
            padding: 12px 10px;
        }
    }

    @media screen and (max-width: 480px) {
        .info-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
		.social-titulo {text-align: center;}
        
        .info-icone {
            margin-bottom: 10px;
        }
        
        .rede-item {
            flex-direction: column;
            text-align: center;
        }
        
        .rede-icone {
            margin-bottom: 10px;
        }
    }


