/* ========================================== */
/* ===== SEÇÃO REDES SOCIAIS ===== */
/* ========================================== */

.redes-sociais-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 50px;
    background: #f5f0e8;
    text-align: center;
}

.redes-sociais-container .titulo {
    margin-bottom: 40px;
}

.redes-sociais-container .titulo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.redes-sociais-container .titulo h2 span {
    color: #b8860b;
}

.redes-sociais-container .titulo p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* ===== GRADE DE REDES SOCIAIS ===== */
.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== BOTÃO DE CADA REDE ===== */
.redes-grid .rede-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 25px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.redes-grid .rede-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.redes-grid .rede-card .icone {
    font-size: 3.2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.redes-grid .rede-card .nome-rede {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.redes-grid .rede-card .seguidores {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 4px;
    font-weight: 400;
}

/* ===== CORES DE CADA REDE (GRADIENTE) ===== */
.rede-card.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 50%, #990000 100%);
}

.rede-card.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 50%, #0a4faa 100%);
}

.rede-card.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #25F4EE 80%, #FE2C55 100%);
}

.rede-card.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 40%, #F77737 70%, #FCAF45 100%);
}

/* ===== EFEITO DE BRILHO ===== */
.redes-grid .rede-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.redes-grid .rede-card:hover::after {
    opacity: 1;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .redes-sociais-container {
        padding: 40px 16px 30px;
    }

    .redes-sociais-container .titulo h2 {
        font-size: 1.8rem;
    }

    .redes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .redes-grid .rede-card {
        padding: 22px 15px 18px;
        min-height: 110px;
    }

    .redes-grid .rede-card .icone {
        font-size: 2.5rem;
    }

    .redes-grid .rede-card .nome-rede {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .redes-sociais-container .titulo h2 {
        font-size: 1.5rem;
    }

    .redes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .redes-grid .rede-card {
        padding: 18px 12px 14px;
        min-height: 90px;
        border-radius: 12px;
    }

    .redes-grid .rede-card .icone {
        font-size: 2rem;
    }

    .redes-grid .rede-card .nome-rede {
        font-size: 0.75rem;
    }

    .redes-grid .rede-card .seguidores {
        font-size: 0.6rem;
    }
}

/* ========================================== */
/* ===== FIM SEÇÃO REDES SOCIAIS ===== */
/* ========================================== */