/* Social Media Section - Optimized */
/* Sección de Redes Sociales - Rediseño Simplificado */
.social-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 20px;
    margin: 50px 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.social-section h1 {
    color: #091231;
    margin: 0 auto 40px;
    font-size: 2.2rem;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.social-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e6c35a, #660000);
    border-radius: 2px;
}

/* Contenedor principal de los botones */
.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contenedor de cada red social */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

/* Estilo base para los botones */
.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

/* Iconos dentro de los botones */
.social-button i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Efecto hover para los botones */
.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Estilos específicos para cada red social */
.social-button.whatsapp {
    background-color: #25D366;
}

.social-button.tiktok {
    background-color: #000000;
}

.social-button.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-button.facebook {
    background-color: #1877F2;
}

/* Contenedor del código QR */
.qr-container {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.qr-code {
    max-width: 150px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    border-radius: 8px;
}

.qr-container p {
    margin: 10px 0 0;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Diseño Responsive */
@media (max-width: 1024px) {
    .social-section {
        padding: 30px 15px;
    }
    
    .social-section h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .social-item {
        width: 160px;
    }
    
    .social-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .qr-code {
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .social-section {
        margin: 50px 0;
        padding: 40px 15px;
    }
    
    .social-section h1 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .social-grid {
        gap: 15px;
    }
    
    .social-card {
        width: 100px;
        padding: 15px 10px;
    }
    
    .social-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .social-card img {
        width: 30px;
        height: 30px;
    }
    
    .social-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-section h1 {
        font-size: 1.4rem;
    }
    
    .social-grid {
        gap: 10px;
    }
    
    .social-card {
        width: 80px;
        padding: 12px 8px;
    }
    
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .social-card img {
        width: 25px;
        height: 25px;
    }
    
    .social-card span {
        font-size: 0.7rem;
    }
}
