@charset "utf-8";

/* ============================================================
   BAYMEET · LANDING RESEARCH
   Ruta: public_html/assets/css/public/landing_research.css
   Página: app/Views/Public/landing_research.php
============================================================ */

:root {
    --bm-research-bg: #f7f4ef;
    --bm-research-surface: #ffffff;
    --bm-research-surface-soft: #fbfaf8;

    --bm-research-text: #171717;
    --bm-research-muted: #66615c;
    --bm-research-soft: #8a837c;

    --bm-research-line: rgba(23, 23, 23, .10);
    --bm-research-line-strong: rgba(23, 23, 23, .16);

    --bm-research-accent: #2f2a24;
    --bm-research-accent-soft: rgba(47, 42, 36, .08);

    --bm-research-radius-sm: 14px;
    --bm-research-radius-md: 22px;
    --bm-research-radius-lg: 34px;

    --bm-research-shadow-sm: 0 12px 35px rgba(20, 20, 20, .08);
    --bm-research-shadow-md: 0 28px 80px rgba(20, 20, 20, .13);

    --bm-research-max: 1180px;
    --bm-research-mobile-max: 540px;
}

/* ============================================================
   BASE
============================================================ */

html {
    scroll-behavior: smooth;
}

body.bm-research-page {
    min-height: 100vh;
    margin: 0;

    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    color: var(--bm-research-text);

    background:
        radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 34rem),
        linear-gradient(135deg, #f7f4ef 0%, #ebe5dc 100%);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.bm-research-page * {
    box-sizing: border-box;
}

body.bm-research-page a {
    color: inherit;
    text-decoration: none;
}

body.bm-research-page button,
body.bm-research-page input {
    font: inherit;
}

.bm-research {
    width: 100%;
    overflow: hidden;
}

.bm-research-container {
    width: min(100% - 2rem, var(--bm-research-max));
    margin-inline: auto;
}

.bm-research-btn-primary,
.bm-research-btn-primary:link,
.bm-research-btn-primary:visited,
.bm-research-btn-submit {
    background: var(--bm-research-accent);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(20, 20, 20, .18);
}

.bm-research-form-message {
    margin: 0 0 .25rem;

    padding: .85rem .95rem;

    border: 1px solid rgba(120, 20, 20, .18);
    border-radius: var(--bm-research-radius-sm);

    background: rgba(120, 20, 20, .06);
    color: #7a1f1f;

    font-size: .9rem;
    font-weight: 900;
    line-height: 1.35;
}

.bm-research-form-message[data-type="success"] {
    border-color: rgba(20, 110, 65, .18);
    background: rgba(20, 110, 65, .06);
    color: #166534;
}

.bm-research-field input.is-invalid {
    border-color: rgba(120, 20, 20, .55);
    background: rgba(120, 20, 20, .035);
    box-shadow: 0 0 0 4px rgba(120, 20, 20, .08);
}

.bm-research-btn-submit:disabled {
    cursor: not-allowed;
    opacity: .72;
    transform: none;
    box-shadow: none;
}

/* ============================================================
   HERO
============================================================ */

.bm-research-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    padding: 4.5rem 0 4rem;
}

.bm-research-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.bm-research-hero-content {
    max-width: 760px;
}

.bm-research-kicker,
.bm-research-eyebrow,
.bm-research-card-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;

    margin: 0 0 1.1rem;
    padding: .42rem .78rem;

    border: 1px solid var(--bm-research-line);
    border-radius: 999px;

    background: rgba(255,255,255,.55);
    color: var(--bm-research-muted);

    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bm-research-title {
    margin: 0;

    max-width: 850px;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(2.65rem, 7vw, 5.9rem);
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.075em;

    color: var(--bm-research-text);
}

.bm-research-lead {
    max-width: 680px;
    margin: 1.45rem 0 0;

    color: var(--bm-research-muted);

    font-size: clamp(1.06rem, 1.7vw, 1.28rem);
    font-weight: 500;
    line-height: 1.72;
}

.bm-research-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;

    margin-top: 2.1rem;
}

.bm-research-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: .95rem 1.35rem;

    border: 1px solid transparent;
    border-radius: 999px;

    cursor: pointer;
    user-select: none;

    font-size: .94rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.bm-research-btn-primary,
.bm-research-btn-submit {
    background: var(--bm-research-accent);
    color: #fff;
    box-shadow: 0 18px 45px rgba(20, 20, 20, .18);
}

.bm-research-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(20, 20, 20, .22);
}

.bm-research-btn:focus-visible {
    outline: 3px solid rgba(47, 42, 36, .22);
    outline-offset: 4px;
}

.bm-research-note {
    margin: 1rem 0 0;

    color: var(--bm-research-soft);

    font-size: .95rem;
    font-weight: 700;
    line-height: 1.5;
}

