/* ============================================
   Entregas Express — v2 Redesign
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
    font-family: 'Outfit', sans-serif;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.stage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

:root {
    --pine: #2c3e50;
    --brand-light: #3d566e;
    --mint: #e8eef2;
    --amber: #e07a3a;
    --sand-deep: #c4682c;
    --night: #151515;
    --text: #4a4a4a;
    --text-light: #7c7c7c;
    --stroke: #e4e4e4;
    --wash-f0: #f8f9fb;
    --white: #fff;
    --round-sm: 8px;
    --rad-md-cd: 14px;
    --rad-lg: 20px;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--night);
    line-height: 1.25;
}

.kicker {
    font-size: 13px;
    font-weight: 700;
    color: var(--pine);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    display: block;
}

.heading { font-size: 40px; margin-bottom: 16px; }

.sec-lead-e7 {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.75;
}

.text-mid { text-align: center; }
.text-mid .sec-lead-e7 { margin: 0 auto; }


/* =====================
   TOPBAR
   ===================== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    height: 74px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow .3s;
}

.topbar.shadow { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.topbar .stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-3d {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: var(--pine);
}

.brand-mark-15 {
    width: 36px; height: 36px;
    background: var(--pine);
    border-radius: var(--round-sm);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
}

.menubar-5c { display: flex; align-items: center; gap: 30px; }

.menubar-5c a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color .2s;
}

.menubar-5c a:hover { color: var(--pine); }

.menu-cta {
    background: var(--pine) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--round-sm) !important;
    font-weight: 600 !important;
    transition: background .2s, transform .15s !important;
}

.menu-cta:hover {
    background: var(--brand-light) !important;
    transform: translateY(-1px);
}

.nav-toggle-69 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle-69 span {
    width: 22px; height: 2.5px;
    background: var(--night);
    border-radius: 3px;
    transition: .3s;
}


/* =====================
   HERO
   ===================== */
.cover-area {
    padding: 150px 0 90px;
    position: relative;
    background: var(--wash-f0);
}

.cover-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff);
}

.open-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.open-grid h1 {
    font-size: 50px;
    line-height: 1.12;
    margin-bottom: 20px;
}

.open-grid h1 em {
    font-style: normal;
    color: var(--pine);
    position: relative;
}

.open-grid h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 100%;
    height: 8px;
    background: var(--amber);
    opacity: .35;
    border-radius: 4px;
    z-index: -1;
}

.lead-copy-2b {
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 480px;
}

.cta-row-6f { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-main {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px;
    background: var(--pine);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 600;
    border: none; border-radius: var(--round-sm);
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-main:hover { background: var(--brand-light); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px;
    background: transparent;
    color: var(--pine);
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 600;
    border: 2px solid var(--pine);
    border-radius: var(--round-sm);
    cursor: pointer;
    transition: all .2s;
}

.btn-ghost:hover { background: var(--pine); color: #fff; }

/* Hero right — tracking */
.track-card {
    background: var(--white);
    border-radius: var(--rad-lg);
    padding: 36px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    border: 1px solid var(--stroke);
}

.track-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.track-card .card-desc-56 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 22px;
}

.lookup-row-ca {
    display: flex;
    gap: 10px;
}

.lookup-row-ca input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--stroke);
    border-radius: var(--round-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
}

.lookup-row-ca input:focus { border-color: var(--pine); }
.lookup-row-ca input::placeholder { color: #c0c0c0; }

.metric-row {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--stroke);
}

.metric-row .metric-f5 {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: var(--mint);
    border-radius: var(--round-sm);
}

.metric-row .metric-f5 strong {
    display: block;
    font-size: 22px;
    color: var(--pine);
    font-weight: 800;
}

.metric-row .metric-f5 span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}


/* =====================
   VANTAGENS
   ===================== */
.benefits-f4 {
    padding: 100px 0;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feat-card {
    padding: 34px 28px;
    border-radius: var(--rad-md-cd);
    border: 1px solid var(--stroke);
    background: var(--white);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--mint);
}

.feat-card .ico {
    width: 52px; height: 52px;
    background: var(--mint);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--pine);
}

.feat-card h3 { font-size: 17px; margin-bottom: 10px; }

.feat-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}


/* =====================
   QUEM SOMOS
   ===================== */
.about-sec {
    padding: 100px 0;
    background: var(--wash-f0);
}

.split-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 50px;
}

.visual-box {
    position: relative;
    background: linear-gradient(150deg, var(--mint), #c5d0d8);
    border-radius: var(--rad-lg);
    height: 440px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.visual-box i {
    font-size: 140px;
    color: var(--pine);
    opacity: .1;
}

.wwa-floating {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--rad-md-cd);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}

.wwa-floating .orb {
    width: 46px; height: 46px;
    background: var(--amber);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
}

.wwa-floating strong { font-size: 20px; display: block; line-height: 1; }
.wwa-floating span { font-size: 12px; color: var(--text-light); }

.wwa-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.wwa-content > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 26px;
}

