/* Reset CSS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Estilos generales */
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000
}
.contenedor{
    width: 80%;
    margin: 0 auto;
}
/* Estilos navegación */
header{
    background-color: aquamarine;
    border-bottom: 1px solid #ffffff;
}
.nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9em 0;
}
.logo{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
}
.nav-links{
    list-style: none;
    display: flex;
    gap: 1.5em;
}
.nav-links a{
    text-decoration: none;
    color: #32557b;
    font-size: 13px;
}
/* Estilos Hero */
.hero {
    background-color: #32557b;
    color: #ffffff;
    text-align: center;
    padding: 4rem 0 3rem;
}
.hero-contenido h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.6rem;
}
.hero-contenido p {
    color: #9ab0bf;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}
.hero-contenido img {
    max-width: 45%;
    display: block;
    margin: 0 auto;
}
/* Estilos About Us*/
.about {
    padding: 4rem 0;
}
.about-contenido {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.about-contenido h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
}
.about-texto {
    color: #606060;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.about-img {
    max-width: 40%;
    display: block;
    margin: 0 auto 2rem;
}
/* Estilos Footer */
footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #606060;
    border-top: 1px solid #ffffff;
}
