Fix: Restaurar estilos Bootstrap para .contact-info h6 y .text-muted

Problema: Los estilos globales h1-h6 (líneas 110-123) sobrescribían
Bootstrap, causando que .contact-info h6 tuviera font-weight: 600 en
lugar de 500 (Bootstrap default).

Solución: Agregar reglas específicas para .contact-info h6 y .text-muted
que restauren los valores de Bootstrap usando !important para override.

Valores Bootstrap restaurados:
- h6: font-weight: 500, line-height: 1.2, inherit font-family
- .text-muted: inherit font-size

Issue: #128

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
FrankZamora
2025-11-08 11:13:27 -06:00
parent 58ceec7bee
commit 85d50a7bf5

View File

@@ -1270,4 +1270,14 @@ footer .btn-primary:hover {
color: var(--color-orange-primary);
}
/* ELIMINADO: .contact-info h6 para mantener Bootstrap default del template */
/* Restaurar estilos Bootstrap para h6 dentro de contact-info (override de estilos globales línea 110-116) */
.contact-info h6 {
font-family: inherit !important;
font-weight: 500 !important;
line-height: 1.2 !important;
margin-bottom: 0.5rem !important;
}
.contact-info .text-muted {
font-size: inherit !important;
}