:root {
    --azul: #0E5F84;
    --naranja: #F97316;
    --gris-claro: #f4f6f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.hero {
    background: linear-gradient(rgba(14,95,132,0.85), rgba(14,95,132,0.85)), 
    url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.hero-buttons a {
    margin: 5px;
}

.btn-primary {
    background: var(--naranja);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.btn-secondary {
    background: white;
    color: var(--azul);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
}

.about {
    padding: 70px 0;
}

.services {
    background: var(--gris-claro);
    padding: 70px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-left: 5px solid var(--naranja);
}

.contact {
    padding: 70px 0;
}

form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    background: var(--azul);
    color: white;
    text-align: center;
    padding: 20px 0;
}