[Issue #108] Eliminar espacio en blanco entre navbar y hero section

PROBLEMA:
Existía un gap/espacio visible entre el navbar y el hero section.

CAMBIOS:

1. header.php (línea 88):
   - Eliminada línea en blanco después de </nav>
   - HTML ahora termina directamente sin saltos extra

2. style.css - .navbar (línea 696):
   - Agregado margin-bottom: 0
   - Asegura que navbar no tenga margen inferior

3. style.css - .hero-title (línea 816):
   - Agregado margin-top: 0
   - Asegura que hero no tenga margen superior

RESULTADO:
✓ Navbar y hero section pegados sin espacio
✓ Diseño limpio y continuo
✓ Sticky navbar sigue funcionando

Fixes #108

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
FrankZamora
2025-11-06 21:01:24 -06:00
parent a21cd33d6f
commit 64de88fd57
2 changed files with 3 additions and 1 deletions

View File

@@ -693,6 +693,7 @@ img {
background-color: var(--color-navy-primary) !important;
box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
padding: 0.75rem 0;
margin-bottom: 0;
transition: all 0.3s ease;
}
@@ -813,6 +814,7 @@ img {
background: linear-gradient(135deg, var(--color-navy-primary) 0%, var(--color-navy-light) 100%);
box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
padding: 3rem 0;
margin-top: 0;
}
.hero-title h1 {

View File

@@ -84,4 +84,4 @@
</div>
</div><!-- .container -->
</nav><!-- .navbar -->
</nav><!-- .navbar -->