
.poderes-card-container {    
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 28px !important;
    justify-content: center;
    margin-top: 2rem;
}

    .poderes-card-container .poderes-card {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        border-radius: 16px;
        text-decoration: none !important;
        background-color: #ffffff;
        border: 1px solid rgba(51, 93, 141, 0.08);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }

        .poderes-card-container .poderes-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #335d8d, #4eb9d1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .poderes-card-container .poderes-card:hover {
            transform: translateY(-6px);
            border-color: #335d8d;
            box-shadow: 0 12px 28px rgba(51, 93, 141, 0.12);
        }

        .poderes-card-container .poderes-card:hover::before {
            opacity: 1;
        }

        .poderes-card-container .poderes-card:nth-child(4) {
            grid-column: 2 / span 2;
        }

        .poderes-card-container .poderes-card:nth-child(5) {
            grid-column: 4 / span 2;
        }


.poderes-icon-wrapper {
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 0px;
    padding: 6px;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid rgba(51, 93, 141, 0.05);
    transition: all 0.3s ease;
}

    .poderes-card:hover .poderes-icon-wrapper {
        background-color: #ffffff;
        border-color: rgba(51, 93, 141, 0.2);
        transform: scale(1.06);
        box-shadow: 0 6px 15px rgba(51, 93, 141, 0.05);
    }

    .poderes-icon-wrapper img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.3s ease;
    }

.poderes-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.45;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

    .poderes-card:hover h3 {
        color: #335d8d;
    }

.poderes-card p {
    font-size: 0.75rem;
    font-weight: 750;
    color: #335d8d;
    background-color: #f1f5f9;
    padding: 5px 14px;
    border-radius: 50px;
    margin: 0;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .poderes-card:hover p {
        background-color: #335d8d;
        color: #ffffff;
        box-shadow: 0 4px 10px rgba(51, 93, 141, 0.2);
    }

.bg-whatsapp {
    background-color: #25D366;
}

@media (max-width: 992px) {
    .poderes-card-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

        .poderes-card-container .poderes-card,
        .poderes-card-container .poderes-card:nth-child(4),
        .poderes-card-container .poderes-card:nth-child(5) {
            grid-column: span 1 !important;
        }

        /* Centraliza o último card se ficar sozinho na linha no tablet */
        .poderes-card-container .poderes-card:nth-child(5) {
            grid-column: 1 / -1 !important;
            max-width: 50%;
            margin: 0 auto;
            width: 100%;
        }
}

/* Responsividade - SmartPhones */
@media (max-width: 576px) {
    .poderes-card-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

        .poderes-card-container .poderes-card,
        .poderes-card-container .poderes-card:nth-child(4),
        .poderes-card-container .poderes-card:nth-child(5) {
            grid-column: span 1 !important;
            max-width: 100% !important;
        }

        .poderes-card-container .poderes-card {
            padding: 24px 16px;
        }
}

