﻿/* Wrapper para garantir altura igual */
.ad-slot-wrapper {
    min-height: 180px;
    height: 100%;
}

/* Estilo Base dos Cards Sociais */
.social-card {
    border-radius: 16px;
    padding: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none !important;
}

    .social-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        color: white;
    }

    /* Temas de Cores */
    .social-card.whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }

    .social-card.telegram {
        background: linear-gradient(135deg, #0088cc 0%, #005f8f 100%);
    }

    .social-card.facebook {
        background: linear-gradient(135deg, #1877F2 0%, #0d4b9e 100%);
    }

    /* Elementos Internos */
    .social-card .icon-box {
        font-size: 3.5rem;
        opacity: 0.2;
        position: absolute;
        right: -10px;
        bottom: -20px;
        transform: rotate(-15deg);
        transition: all 0.3s;
    }

    .social-card:hover .icon-box {
        opacity: 0.4;
        transform: rotate(0deg) scale(1.1);
    }

    .social-card .content-box {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .social-card h5 {
        font-weight: 800;
        font-size: 1.5rem;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .social-card p {
        font-size: 0.95rem;
        opacity: 0.9;
        margin-bottom: 20px;
        max-width: 80%;
    }

.btn-social {
    background: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-card.whatsapp .btn-social {
    color: #128C7E;
}

.social-card.telegram .btn-social {
    color: #0088cc;
}

.social-card.facebook .btn-social {
    color: #1877F2;
}

.btn-social:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Ícone principal visível */
.social-main-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
