
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}
.cabecera {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cabecera-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-titulo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
    height: 100px;
    width: auto;
}
.menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}
.menu ul li a {
    text-decoration: none;
    color: #0077ff;
    font-weight: bold;
}
.contenido {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.texto {
    font-size: 1.2rem;
    line-height: 1.8;
    overflow: hidden;
}
.imagen-flotante {
    float: left;
    margin: 0 20px 20px 0;
    width: 300px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.pie-pagina {
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}
.menu-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}
.menu-footer ul li a {
    text-decoration: none;
    color: #0077ff;
    font-weight: bold;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.modal-content h2 {
    margin-top: 0;
}
.modal-buttons {
    margin-top: 20px;
}
.modal-buttons button {
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #0077ff;
    color: white;
}
.modal-buttons button:hover {
    background-color: #005fcc;
}
.modal-content a {
    color: #0077ff;
    font-weight: bold;
}
@media (max-width: 768px) {
    .cabecera-contenido {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu ul {
        flex-direction: column;
        gap: 10px;
    }
    .imagen-flotante {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        width: 100%;
    }
}
form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    background-color: #0077ff;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #005fcc;
}
.form-titulo {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}


