:root {
    --emerald: #0b4c3b;
    --emerald-2: #123f34;
    --cream: #fffaf1;
    --paper: #fffdf8;
    --gold: #caa45a;
    --rose: #d7838c;
    --mint: #dfeee6;
    --ink: #1d2420;
    --muted: #69736c;
    --line: rgba(202, 164, 90, .36);
    --shadow: 0 20px 50px rgba(29, 36, 32, .12);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 8px; z-index: 10; background: var(--paper); padding: 10px; }

.topbar {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px clamp(16px, 4vw, 56px);
    background: var(--emerald);
    color: #fffdf6;
    font-size: .9rem;
}
.topbar p { margin: 0; }
.topbar nav { display: flex; gap: 14px; white-space: nowrap; }
.topbar a { color: #fff; text-decoration-color: rgba(255,255,255,.4); }

.hero {
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: clamp(22px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    inset: auto -12vw 6vh auto;
    width: 48vw;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 48% 52% 42% 58%;
    opacity: .8;
}
.hero__copy { position: relative; z-index: 1; max-width: 680px; }
.brand {
    width: 104px;
    height: 104px;
    object-fit: contain;
    border-radius: 50%;
    background: #050505;
    margin-bottom: 22px;
}
.eyebrow {
    color: var(--emerald);
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: .78rem;
    margin: 0 0 10px;
}
h1, h2, h3 {
    font-family: var(--serif);
    line-height: 1.04;
    letter-spacing: 0;
    color: var(--emerald-2);
}
h1 {
    font-size: clamp(2.45rem, 8vw, 5.8rem);
    margin: 0 0 18px;
    max-width: 900px;
}
h2 { font-size: clamp(2rem, 5vw, 3.8rem); margin: 0; }
h3 { font-size: 1.45rem; margin: 8px 0 10px; }
.lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 650px;
    color: #38443d;
    margin-bottom: 28px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}
.button--primary { background: var(--emerald); color: #fffdf6; border-color: var(--emerald); }
.button--ghost { background: rgba(255,255,255,.55); color: var(--emerald); }
.trust {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trust li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255,255,255,.5);
    color: #415049;
}
.hero__photo {
    margin: 0;
    border-radius: 32px 32px 8px 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero__photo img { width: 100%; max-height: 78vh; object-fit: cover; object-position: center top; }

.section {
    padding: clamp(58px, 9vw, 110px) clamp(16px, 5vw, 72px);
}
.section__head {
    max-width: 760px;
    margin-bottom: 28px;
}
.section__head--wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1120px;
}
.section__head p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin: 0; }

.need-grid, .service-grid, .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.need-card, .service-card, .why-grid article {
    background: var(--paper);
    border: 1px solid rgba(11, 76, 59, .1);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(29, 36, 32, .06);
}
.need-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}
.need-card span {
    width: 36px;
    height: 3px;
    background: var(--gold);
}
.need-card strong, .why-grid strong { color: var(--emerald-2); font-size: 1.1rem; }
.need-card small, .why-grid span { color: var(--muted); }
.service-card p:first-child {
    color: var(--rose);
    font-weight: 800;
    font-size: .82rem;
    margin: 0;
}
.service-card p:nth-of-type(2) { color: var(--muted); }
.service-card a { color: var(--emerald); font-weight: 800; }

.technology {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    background: var(--emerald);
    color: #fffdf6;
    padding: clamp(58px, 9vw, 110px) clamp(16px, 5vw, 72px);
}
.technology h2, .technology .eyebrow { color: #fffdf6; }
.technology p { max-width: 710px; color: rgba(255,255,255,.84); }
.technology .note { color: #f1d99a; font-size: .95rem; }
.technology .button--primary { background: var(--gold); border-color: var(--gold); color: #1d211d; }
.tech-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}
.tech-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
}

.why { background: var(--mint); }
.why-grid article { display: grid; gap: 8px; background: rgba(255,255,255,.7); }

.steps {
    text-align: center;
    padding: clamp(58px, 9vw, 110px) clamp(16px, 5vw, 72px);
    background: var(--paper);
}
.steps ol {
    list-style: none;
    padding: 0;
    margin: 28px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 980px;
}
.steps li {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    display: grid;
    gap: 8px;
}
.steps span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--emerald);
    color: #fff;
}

.map-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    display: grid;
    gap: 18px;
}
.map-card strong, .map-card span { display: block; }
.map-card span { color: var(--muted); }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-frame {
    width: 100%;
    min-height: 340px;
}
.map-frame iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: 8px;
}

.faq details {
    background: var(--paper);
    border: 1px solid rgba(11, 76, 59, .1);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 16px 18px;
}
.faq summary { cursor: pointer; font-weight: 850; color: var(--emerald-2); }
.faq p { color: var(--muted); }

.final-cta {
    background: linear-gradient(120deg, var(--emerald), #184f41);
    color: #fffdf6;
    text-align: center;
    padding: clamp(54px, 8vw, 92px) 16px;
}
.final-cta h2 { color: #fffdf6; margin: 0 auto 22px; max-width: 760px; }
.final-cta .button--primary { background: var(--gold); border-color: var(--gold); color: #171713; }

.footer {
    padding: 34px 16px 96px;
    text-align: center;
    background: #080909;
    color: #fffdf6;
}
.footer img { margin: 0 auto 14px; object-fit: contain; }
.footer p { margin: 4px 0; color: rgba(255,255,255,.82); }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 16px; }
.footer a { color: #f1d99a; }

.float-whatsapp {
    position: fixed;
    z-index: 5;
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #1f8f5f;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.consent {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 82px;
    z-index: 6;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    box-shadow: var(--shadow);
}
.consent p { margin: 0 0 10px; }
.consent div { display: flex; flex-wrap: wrap; gap: 8px; }
.consent button, .consent a {
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid var(--emerald);
    background: var(--emerald);
    color: #fff;
    padding: 9px 12px;
    font-weight: 800;
    text-decoration: none;
}
.consent button:nth-child(2), .consent a { background: #fff; color: var(--emerald); }

@media (min-width: 760px) {
    .hero { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); }
    .brand { width: 128px; height: 128px; }
    .need-grid { grid-template-columns: repeat(4, 1fr); }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .section__head--wide { grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr); align-items: end; }
    .technology { grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr); align-items: center; }
    .steps ol { grid-template-columns: repeat(3, 1fr); }
    .consent { left: auto; max-width: 520px; }
}

@media (max-width: 640px) {
    .topbar { align-items: flex-start; flex-direction: column; gap: 6px; }
    .topbar nav { width: 100%; justify-content: space-between; }
    .hero { padding-top: 28px; }
    .hero__photo { order: -1; max-height: 46vh; }
    .hero__photo img { max-height: 46vh; }
    .button { width: 100%; }
    .tech-media { grid-template-columns: 1fr; }
}
