/* Estilos para la página de contacto */
.contact-page-wrap {

    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

.section-title h3 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Información de contacto */
.contact-info-wrap {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.contact-info-item {
    flex: 1;
    min-width: 0;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa9657 0%, #f76d16 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-info-content h4 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-content a {
    color: #f76d16;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #a54910;
}

/* Sección de redes sociales */
.social-media-section {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-media-section h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.social-media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-media-item i {
    font-size: 28px;
    margin-bottom: 10px;
}

.social-media-item span {
    font-size: 0.9em;
    font-weight: 500;
}

/* Colores específicos para cada red social */
.social-media-item.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.social-media-item.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-media-item.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.social-media-item.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.social-media-item.tiktok:hover {
    border-color: #000000;
    color: #000000;
}

.social-media-item.telegram:hover {
    border-color: #0088cc;
    color: #0088cc;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-wrap {
        padding: 20px;
    }
    
    .section-title h3 {
        font-size: 2em;
    }
    
    .contact-info-wrap {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info-item {
        text-align: center;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .social-media-item {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
}