/* Estilo del encabezado /
.header {
background-color: #000000;
padding: 1rem 0; / antes 16px */
}
.header__menu {
display: flex;
justify-content: center;
gap: 2rem; /* antes 32px */
}
.header__link {
font-size: 1.125rem; /* antes 18px /
color: #F6F6F6;
text-decoration: none;
padding: 0.5rem 1rem; / antes 8px 16px */
transition: color 0.3s ease;
}
.header__link:hover {
color: #22D4FD;
}
/* Contenido principal /
.presentacion {
padding: 5%; / sigue en % para mantener flexibilidad */
}
.presentacion__contenido {
max-width: 50rem; /* antes 800px */
margin: 0 auto;
}
.presentacion__contenido h1 {
font-size: 2rem; /* antes 32px */
}
.presentacion__contenido p {
font-size: 1.125rem; /* antes 18px */
line-height: 1.6;
}
/* Subtítulos /
.presentacion__enlaces__subtitulo {
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem; / antes 24px */
font-weight: 400;
}
/* Pie de página /
.footer {
background-color: #22D4FD;
color: #000000;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem; / antes 24px /
font-weight: 400;
padding: 1.5rem; / antes 24px */
}
/* Botones de redes sociales /
.presentacion__enlaces__link {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem; / antes 16px /
color: #F6F6F6;
border: 2px solid #22D4FD;
background-color: transparent;
width: 23.625rem; / antes 378px /
border-radius: 0.5rem; / antes 8px /
text-align: center;
padding: 0.625rem 0; / antes 10px 0 */
text-decoration: none;
transition: all 0.3s ease;
}
.presentacion__enlaces__link:hover {
border-color: #0000FF;
background-color: #272727;
cursor: pointer;
}
/* Responsividad extra para tamaños de fuente extremos /
@media (max-width: 768px) {
.presentacion__contenido h1 {
font-size: 1.5rem; / reducir en pantallas pequeñas */
}
.presentacion__contenido p {
font-size: 1rem;
}
.presentacion__enlaces__subtitulo {
font-size: 1.25rem;
}
.footer {
font-size: 1.25rem;
}
}
@media (min-width: 1400px) {
.presentacion__contenido h1 {
font-size: 2.5rem; /* agrandar en pantallas muy grandes */
}
.presentacion__contenido p {
font-size: 1.25rem;
}
}