feat: add legal/info pages and update footer with links

Agent-Logs-Url: https://github.com/dsaub/proyecto-final/sessions/022418da-7d63-48aa-99d9-dd4257314523

Co-authored-by: dsaub <54474838+dsaub@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-09 19:09:48 +00:00
committed by GitHub
parent 7ff014a951
commit 4ab93edc71
11 changed files with 527 additions and 19 deletions
+40
View File
@@ -234,4 +234,44 @@ p.price {
object-position: center;
}
/* Estilos para el footer */
.footer-link {
color: inherit;
text-decoration: none;
}
.footer-link:hover {
text-decoration: underline;
}
/* Estilos para páginas legales / informativas */
.legal-container {
max-width: 860px;
margin: 2rem auto;
padding: 0 1rem;
}
.legal-container h1 {
margin-bottom: 1.5rem;
}
.legal-section {
margin-bottom: 2rem;
}
.legal-section h2 {
font-size: 1.2rem;
margin-bottom: 0.75rem;
border-bottom: 1px solid #dee2e6;
padding-bottom: 0.25rem;
}
.legal-section h3 {
font-size: 1rem;
font-weight: 600;
margin-top: 1rem;
margin-bottom: 0.4rem;
}
.legal-footer {
margin-top: 2rem;
color: #6c757d;
}
/*# sourceMappingURL=custom.css.map */
+44
View File
@@ -300,4 +300,48 @@ p.price {
object-position: center;
}
}
}
// Estilos para el footer
.footer-link {
color: inherit;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
// Estilos para páginas legales / informativas
.legal-container {
max-width: 860px;
margin: 2rem auto;
padding: 0 1rem;
h1 {
margin-bottom: 1.5rem;
}
}
.legal-section {
margin-bottom: 2rem;
h2 {
font-size: 1.2rem;
margin-bottom: 0.75rem;
border-bottom: 1px solid #dee2e6;
padding-bottom: 0.25rem;
}
h3 {
font-size: 1rem;
font-weight: 600;
margin-top: 1rem;
margin-bottom: 0.4rem;
}
}
.legal-footer {
margin-top: 2rem;
color: #6c757d;
}