.social-media-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('/img/background-social-media.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
    color: #4D57FF;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1A1A1A;
}

.content-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4D57FF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.social-management-section {
    padding: 100px 0;
    background: #0B0C10; /* Fondo oscuro principal */
    color: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: #16171A; /* Tarjeta oscura */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.social-card:hover {
    border-color: #4D57FF; /* Color azul institucional al hacer hover */
    box-shadow: 0 0 20px rgba(77, 87, 255, 0.3); /* Efecto glow */
    transform: translateY(-10px);
}

.btn-secondary-glow {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #4D57FF;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary-glow:hover {
    background: #4D57FF;
    box-shadow: 0 0 15px #4D57FF;
}.pricing-section {
    padding: 100px 0;
    background: #0B0C10; /* Fondo oscuro profundo */
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: rgba(22, 23, 26, 0.7); /* Cristal oscuro */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.price-card:hover {
    border-color: #4D57FF; /* Brillo azul al interactuar */
    box-shadow: 0 0 30px rgba(77, 87, 255, 0.2);
    transform: translateY(-10px);
}

.medal-icon { width: 80px; height: 80px; margin: 0 auto 20px; background-size: contain; }
.bronze { background-image: url('bronze-medal.png'); }
.silver { background-image: url('silver-medal.png'); }
.gold { background-image: url('gold-medal.png'); }

.btn-glow {
    display: block;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #4D57FF;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-glow:hover { background: #4D57FF; box-shadow: 0 0 20px #4D57FF; }