/* ============================================================
   HERO CARD
============================================================ */

.bm-research-card {
    position: relative;
    overflow: hidden;

    padding: clamp(1.5rem, 3vw, 2.15rem);

    border: 1px solid rgba(255,255,255,.65);
    border-radius: var(--bm-research-radius-lg);

    background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.64));

    box-shadow: var(--bm-research-shadow-md);
    backdrop-filter: blur(18px);
}

.bm-research-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -45% auto;

    width: 260px;
    height: 260px;

    border-radius: 999px;
    background: rgba(47, 42, 36, .06);
}

.bm-research-card-label {
    position: relative;
    margin-bottom: 1.45rem;
    background: rgba(247,244,239,.75);
}

.bm-research-card-title {
    position: relative;
    margin: 0;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.055em;
}

.bm-research-card-text {
    position: relative;
    margin: 1.25rem 0 0;

    color: var(--bm-research-muted);

    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
}

/* ============================================================
   SECTIONS
============================================================ */

.bm-research-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-top: 1px solid var(--bm-research-line);
}

.bm-research-two-columns {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.bm-research-section-heading {
    max-width: 520px;
}

.bm-research-section-title {
    margin: 0;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.1rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
}

.bm-research-section-content {
    color: var(--bm-research-muted);

    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.85;
}

.bm-research-section-content p {
    margin: 0;
}

.bm-research-section-content p + p {
    margin-top: 1.2rem;
}

/* ============================================================
   ACTIVIDADES
============================================================ */

.bm-research-activity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;

    margin: 1.55rem 0;
}

.bm-research-activity-grid span {
    display: flex;
    align-items: center;

    min-height: 48px;
    padding: .78rem .95rem;

    border: 1px solid var(--bm-research-line);
    border-radius: 999px;

    background: rgba(255,255,255,.58);
    color: var(--bm-research-text);

    font-size: .95rem;
    font-weight: 900;
    line-height: 1.25;
}

/* ============================================================
   PHILOSOPHY
============================================================ */

.bm-research-philosophy {
    padding: clamp(4rem, 8vw, 7rem) 0;

    background:
        linear-gradient(135deg, rgba(23,23,23,.94), rgba(47,42,36,.92));
}

.bm-research-quote {
    max-width: 960px;
    margin: 0 auto;

    text-align: center;
}

.bm-research-quote p {
    margin: 0;

    color: #fff;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(2rem, 5.2vw, 5rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.065em;
}

/* ============================================================
   FORM
============================================================ */

.bm-research-form-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-top: 1px solid var(--bm-research-line);
}

.bm-research-form-box {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .68fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;

    padding: clamp(1.35rem, 4vw, 3rem);

    border: 1px solid rgba(255,255,255,.72);
    border-radius: var(--bm-research-radius-lg);

    background:
        linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.66));

    box-shadow: var(--bm-research-shadow-md);
    backdrop-filter: blur(18px);
}

.bm-research-form-title {
    max-width: 640px;
    margin: 0;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
}

.bm-research-form-text {
    max-width: 560px;
    margin: 1.15rem 0 0;

    color: var(--bm-research-muted);

    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.7;
}

.bm-research-form {
    display: grid;
    gap: 1rem;
}

.bm-research-field {
    display: grid;
    gap: .45rem;
}

.bm-research-field label {
    color: var(--bm-research-text);

    font-size: .88rem;
    font-weight: 900;
    line-height: 1.2;
}

.bm-research-field input {
    width: 100%;
    min-height: 52px;

    padding: .95rem 1rem;

    border: 1px solid var(--bm-research-line-strong);
    border-radius: var(--bm-research-radius-sm);

    background: rgba(255,255,255,.82);
    color: var(--bm-research-text);

    font-size: 1rem;
    font-weight: 700;

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.bm-research-field input::placeholder {
    color: rgba(102, 97, 92, .68);
}

.bm-research-field input:focus {
    outline: none;
    border-color: rgba(47, 42, 36, .48);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 42, 36, .08);
}

.bm-research-btn-submit {
    width: 100%;
    min-height: 54px;
    margin-top: .25rem;
}

.bm-research-privacy {
    margin: .15rem 0 0;

    color: var(--bm-research-soft);

    font-size: .86rem;
    font-weight: 700;
    line-height: 1.45;
}

/* ============================================================
   FOOTER
============================================================ */

.bm-research-footer {
    padding: 1.4rem 1rem 1.6rem;

    border-top: 1px solid var(--bm-research-line);

    color: var(--bm-research-soft);
    text-align: center;

    font-size: .9rem;
    font-weight: 700;
}

