        /* Sección Redes Sociales Mejorada */
.redes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.redes-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.redes-section .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.redes-section .section-title p {
    color: #666;
    font-size: 1.1rem;
}

.redes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.redes-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.redes-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.redes-header i {
    font-size: 1.5rem;
}

.redes-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.facebook-card .redes-header {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
}

.instagram-card .redes-header {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.redes-embed {
    padding: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redes-link {
    display: block;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.redes-link:hover {
    background: #e9ecef;
    color: #007bff;
}

.redes-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redes-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redes-quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.redes-quick-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.redes-quick-link.phone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.redes-quick-link.email {
    background: linear-gradient(135deg, #fd1d1d 0%, #833ab4 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .redes-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .redes-section .section-title h2 {
        font-size: 2rem;
    }
    
    .redes-links {
        flex-direction: column;
        align-items: center;
    }
    
    .redes-quick-link {
        width: 200px;
        justify-content: center;
    }
}
/* Tarjeta especial de WhatsApp */
.whatsapp-card .redes-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    position: relative;
}

.badge-online {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: auto;
}

.redes-content {
    padding: 25px;
}

.whatsapp-info {
    text-align: center;
}

.whatsapp-info i.fa-comments {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 15px;
}

.whatsapp-info h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.whatsapp-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.whatsapp-number {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
}

.whatsapp-number i {
    color: #25d366;
}

.redes-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 25px 25px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
}

.btn-call {
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
    border: 2px solid #e9ecef;
}

.btn-call:hover {
    background: #e9ecef;
    color: #333;
}
/* Estilos para Instagram mejorado */
.instagram-placeholder {
    text-align: center;
    padding: 20px 0;
}

.instagram-placeholder i {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.instagram-placeholder h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.instagram-placeholder p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.instagram-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.instagram-info p {
    margin: 0;
    color: #333;
}

/* Estilos para TikTok */
.tiktok-card .redes-header {
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #69C9D0 100%);
}

.badge-coming {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: auto;
}

.tiktok-placeholder {
    text-align: center;
    padding: 20px 0;
}

.tiktok-placeholder i {
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(105, 201, 208, 0.3);
}

.tiktok-placeholder h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tiktok-placeholder p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.countdown {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.countdown p {
    color: white;
    margin: 0;
    font-weight: 600;
}

.coming-soon {
    background: #6c757d !important;
    color: white !important;
    cursor: not-allowed;
}

.coming-soon:hover {
    background: #5a6268 !important;
    color: white !important;
}

/* Ajustes responsive para 4 tarjetas */
@media (max-width: 1200px) {
    .redes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .redes-container {
        grid-template-columns: 1fr;
    }
}

/* Mejora para los placeholders en general */
.redes-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}