body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9fc;
}

/* HEADER */
.header {
    background: #0a3d62;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

body {
    padding-top: 70px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

/* HERO */
.hero {
    height: 60vh;
    background: url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px;
}

.hero-content {
    background: rgba(10,61,98,0.8);
    color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 450px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    background: #38ada9;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* SERVICIOS */
#servicios {
    padding: 40px;
}

#contenedor-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card .info {
    padding: 20px;
}

/* FOOTER */
.footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #0a3d62;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        border-radius: 5px;
    }

    .nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
/* CONTACTO */
.contacto {
    background: #f1f6fb;
    padding: 50px 20px;
    text-align: center;
}

.contacto h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contacto p {
    color: #555;
}

.contacto-info {
    margin-top: 20px;
}
html {
    scroll-behavior: smooth;
}