.bm-research-footer p {
    margin: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1023px) {

    .bm-research-hero {
        min-height: auto;
        padding-top: 4rem;
    }

    .bm-research-hero-grid,
    .bm-research-two-columns,
    .bm-research-form-box {
        grid-template-columns: 1fr;
    }

    .bm-research-card {
        max-width: 620px;
    }

    .bm-research-section-heading,
    .bm-research-form-intro {
        max-width: 720px;
    }
}

/* ============================================================
   RESPONSIVE · MOBILE PREMIUM
============================================================ */

@media (max-width: 767px) {

    .bm-research-container {
        width: min(100% - 1.25rem, var(--bm-research-mobile-max));
    }

    .bm-research-hero {
        min-height: auto;
        padding: 2.15rem 0 2.75rem;
    }

    .bm-research-hero-grid,
    .bm-research-two-columns,
    .bm-research-form-box {
        grid-template-columns: 1fr;
        gap: 1.65rem;
    }

    .bm-research-kicker,
    .bm-research-eyebrow,
    .bm-research-card-label {
        margin-bottom: .9rem;
        padding: .38rem .68rem;

        font-size: .68rem;
        letter-spacing: .075em;
    }

    .bm-research-title {
        max-width: 100%;

        font-size: clamp(2.05rem, 10.5vw, 3.15rem);
        line-height: 1.02;
        letter-spacing: -.055em;
    }

    .bm-research-lead {
        margin-top: 1.15rem;

        font-size: .98rem;
        line-height: 1.65;
    }

    .bm-research-actions {
        width: 100%;
        margin-top: 1.55rem;
    }

    .bm-research-btn,
    .bm-research-btn-primary,
    .bm-research-btn-submit {
        width: 100%;
        min-height: 50px;

        padding: .86rem 1rem;

        font-size: .9rem;
        font-weight: 900;
    }

    .bm-research-note {
        margin-top: .85rem;

        font-size: .86rem;
        font-weight: 700;
        line-height: 1.45;
    }

    .bm-research-card {
        padding: 1.15rem;

        border-radius: 24px;
        box-shadow: 0 18px 48px rgba(20, 20, 20, .10);
    }

    .bm-research-card-title {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        line-height: 1.04;
        letter-spacing: -.045em;
    }

    .bm-research-card-text {
        margin-top: .9rem;

        font-size: .98rem;
        line-height: 1.6;
    }

    .bm-research-section,
    .bm-research-philosophy,
    .bm-research-form-section {
        padding: 3rem 0;
    }

    .bm-research-section-title,
    .bm-research-form-title {
        font-size: clamp(1.75rem, 8.6vw, 2.45rem);
        line-height: 1.05;
        letter-spacing: -.045em;
    }

    .bm-research-section-content {
        font-size: .98rem;
        line-height: 1.72;
    }

    .bm-research-section-content p + p {
        margin-top: .95rem;
    }

    .bm-research-activity-grid {
        grid-template-columns: 1fr;
        gap: .62rem;

        margin: 1.25rem 0;
    }

    .bm-research-activity-grid span {
        min-height: 44px;
        padding: .72rem .85rem;

        border-radius: 14px;

        font-size: .9rem;
    }

    .bm-research-quote {
        text-align: left;
    }

    .bm-research-quote p {
        font-size: clamp(1.75rem, 8.8vw, 2.65rem);
        line-height: 1.08;
        letter-spacing: -.045em;
    }

    .bm-research-form-box {
        padding: 1.15rem;

        border-radius: 24px;
        box-shadow: 0 18px 48px rgba(20, 20, 20, .10);
    }

    .bm-research-form-text {
        margin-top: .9rem;

        font-size: .98rem;
        line-height: 1.6;
    }

    .bm-research-form {
        gap: .9rem;
    }

    .bm-research-field {
        gap: .38rem;
    }

    .bm-research-field label {
        font-size: .82rem;
    }

    .bm-research-field input {
        min-height: 49px;
        padding: .82rem .9rem;

        border-radius: 12px;

        font-size: .95rem;
    }

    .bm-research-privacy {
        font-size: .8rem;
        line-height: 1.42;
    }

    .bm-research-footer {
        padding: 1.15rem 1rem 1.35rem;

        font-size: .8rem;
        line-height: 1.4;
    }
}

@media (max-width: 380px) {

    .bm-research-container {
        width: min(100% - 1rem, var(--bm-research-mobile-max));
    }

    .bm-research-title {
        font-size: 1.95rem;
    }

    .bm-research-section-title,
    .bm-research-form-title {
        font-size: 1.65rem;
    }

    .bm-research-card-title {
        font-size: 1.6rem;
    }

    .bm-research-quote p {
        font-size: 1.7rem;
    }

    .bm-research-btn {
        font-size: .84rem;
    }
}