
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografía base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #002244;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.button-contact {
    background-color: #e6af2e;
    color: #002244;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.banner {
    background-color: #dee2e6;
    padding: 4rem 2rem;
    text-align: center;
}

.banner h1 {
    font-size: 2.5rem;
    color: #002244;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
}

.banner-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.button-primary {
    background-color: #002244;
    color: #ffffff;
}

.button-secondary {
    background-color: #e6af2e;
    color: #002244;
}

/* Info sections */
.info-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}

.section-title {
    font-size: 2rem;
    color: #002244;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #f1f1f1;
    border-left: 4px solid #002244;
    padding: 1.5rem;
    width: 300px;
    border-radius: 4px;
}

.service-card h3 {
    color: #002244;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #495057;
}

/* Formulario de contacto */
.contacto form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contacto label {
    margin: 0.5rem 0 0.2rem;
    font-weight: bold;
}

.contacto input,
.contacto textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

/* Botón del formulario */
.contacto button {
    background-color: #002244;
    color: #ffffff;
    font-weight: bold;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contacto button:hover {
    background-color: #001a33;
}

/* Footer */
footer {
    background-color: #002244;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}
