:root {
    --green: #3f7f2a;
    --green-dark: #2b641d;
    --green-light: #78b83f;
    --orange: #ed8614;
    --orange-dark: #d76f0d;
    --cream: #fff8ec;
    --cream-2: #f8efe1;
    --text: #141615;
    --muted: #575d56;
    --soft-shadow: 0 24px 70px rgba(46, 74, 33, .16);
    --button-shadow: 0 14px 25px rgba(44, 89, 24, .20);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --max-card: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 11% 11%, rgba(237, 134, 20, .16), transparent 27%),
        radial-gradient(circle at 86% 8%, rgba(63, 127, 42, .18), transparent 28%),
        linear-gradient(135deg, #fffaf2 0%, #fffdf8 47%, #f4faee 100%);
}

.page-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 28px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    width: min(100%, var(--max-card));
    min-height: 720px;
    border: 1px solid rgba(63, 127, 42, .16);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 252, 246, .96), rgba(255, 247, 235, .94));
    box-shadow: var(--soft-shadow);
    isolation: isolate;
}

.content {
    position: relative;
    z-index: 3;
    width: min(520px, calc(100% - 48px));
    margin: 0 auto;
    padding: 66px 0 34px;
    text-align: center;
}

.brand-logo {
    width: 300px;
    max-width: 58vw;
    height: auto;
    display: block;
    margin: 0 auto 28px;
    mix-blend-mode: multiply;
}

