@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --lb-black: #000000;
    --lb-white: #ffffff;
    --lb-magenta: #BB1755;
}

/* =========================
   HEADER PRINCIPAL
========================= */

.lb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--lb-white);
    border-bottom: 5px solid var(--lb-black);
    z-index: 9999;
}

.lb-header-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* =========================
   LOGO
========================= */

.lb-logo {
    flex-shrink: 0;
}

.lb-logo img {
    width: 300px;
    height: 150px;
    object-fit: contain;
}

/* =========================
   NAV
========================= */

.lb-nav {
    margin-left: auto;
}

.lb-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-nav a {
    color: var(--lb-black);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

/* =========================
   BOTONES
========================= */

.lb-header-acciones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 30px;
}

.lb-btn-menu {
    background: var(--lb-black);
    color: var(--lb-white) !important;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
}

.lb-btn-principal {
    background: var(--lb-magenta);
    color: var(--lb-white) !important;
    border: 2px solid var(--lb-magenta);
}

.lb-btn-principal:hover {
    background: var(--lb-white);
    color: var(--lb-magenta) !important;
}

/* =========================
   HAMBURGUESA
========================= */

.lb-hamburger {
    display: none;
    width: 30px;
    height: 24px;
    margin-left: 15px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.lb-hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--lb-black);
}

/* =========================
   OFFSET
========================= */

main {
    margin-top: 150px;
}

/* =========================
   HERO SEO CULTURAL
========================= */

.lb-cultural-hero {
    background: var(--lb-black);
    color: var(--lb-white);
    padding: 80px 40px;
}

.lb-cultural-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
}

.lb-cultural-hero-col {
    padding: 20px 55px;
}

.lb-cultural-hero-col:first-child {
    padding-left: 0;
}

.lb-cultural-hero-col:last-child {
    padding-right: 0;
}

.lb-cultural-hero-divider {
    width: 1px;
    height: 240px;
    background: var(--lb-magenta);
}

.lb-cultural-hero h1 {
    margin: 0 0 20px;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.lb-cultural-hero h2 {
    margin: 0 0 25px;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.lb-cultural-hero p {
    margin: 0 0 22px;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.5;
}
/* =========================
   BUSCADOR
========================= */

.lb-header-top {
    width: 100%;
    background: var(--lb-black);
    display: flex;
    align-items: center;
}

.lb-header-top-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.lb-search-form {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
}

.lb-search-form input {
    flex: 1;
    height: 42px;
    background: var(--lb-black);
    color: var(--lb-white);
    border: 2px solid var(--lb-white);
    border-right: none;
    padding: 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}

.lb-search-form button {
    width: 52px;
    height: 42px;
    background: var(--lb-black);
    color: var(--lb-white);
    border: 2px solid var(--lb-white);
}
/* =========================
   MOBILE
========================= */

@media(max-width:480px) {

    .lb-header-container {
        padding: 0 15px;
    }

    .lb-logo img {
        width: 80px;
        height: auto;
    }

    .lb-nav {
        display: none;
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        background: var(--lb-white);
        border-top: 3px solid var(--lb-black);
    }

    .lb-nav.lb-nav-active {
        display: block;
    }

    .lb-nav ul {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .lb-header-acciones {
        margin-left: auto;
    }

    .lb-btn-menu {
        padding: 7px 10px;
        font-size: 11px;
    }

    .lb-hamburger {
        display: flex;
    }
}

/* =========================
   RESPONSIVE EXTRA
========================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.lb-header,
.lb-header-container {
    max-width: 100%;
}

.lb-header-container {
    box-sizing: border-box;
}

.lb-logo {
    min-width: 0;
}

.lb-logo img {
    max-width: 100%;
}

.lb-nav,
.lb-header-acciones {
    min-width: 0;
}

@media(max-width:480px) {

    .lb-header-container {
        width: 100%;
        padding: 0 15px;
        gap: 10px;
    }

    .lb-logo {
        flex: 0 1 auto;
    }

    .lb-logo img {
        width: 80px;
        max-width: 80px;
        height: auto;
    }

    .lb-header-acciones {
        flex: 0 1 auto;
        max-width: calc(100% - 125px);
        margin-left: auto;
    }

    .lb-btn-menu {
        max-width: 100%;
        white-space: nowrap;
        padding: 7px 10px;
        font-size: 11px;
    }

    .lb-hamburger {
        flex-shrink: 0;
    }
}