.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;
}

.nav {
    display: flex;
    gap: 30px;
}

.menu-toggle {
    display: none;
}

/* 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;
}