/* Reset CSS */ | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: 'Arial', sans-serif; | |
background-color: #f4f4f4; | |
color: #333; | |
text-align: center; | |
line-height: 1.6; | |
} | |
/* Header */ | |
header { | |
background: #2a9d8f; | |
color: white; | |
padding: 15px 0; | |
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |
} | |
header .logo-container { | |
display: inline-block; | |
} | |
header .logo { | |
width: 150px; | |
height: auto; | |
} | |
header nav ul { | |
list-style: none; | |
display: flex; | |
justify-content: center; | |
padding: 0; | |
} | |
header nav ul li { | |
margin: 0 20px; | |
} | |
header nav ul li a { | |
color: white; | |
text-decoration: none; | |
font-weight: bold; | |
text-transform: uppercase; | |
} | |
header nav ul li a:hover { | |
text-decoration: underline; | |
} | |
/* Hero Section */ | |
.hero { | |
background: #e9c46a; | |
padding: 60px 20px; | |
color: #2a9d8f; | |
} | |
.hero h1 { | |
font-size: 2.5em; | |
margin-bottom: 10px; | |
} | |
.hero p { | |
font-size: 1.2em; | |
margin-bottom: 20px; | |
} | |
.cta-button { | |
background-color: #2a9d8f; | |
color: white; | |
padding: 10px 20px; | |
text-decoration: none; | |
font-weight: bold; | |
border-radius: 5px; | |
transition: background-color 0.3s ease; | |
} | |
.cta-button:hover { | |
background-color: #21867a; | |
} | |
/* App Embed Section */ | |
.app-embed { | |
margin: 40px 0; | |
padding: 20px; | |
background-color: #fff; | |
} | |
.app-embed h2 { | |
margin-bottom: 20px; | |
font-size: 1.8em; | |
color: #333; | |
} | |
.app-frame { | |
width: 100%; | |
height: 600px; | |
border: none; | |
} | |
/* Alertas */ | |
.alertas { | |
background-color: #f4f4f4; | |
padding: 20px; | |
margin: 40px 0; | |
} | |
.alertas h2 { | |
margin-bottom: 20px; | |
font-size: 1.8em; | |
} | |
.alert-container { | |
max-width: 800px; | |
margin: auto; | |
text-align: left; | |
} | |
.alerta { | |
background-color: #ffcc00; | |
padding: 15px; | |
margin-bottom: 10px; | |
border-radius: 5px; | |
} | |
.alerta .alerta-titulo { | |
font-weight: bold; | |
} | |
.alerta .alerta-fecha { | |
font-size: 0.9em; | |
color: #555; | |
} | |
/* Footer */ | |
footer { | |
background: #333; | |
color: white; | |
padding: 20px 0; | |
} | |
footer p { | |
margin-bottom: 10px; | |
} | |
footer .social-links { | |
list-style: none; | |
display: flex; | |
justify-content: center; | |
} | |
footer .social-links li { | |
margin: 0 15px; | |
} | |
footer .social-links li a { | |
color: white; | |
text-decoration: none; | |
font-size: 1.2em; | |
} | |
footer .social-links li a:hover { | |
color: #2a9d8f; | |
} | |