.headline-block h1 {
    margin: 0;
    font-size: clamp(44px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.headline-block h1 span {
    color: var(--green);
    position: relative;
    white-space: nowrap;
}

.headline-block h1 span::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 5px;
    height: 9px;
    border-radius: 99px;
    background: rgba(237, 134, 20, .35);
    z-index: -1;
}

.headline-block p {
    margin: 24px auto 34px;
    max-width: 470px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.links {
    display: grid;
    gap: 14px;
    margin: 0 auto 30px;
}

.link-button {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr 30px;
    align-items: center;
    min-height: 76px;
    padding: 12px 20px 12px 18px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--button-shadow);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.link-button:hover {
    transform: translateY(-3px);
    filter: saturate(1.04);
    box-shadow: 0 18px 34px rgba(44, 89, 24, .24);
}

.link-whatsapp {
    background: linear-gradient(135deg, var(--green-light), #2a8e16 55%, var(--green-dark));
}

.link-instagram {
    background: linear-gradient(135deg, #ffa52b, var(--orange) 52%, var(--orange-dark));
}

.link-email {
    color: var(--green-dark);
    background: linear-gradient(135deg, rgba(255,255,255,.96), #fff 60%, #f6f0e7);
}

.icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
}

.link-email .icon {
    background: rgba(63, 127, 42, .12);
}

.icon svg,
.pin svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.label {
    text-align: left;
    display: grid;
    gap: 2px;
}

.label strong {
    font-size: 19px;
    line-height: 1.05;
    font-weight: 800;
}

.label small {
    font-size: 12px;
    opacity: .92;
    font-weight: 500;
}

.arrow {
    font-size: 28px;
    line-height: 1;
}

.address-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    margin: 4px auto 28px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(239, 230, 215, .62);
    color: var(--green-dark);
    font-style: normal;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.pin {
    color: var(--green);
    display: grid;
    place-items: center;
}

footer {
    color: rgba(20, 22, 21, .62);
    font-size: 13px;
    font-weight: 500;
}

.leaf-large {
    position: absolute;
    z-index: 1;
    top: -58px;
    left: -64px;
    width: 290px;
    height: 205px;
    border-radius: 7% 100% 44% 100%;
    background:
        linear-gradient(28deg, rgba(21, 85, 21, .95), rgba(83, 130, 30, .96)),
        radial-gradient(circle at 48% 40%, rgba(255,255,255,.35), transparent 20%);
    transform: rotate(-18deg);
    box-shadow: inset -22px -14px 34px rgba(0,0,0,.12), 0 20px 38px rgba(48,86,30,.18);
}

.leaf-large::before,
.leaf-large::after {
    content: "";
    position: absolute;
    background: rgba(205, 223, 124, .48);
    transform-origin: left center;
}

.leaf-large::before {
    left: 42px;
    top: 102px;
    width: 220px;
    height: 2px;
    transform: rotate(-14deg);
}

.leaf-large::after {
    left: 96px;
    top: 66px;
    width: 2px;
    height: 86px;
    transform: rotate(42deg);
}

.shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.shape-orange {
    left: -78px;
    bottom: -98px;
    width: 390px;
    height: 250px;
    background: linear-gradient(135deg, #f89c17, #ed8614);
    border-radius: 55% 45% 62% 38%;
    transform: rotate(15deg);
}

.shape-green {
    right: -78px;
    bottom: -94px;
    width: 390px;
    height: 235px;
    background: linear-gradient(135deg, #4f8d31, #2f6c22);
    border-radius: 60% 40% 45% 55%;
    transform: rotate(-12deg);
}

.line-leaf,
.decor-circle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: .42;
}

.line-leaf-left {
    top: 180px;
    left: 78px;
    width: 74px;
    height: 118px;
    border-left: 2px solid rgba(84, 128, 40, .55);
    border-radius: 60% 0 0 20%;
    transform: rotate(-23deg);
}

.line-leaf-left::before,
.line-leaf-left::after,
.line-leaf-right::before,
.line-leaf-right::after {
    content: "";
    position: absolute;
    border: 1.5px solid rgba(84, 128, 40, .55);
    border-radius: 50% 0 50% 0;
    width: 28px;
    height: 14px;
}

.line-leaf-left::before {
    top: 22px;
    left: 5px;
    transform: rotate(30deg);
}

.line-leaf-left::after {
    top: 52px;
    left: 15px;
    transform: rotate(12deg);
}

.line-leaf-right {
    top: 58px;
    right: 82px;
    width: 105px;
    height: 185px;
    border-left: 2px solid rgba(84, 128, 40, .34);
    border-radius: 55% 0 0 20%;
    transform: rotate(34deg);
}

.line-leaf-right::before {
    top: 48px;
    left: 4px;
    transform: rotate(30deg) scale(1.2);
}

.line-leaf-right::after {
    top: 96px;
    left: 14px;
    transform: rotate(16deg) scale(1.35);
}

.decor-circle-top {
    top: -78px;
    right: 145px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(237, 134, 20, .22);
    border-radius: 50%;
}

.decor-circle-bottom {
    left: -72px;
    bottom: 126px;
    width: 205px;
    height: 205px;
    border: 1px solid rgba(237, 134, 20, .28);
    border-radius: 50%;
}

@media (max-width: 760px) {
    .page-shell {
        padding: 0;
        min-height: 100svh;
        display: block;
    }

    .hero-card {
        width: 100%;
        min-height: 100svh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .content {
        width: min(100% - 34px, 430px);
        padding: 72px 0 28px;
    }

    .brand-logo {
        width: 168px;
        margin-bottom: 28px;
    }

    .headline-block h1 {
        font-size: clamp(34px, 11vw, 47px);
        letter-spacing: -1.8px;
    }

    .headline-block p {
        margin: 21px auto 28px;
        font-size: 14px;
        line-height: 1.54;
        max-width: 330px;
    }

    .links {
        gap: 12px;
        margin-bottom: 28px;
    }

    .link-button {
        grid-template-columns: 47px 1fr 24px;
        min-height: 63px;
        padding: 10px 14px 10px 13px;
        border-radius: 16px;
    }

    .icon {
        width: 37px;
        height: 37px;
        border-radius: 12px;
    }

    .icon svg,
    .pin svg {
        width: 24px;
        height: 24px;
    }

    .label strong {
        font-size: 15px;
    }

    .label small {
        font-size: 10px;
    }

    .arrow {
        font-size: 23px;
    }

    .address-card {
        grid-template-columns: 35px 1fr;
        padding: 15px 16px;
        margin-bottom: 26px;
        font-size: 11px;
        border-radius: 15px;
    }

    .leaf-large {
        width: 155px;
        height: 115px;
        top: -33px;
        left: -42px;
    }

    .leaf-large::before {
        width: 118px;
        left: 24px;
        top: 57px;
    }

    .leaf-large::after {
        left: 52px;
        top: 37px;
        height: 48px;
    }

    .shape-orange {
        width: 215px;
        height: 118px;
        left: -72px;
        bottom: -42px;
    }

    .shape-green {
        width: 230px;
        height: 122px;
        right: -72px;
        bottom: -45px;
    }

    .line-leaf-left {
        display: none;
    }

    .line-leaf-right {
        top: 28px;
        right: 20px;
        transform: rotate(31deg) scale(.62);
        opacity: .26;
    }

    .decor-circle-top {
        width: 118px;
        height: 118px;
        top: -18px;
        right: -24px;
    }

    .decor-circle-bottom {
        display: none;
    }
}
/* =========================
   Folha decorativa superior
   ========================= */

.hero-card{
    position:relative;
    overflow:hidden;
}

.leaf-top-left{
    position:absolute;
    top:0;
    left:0;
    width:420px;
    height:auto;
    z-index:1;
    pointer-events:none;
    user-select:none;
}

.content{
    position:relative;
    z-index:10;
}

@media (max-width:768px){

    .leaf-top-left{
        width:220px;
        top:0;
        left:0;
    }

}

.link-menu{
    background:linear-gradient(135deg, #3f7f2a, #52b900);
    color:#fff;
}

.link-menu .icon{
    background:rgba(255,255,255,.18);
}

.link-menu svg{
    fill:#fff;
}

.link-coworking{
    background: linear-gradient(135deg,#d39b52 0%, #b87833 55%, #8d5a25 100%);
    color:#fff;
    border:none;
    cursor:default;
    transition:.25s ease;
    box-shadow:0 12px 28px rgba(126,77,29,.30);
}

.link-coworking:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(126,77,29,.40);
}

.link-coworking .icon{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.link-coworking .label strong{
    color:#fff;
    font-weight:700;
}

.link-coworking .label small{
    color:rgba(255,255,255,.92);
}

.link-coworking .arrow{
    color:#fff;
    opacity:.9;
}