* {
    font-family: "Trebuchet MS", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f0f7fa;
    margin: 0;
}

header {
    background-color: #000;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 100px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

a:hover {
    color: #4ecdc4;
}

main {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.galeria {
    display: flex;
    gap: 18px;
}

.columna {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.galeria img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.informacion {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.informacion img {
    width: 100%;
    max-width: 500px;
    border-radius: 18px;
}

.informacion p {
    max-width: 600px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    color: #c0392b;
    font-weight: normal;
    font-size: 17px;
    margin-bottom: 8px;
}

form {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campo input {
    width: 100%;
    padding: 10px;
}

button {
    background-color: black;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5f5f5f;
}

footer {
    background-color: #3b3b3b;
    color: #bdbdbd;
    text-align: center;
    padding: 20px;
}