<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
}

.hero {
    position: relative;
    background: url('mapa-golfo.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    max-width: 600px;
}

.overlay h1 {
    font-size: 2.5rem;
}

.overlay h1 span {
    color: #FFD700;
}

.overlay p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.btn {
    background-color: #FFD700;
    color: #000;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e6c200;
}

.map-section {
    text-align: center;
    padding: 2rem;
}

.map-section img {
    max-width: 90%;
    border: 2px solid #ddd;
    border-radius: 8px;
}

footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
}
</pre></body></html>