.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--gris-claro);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* LOGO */
.logo h1 {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* NAV */
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--negro);
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--negro);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    background-image: url("../img/hero/hero.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255,255,255,0.85);
    padding: 40px 60px;
    border-radius: var(--radius);
}

/* SECCIONES */
.section {
    padding: 100px 0;
    position: relative;
}

.section.light {
    background-color: var(--crema);
}

/* MAPA */
.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: var(--radius);
}

/* SCROLL OFFSET */
section {
    scroll-margin-top: 60px;
}

/* ===== GIN GRID DESKTOP ===== */
@media (min-width: 769px) {
    .gin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}