/* Variáveis */
:root {
    --azul-jorneq: #112F47;
    --verde-jorneq: #446C2B;
    --fundo-1: #E5DECA;
    --fundo-2: #D6C9A4;
    --titulo: 'Montserrat', sans-serif;
    --texto: 'Inter', sans-serif;
}

/* Estética base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--texto);
    background-color: var(--fundo-1);
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--titulo);
    font-weight: 700; 
    letter-spacing: -0.5px;
    color: #333;
}


/* Landing temporária */
.landing-breve {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(74, 124, 35, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(24, 58, 95, 0.16), transparent 32%),
        linear-gradient(145deg, #f6efd7 0%, #efe4be 52%, #e7d8aa 100%);
    padding: 2rem 1.25rem;
    overflow: hidden;
    position: relative;
}

.landing-breve::before,
.landing-breve::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(24, 58, 95, 0.08);
    filter: blur(2px);
}

.landing-breve::before {
    width: 18rem;
    height: 18rem;
    top: -4rem;
    right: -6rem;
}

.landing-breve::after {
    width: 14rem;
    height: 14rem;
    bottom: -3rem;
    left: -4rem;
}

.landing-breve__card {
    position: relative;
    width: min(100%, 72rem);
    border: 1px solid rgba(24, 58, 95, 0.12);
    border-radius: 2rem;
    background: rgba(255, 250, 237, 0.82);
    box-shadow: 0 18px 55px rgba(24, 58, 95, 0.14);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.landing-breve__card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.65rem;
    background: linear-gradient(180deg, var(--azul-jorneq) 0%, var(--verde-jorneq) 100%);
}

.landing-breve__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.landing-breve__main,
.landing-breve__aside {
    padding: 3rem;
}

.landing-breve__main {
    border-right: 1px solid rgba(24, 58, 95, 0.08);
}

.landing-breve__brand {
    width: min(100%, 22rem);
    margin-bottom: 1.75rem;
}

.landing-breve__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(74, 124, 35, 0.12);
    color: var(--verde-jorneq);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.landing-breve h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.95;
    color: var(--azul-jorneq);
    margin-bottom: 1rem;
}

.landing-breve__lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
    max-width: 34rem;
    margin-bottom: 1.5rem;
    color: rgba(24, 58, 95, 0.88);
}

.landing-breve__note {
    color: rgba(24, 58, 95, 0.75);
    margin-bottom: 0;
}

.landing-breve__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background:
        linear-gradient(180deg, rgba(24, 58, 95, 0.04) 0%, rgba(24, 58, 95, 0.09) 100%);
}

.landing-breve__panel {
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(24, 58, 95, 0.1);
    padding: 1.25rem 1.3rem;
}

.landing-breve__panel h2 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--azul-jorneq);
    margin-bottom: 0.5rem;
}

.landing-breve__panel p,
.landing-breve__panel a {
    margin: 0;
    color: rgba(24, 58, 95, 0.82);
    text-decoration: none;
}

.landing-breve__panel a:hover {
    color: var(--verde-jorneq);
}

@media (max-width: 991px) {
    .landing-breve__grid {
        grid-template-columns: 1fr;
    }

    .landing-breve__main,
    .landing-breve__aside {
        padding: 2rem 1.5rem;
    }

    .landing-breve__main {
        border-right: 0;
        border-bottom: 1px solid rgba(24, 58, 95, 0.08);
    }
}

@media (max-width: 767px) {
    .landing-breve {
        padding: 1rem;
    }

    .landing-breve__card {
        border-radius: 1.5rem;
    }

    .landing-breve__main,
    .landing-breve__aside {
        padding: 1.5rem 1.25rem;
    }

    .landing-breve h1 {
        font-size: 2.4rem;
    }
}
