body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

header {
    background: #0A2A5E;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo {
    height: 50px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    background: #00A651;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

section {
    padding: 60px 40px;
}

h2 {
    color: #0A2A5E;
}

/* GRID */
.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: white;
    border-radius: 8px;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    color: #0A2A5E;
}

.card ul {
    padding: 0 20px;
    font-size: 14px;
}

/* CLIENTES */
.clientes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.clientes img {
    height: 60px;
}

/* FOOTER */
footer {
    background: #0A2A5E;
    color: white;
    text-align: center;
    padding: 20px;
}