@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fraunces", serif;
}

/* ---------- FONDO GENERAL ---------- */
body {
    background-image: url("imagenes/fondo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* ---------- CONTENEDOR ---------- */
#contenedor {
    width: 1280px;
    margin: 0 auto;
}

/* ---------- HEADER ---------- */
header {
    text-align: center;
    margin-top: 40px;
}

#logo {
    width: 430px; 
    height: 150px; 
    background-image: url("imagenes/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
    font-size: 0;
}

#firma {
    width: 310px;
    margin-top: -20px;
}

/* ---------- NAV ---------- */

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

nav ul li a:hover {
    color: #1e50db;
    letter-spacing: 3px;
}

/* ---------- SECCIONES ---------- */

section {
    padding: 80px 0;
}

#welcome {
    text-align: center;
    font-size: 24px;
    width: 100%;
    margin-top: 60px;
}

#welcome h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* ---------- ABOUT ME ---------- */

#about {
    display: flex;
    justify-content: space-between;
    width: 900px;
    margin: 0 auto;
}

#about .texto {
    width: 550px;
}

#about h2, #services h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

#about img {
    width: 260px;
    height: auto;
    border-radius: 5px;
}

/* ---------- SERVICES ---------- */

#services {
    width: 900px;
    margin: 0 auto;
}

.service-box {
    border: 2px solid #1e50db;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

#services article {
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ---------- FOOTER ---------- */

footer {
    width: 100vw;
    margin-left: calc(-50vw + 640px);
    text-align: center;
    padding: 30px;
    background-color: #1e50db;
    color: white;
    font-size: 14px;
    margin-top: 60px;
}