:root {
    --ink: #14253d;
    --muted: #637085;
    --paper: #fdfcff;
    --violet: #6547bb;
    --cyan: #2ec7d7;
    --line: rgba(20, 37, 61, .13);
    --gradient: linear-gradient(110deg, var(--cyan), #4d83d1 46%, var(--violet) 78%, #a94fc0);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--paper); }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.coming-soon {
    display: grid;
    grid-template-columns: minmax(0, 56%) minmax(380px, 44%);
    min-height: 100svh;
}

.content-panel {
    position: relative;
    display: grid;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 88%, rgba(46, 199, 215, .13), transparent 28rem),
        radial-gradient(circle at 92% 5%, rgba(101, 71, 187, .09), transparent 24rem),
        var(--paper);
}

.content-panel::before {
    content: "";
    position: absolute;
    top: clamp(34px, 6vw, 80px);
    right: clamp(28px, 5vw, 74px);
    width: 42px;
    height: 2px;
    background: var(--gradient);
}

.content-inner {
    display: flex;
    flex-direction: column;
    width: min(760px, calc(100% - 12vw));
    min-height: 100%;
    margin: 0 auto;
    padding: clamp(28px, 5vh, 64px) 0 clamp(24px, 4vh, 48px);
}

.brand {
    width: clamp(104px, 10vw, 148px);
    height: auto;
    margin: 0 0 clamp(34px, 7vh, 78px);
}

.message { max-width: 650px; }

.eyebrow {
    margin: 0 0 20px;
    color: var(--violet);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 28px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4rem, 7.4vw, 7.25rem);
    font-weight: 500;
    line-height: .92;
    letter-spacing: -.045em;
}

h1 em {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 500;
}

.intro {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    line-height: 1.72;
}

.contact {
    margin-top: clamp(42px, 7vh, 76px);
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.contact > p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: .88rem;
}

.contact-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 23px;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 14px 30px rgba(20, 37, 61, .16);
    font-size: .93rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-link:hover,
.primary-link:focus-visible {
    background: var(--violet);
    box-shadow: 0 16px 34px rgba(101, 71, 187, .22);
    transform: translateY(-2px);
}

.primary-link svg {
    width: 19px;
    margin-right: 10px;
    fill: currentColor;
}

.social-link {
    padding: 8px 0;
    color: var(--ink);
    font-size: .91rem;
    font-weight: 600;
    text-underline-offset: 5px;
    text-decoration-color: rgba(101, 71, 187, .35);
}

.social-link:hover,
.social-link:focus-visible { color: var(--violet); }

footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
    padding-top: 30px;
    color: #7a8494;
    font-size: .76rem;
    letter-spacing: .035em;
}

footer > span:first-child { color: var(--ink); font-weight: 600; }

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--cyan);
}

.portrait-panel {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #e6d8cd;
}

.portrait-panel > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 42%;
    filter: saturate(.85) contrast(.97);
}

.portrait-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 37, 61, .03) 45%, rgba(20, 37, 61, .66) 100%),
        linear-gradient(90deg, rgba(101, 71, 187, .08), transparent 35%);
}

.portrait-note {
    position: absolute;
    right: clamp(28px, 4.5vw, 72px);
    bottom: clamp(32px, 6vh, 68px);
    left: clamp(28px, 4.5vw, 72px);
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    font-style: italic;
    line-height: 1.22;
    text-shadow: 0 2px 20px rgba(20, 37, 61, .32);
}

a:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

/* Mantém todo o conteúdo visível em monitores horizontais com pouca altura. */
@media (min-width: 901px) and (max-height: 820px) {
    .coming-soon,
    .portrait-panel { min-height: 100dvh; }

    .content-inner {
        padding-top: clamp(20px, 3.2vh, 30px);
        padding-bottom: clamp(18px, 2.8vh, 26px);
    }

    .brand {
        width: clamp(80px, 8.5vh, 104px);
        margin-bottom: clamp(18px, 3.5vh, 28px);
    }

    .eyebrow { margin-bottom: 12px; }

    h1 {
        margin-bottom: clamp(14px, 2.5vh, 22px);
        font-size: clamp(3.5rem, 9.5vh, 5.25rem);
    }

    .intro {
        font-size: clamp(.94rem, 2vh, 1.08rem);
        line-height: 1.55;
    }

    .contact {
        margin-top: clamp(20px, 3.8vh, 32px);
        padding-top: clamp(14px, 2.4vh, 20px);
    }

    .contact > p { margin-bottom: 11px; }

    .primary-link {
        min-height: 46px;
        padding: 10px 20px;
    }

    footer { padding-top: clamp(14px, 2.8vh, 24px); }

    .portrait-note { bottom: clamp(24px, 4vh, 38px); }
}

@media (min-width: 901px) and (max-height: 650px) {
    .content-inner { width: min(760px, calc(100% - 9vw)); }
    .brand { width: 70px; margin-bottom: 12px; }
    .eyebrow { margin-bottom: 8px; }
    h1 { margin-bottom: 10px; font-size: clamp(3rem, 9vh, 3.75rem); }
    .intro { font-size: .9rem; line-height: 1.45; }
    .contact { margin-top: 14px; padding-top: 11px; }
    .contact > p { margin-bottom: 8px; }
    .primary-link { min-height: 42px; padding: 8px 18px; }
    footer { padding-top: 10px; }
}

@media (max-width: 900px) {
    .coming-soon {
        grid-template-columns: 1fr;
    }

    .content-panel { min-height: 68svh; }

    .content-inner {
        width: min(660px, calc(100% - 48px));
        padding-bottom: 34px;
    }

    .brand { margin-bottom: 30px; }

    h1 { font-size: clamp(3.8rem, 14vw, 6.2rem); }

    .contact { margin-top: 38px; }

    footer { margin-top: 44px; }

    .portrait-panel {
        min-height: 46svh;
        max-height: 620px;
    }

    .portrait-panel > img { object-position: 50% 35%; }
}

@media (max-width: 520px) {
    .content-inner { width: calc(100% - 36px); }

    .content-panel::before { right: 20px; }

    .brand { width: 96px; }

    h1 { font-size: clamp(3.45rem, 17vw, 4.7rem); }

    .intro { font-size: 1rem; line-height: 1.62; }

    .contact-links { align-items: flex-start; flex-direction: column; gap: 10px; }

    .primary-link { width: 100%; }

    footer { align-items: flex-start; flex-direction: column; gap: 3px; }

    footer .dot { display: none; }

    .portrait-panel { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