.check-list-54 { display: flex; flex-direction: column; gap: 16px; }

.check-list-54 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}

.check-list-54 li .dot-61 {
    width: 26px; height: 26px;
    background: var(--pine);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-list-54 li .dot-61 i { font-size: 11px; color: #fff; }


/* =====================
   PROCESSO
   ===================== */
.process { padding: 100px 0; }

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.process-item-a9 { text-align: center; position: relative; }

.process-item-a9 .num {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    background: var(--night);
    color: #fff;
    font-size: 20px; font-weight: 800;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.process-item-a9 h4 { font-size: 16px; margin-bottom: 8px; }

.process-item-a9 p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}


/* =====================
   AVALIACOES
   ===================== */
.reviews {
    padding: 100px 0;
    background: var(--wash-f0);
}

.quote-grid-62 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.dep-card {
    background: var(--white);
    border-radius: var(--rad-md-cd);
    padding: 30px 26px;
    border: 1px solid var(--stroke);
    transition: transform .3s;
}

.dep-card:hover { transform: translateY(-3px); }

.dep-card .score {
    display: flex; gap: 3px;
    color: var(--amber);
    font-size: 14px;
    margin-bottom: 16px;
}

.dep-card blockquote {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.who-said {
    display: flex;
    align-items: center;
    gap: 12px;
}

.who-said .initials {
    width: 40px; height: 40px;
    background: var(--mint);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--pine);
}

.who-said h5 { font-size: 14px; }
.who-said span { font-size: 12px; color: var(--text-light); }


/* =====================
   BANNER CTA
   ===================== */
.cta-banner-e9 {
    padding: 80px 0;
    background: var(--night);
    color: #fff;
    text-align: center;
}

.cta-banner-e9 h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }

.cta-banner-e9 p {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    max-width: 520px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-banner-e9 .btn-main {
    background: var(--amber);
    color: var(--night);
    font-size: 16px;
    padding: 16px 40px;
}

.cta-banner-e9 .btn-main:hover { background: var(--sand-deep); }


/* =====================
   FALE CONOSCO
   ===================== */
.fale-sec { padding: 100px 0; }

.talk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 50px;
}

.contact-list { display: flex; flex-direction: column; gap: 26px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .ib-icon {
    width: 48px; height: 48px;
    background: var(--mint);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--pine);
}

.contact-item h4 { font-size: 15px; margin-bottom: 4px; }

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a:hover { color: var(--pine); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--stroke);
    border-radius: var(--round-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--pine); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }


/* =====================
   RODAPE
   ===================== */
.colophon {
    background: var(--night);
    color: #bbb;
    padding: 60px 0 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.foot-about-45 h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }

.foot-about-45 p { font-size: 13px; line-height: 1.75; color: #888; }

.colophon h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }

.colophon ul li { margin-bottom: 9px; }

.colophon ul li a { font-size: 13px; color: #888; transition: color .2s; }
.colophon ul li a:hover { color: var(--amber); }

.ft-bottom-a8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.ft-bottom-a8 p { font-size: 12px; color: #555; }

.foot-social-de { display: flex; gap: 16px; }

.foot-social-de a { color: #555; font-size: 17px; transition: color .2s; }
.foot-social-de a:hover { color: var(--amber); }


/* =====================
   ANIMACAO
   ===================== */
.enter {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}

.enter.shown {
    opacity: 1;
    transform: translateY(0);
}


/* =====================
   RESPONSIVO
   ===================== */
@media (max-width: 1024px) {
    .open-grid h1 { font-size: 40px; }
    .heading { font-size: 34px; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .split-about { grid-template-columns: 1fr; gap: 40px; }
    .visual-box { height: 320px; }
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .quote-grid-62 { grid-template-columns: repeat(2, 1fr); }
    .talk-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menubar-5c { display: none; }

    .menubar-5c.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 74px; left: 0; right: 0;
        background: #fff;
        padding: 20px 28px;
        gap: 16px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.08);
        border-top: 1px solid var(--stroke);
    }

    .nav-toggle-69 { display: flex; }

    .cover-area { padding: 130px 0 70px; }
    .open-grid { grid-template-columns: 1fr; gap: 40px; }
    .open-grid h1 { font-size: 32px; }
    .lookup-row-ca { flex-direction: column; }
    .metric-row { flex-wrap: wrap; }

    .feat-grid,
    .process-row,
    .quote-grid-62,
    .foot-grid { grid-template-columns: 1fr; }

    .two-col { grid-template-columns: 1fr; }
    .cta-banner-e9 h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .stage { padding: 0 16px; }
    .open-grid h1 { font-size: 27px; }
    .heading { font-size: 26px; }
}
