Use this file to discover all available pages before exploring further.
The site’s visual style is controlled entirely through five CSS files in the css/ directory. There are no CSS custom properties (variables) in the current codebase — colors and values are hardcoded directly in the rules. This page documents where each visual property lives and how to change it.
Two colors define the site’s identity and appear throughout every CSS file:
#003B6F — dark blue (primary)
Used for: section title text, card h3 headings, filter button text and active state background, search button background, card tag background (anual), modal header background, form label color, card border on hover, correo/telefono pill text, .card-areas text, .objetivo strong text, fallback image background, btn-submit background.
#B38633 — gold (accent)
Used for: section title border-bottom, card top border, filter button icon color, search wrapper icon color, card tag background (especial), btn-inscripcion icon and arrow, btn-toggle-texto color, .objetivo left border, .responsable icon, .correo/.telefono icon, btn-submit icon, modal header icon, fallback image icon.
To rebrand the site, search all files in css/ for #003B6F and #B38633 and replace them with your chosen colors. There is no single variable to update.
To make cards look flatter, reduce or remove box-shadow. To reduce the hover lift, lower the translateY value or set it to 0. To make corners sharper, reduce border-radius from 20px.The card image area is controlled by .card-img:
To switch to a different Google Font — for example, Inter — update the <link> tag in reestructuracion.html and replace all occurrences of 'Open Sans' in the CSS files:
<!-- reestructuracion.html — updated link --><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
If you switch fonts, update every font-family: 'Open Sans', sans-serif declaration in components.css as well, otherwise form inputs will retain the old font.