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

/* Estilos del cuerpo */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Contenedor */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Encabezado */
header {
    background: #004080;
    color: #fff;
}

header .logo h1 {
    float: left;
    padding: 15px 0;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
}

header::after {
    content: '';
    display: table;
    clear: both;
}

/* Sección Hero */
.hero {
    background: url('fondo.jpg') center center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
}

.hero .logos img {
    width: 150px;
    margin: 20px;
}

/* Sección de Servicios */
.services {
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    width: 48%;
    margin-bottom: 30px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.service-item h3 {
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 10px;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* Sección de Contacto */
.contact {
    background: #004080;
    color: #fff;
    padding: 50px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact form {
    width: 50%;
    margin: auto;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

.contact form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ffcc00;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background: #e6b800;
}

/* Pie de página */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Modal de Aviso Legal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    position: relative;
    border-radius: 5px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Responsividad */
@media (max-width: 768px) {
    header .logo,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }

    .service-item {
        width: 100%;
    }

    .contact form {
        width: 100%;
    }
}
