@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --lb-black: #302d50;
    --lb-white: #ffffff;
    --lb-magenta: #28bdd7;
}

/* =========================
   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;
}
/* =========================
   pruebas de hero 
========================= */
/* =========================
   HERO SC — PANTALLA COMPLETA
========================= */

.sc-hero-full {
    position: relative;
    min-height: 100vh;
    background: var(--lb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

.sc-hero-full-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0.18;
    pointer-events: none;
}

.sc-hero-full-camino {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.sc-hero-full-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.sc-hero-full-pregunta {
    margin: 0 0 30px;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    animation: sc-fade-up 1s ease-out;
}

.sc-hero-full-marca {
    margin: 0;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: sc-fade-up 1s ease-out 0.3s both;
}

.sc-hero-full-marca-acento {
    color: var(--lb-magenta);
}

.sc-hero-full-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--lb-white);
    border-radius: 12px;
    opacity: 0.6;
}

.sc-hero-full-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--lb-white);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: sc-scroll-dot 1.6s infinite;
}

@keyframes sc-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sc-hero-full-camino-texto {
    margin: 20px 0 0;
    color: var(--lb-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    opacity: 0.75;
    animation: sc-fade-up 1s ease-out 0.3s both;
}
@keyframes sc-scroll-dot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 480px) {

    .sc-hero-full {
        padding: 20px;
        min-height: 90vh;
    }

    .sc-hero-full-pregunta {
        font-size: 34px;
    }

    .sc-hero-full-marca {
        font-size: 16px;
    }

    .sc-hero-full-camino {
        max-width: 100%;
    }
}
/* =========================
   BUSCADOR
========================= */
.lb-header-top {
    width: 100%;
    background: var(--lb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}
.lb-header-top-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
.lb-search-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.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;
    }
}
/* =========================
   HERO SEO CULTURAL
   MOBILE
========================= */

@media (max-width: 480px) {

    .lb-cultural-hero {
        padding: 45px 18px;
    }

    .lb-cultural-hero-container {
        display: block;
    }

    .lb-cultural-hero-col {
        width: 100%;
        padding: 15px 0;
    }

    .lb-cultural-hero-col:first-child,
    .lb-cultural-hero-col:last-child {
        padding-left: 0;
        padding-right: 0;
    }

    .lb-cultural-hero-divider {
        width: 100%;
        height: 1px;
        margin: 15px 0;
    }

    .lb-cultural-hero h1 {
        font-size: 32px;
        line-height: 1.05;
    }

    .lb-cultural-hero h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .lb-cultural-hero p {
        font-size: 15px;
        line-height: 1.45;
    }
}