Structure
The footer contains:- Copyright text
- Secondary navigation menu with all main site links
- Responsive flexbox layout
HTML Code
Extracted fromindex.html (lines 62-73):
CSS Styling
Fromstyle.css (lines 914-949):
Color Variables
Fromstyle.css (lines 18, 23, 12):
Responsive Behavior
- Mobile (≤576px)
- Desktop
From On mobile devices, footer navigation stacks vertically and centers.
style.css (lines 1027-1031):Visual Design
Dark Background
The footer uses a dark carbon black background (
#1A1A1A) to create visual closure and separate it from the main content.Hover Effect
Navigation links transition to golden champagne color (
--color-secundario) on hover with smooth CSS transitions.Accessibility
The footer navigation includes
aria-label="Navegación secundaria" for screen reader users.Key Features
- Consistent across pages: Same footer appears on all HTML pages
- Flexible layout: Uses flexbox with
flex-wrap: wrapfor responsive adaptation - Subtle typography: Small font size (0.8rem) with muted colors
- Smooth transitions: All interactive elements use
var(--transicion-suave)(0.3s ease)