/* =========================================================
   AGIPEC — PÁGINA DE ENTREGAS
========================================================= */

.agipec-entregas {
    --ent-primary: var(--primary-color, #123a63);
    --ent-primary-dark: #0b2948;
    --ent-accent: var(--accent-color, #65b32e);
    --ent-accent-dark: #4d8f24;
    --ent-text: #182236;
    --ent-muted: #667085;
    --ent-border: #e3e8ef;
    --ent-soft: #f6f8fb;
    --ent-white: #fff;
    --ent-shadow: 0 18px 46px rgba(18,58,99,.09);

    color: var(--ent-text);
    background: #fff;
    overflow: hidden;
}

.agipec-entregas *,
.agipec-entregas *::before,
.agipec-entregas *::after {
    box-sizing: border-box;
}

.agipec-entregas a {
    text-decoration: none;
}

.agipec-entregas svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

/* BOTÕES */

.ent-btn {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 780;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.ent-btn:hover {
    transform: translateY(-2px);
}

.ent-btn-primary {
    color: #fff;
    background: var(--ent-accent);
}

.ent-btn-primary:hover {
    color: #fff;
    background: var(--ent-accent-dark);
}

.ent-btn-secondary {
    color: var(--ent-primary);
    background: #fff;
    border: 1px solid rgba(18,58,99,.16);
}

.ent-btn-secondary:hover {
    color: var(--ent-primary-dark);
    border-color: rgba(18,58,99,.32);
}

.ent-btn-whatsapp {
    color: #fff;
    background: #25d366;
}

.ent-btn-whatsapp:hover {
    color: #fff;
    background: #1caf55;
}

.ent-btn-light {
    color: var(--ent-primary);
    background: #fff;
}

/* HERO */

.ent-hero {
    padding: 74px 0 68px;
    background:
        radial-gradient(circle at 85% 15%, rgba(101,179,46,.14), transparent 28%),
        linear-gradient(135deg, #f7fbff 0%, #eef5fa 55%, #f7fbf3 100%);
}

.ent-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    gap: 54px;
    align-items: center;
}

.ent-kicker,
.ent-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ent-accent-dark);
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ent-kicker {
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(101,179,46,.11);
}

.ent-hero h1 {
    margin: 0;
    color: var(--ent-primary);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 860;
    line-height: 1;
    letter-spacing: -.045em;
}

.ent-hero-lead {
    max-width: 720px;
    margin: 23px 0 0;
    color: #475467;
    font-size: 1.12rem;
    line-height: 1.72;
}

.ent-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ent-hero-card {
    padding: 32px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(101,179,46,.35), transparent 29%),
        linear-gradient(145deg, #123a63 0%, #0b2948 100%);
    box-shadow: 0 26px 64px rgba(18,58,99,.2);
}

.ent-card-eyebrow {
    color: #bde29f;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .11em;
}

.ent-hero-card h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 820;
    line-height: 1.15;
}

.ent-hero-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.ent-hero-list > div {
    padding: 13px 14px;
    display: flex;
    gap: 13px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 13px;
    background: rgba(255,255,255,.06);
}

.ent-hero-list svg {
    flex: 0 0 22px;
    color: #bde29f;
}

.ent-hero-list strong,
.ent-hero-list small {
    display: block;
}

.ent-hero-list strong {
    color: #fff;
    font-size: .92rem;
}

.ent-hero-list small {
    margin-top: 3px;
    color: rgba(255,255,255,.65);
    font-size: .78rem;
}

/* QUICK NAV */

.ent-quick {
    background: var(--ent-primary);
}

.ent-quick-grid {
    min-height: 78px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ent-quick-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255,255,255,.84);
    font-size: .9rem;
    font-weight: 750;
    border-right: 1px solid rgba(255,255,255,.08);
}

.ent-quick-grid a:last-child {
    border-right: 0;
}

.ent-quick-grid a:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
}

.ent-quick-grid svg {
    color: #a9d98a;
}

/* SEÇÕES */

.ent-section {
    padding: 86px 0;
}

.ent-section-soft {
    background: var(--ent-soft);
}

.ent-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
    gap: 42px;
    align-items: start;
}

.ent-section-content h2,
.ent-section-heading h2,
.ent-aracaju-content h2,
.ent-final-card h2 {
    margin: 10px 0 0;
    color: var(--ent-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 830;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.ent-section-content > p,
.ent-section-heading p,
.ent-aracaju-content > p,
.ent-final-card p {
    color: var(--ent-muted);
    line-height: 1.7;
}

.ent-section-content > p {
    max-width: 760px;
    margin: 16px 0 0;
}

.ent-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.ent-section-heading p {
    margin: 15px auto 0;
}

/* INFO */

.ent-info-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.ent-info-item {
    padding: 17px 18px;
    display: flex;
    gap: 14px;
    border: 1px solid var(--ent-border);
    border-radius: 15px;
    background: #fff;
}

.ent-info-item > svg {
    flex: 0 0 24px;
    margin-top: 2px;
    color: var(--ent-accent-dark);
}

.ent-info-item strong {
    display: block;
    color: var(--ent-primary);
    font-size: .94rem;
}

.ent-info-item p {
    margin: 4px 0 0;
    color: var(--ent-muted);
    font-size: .86rem;
    line-height: 1.55;
}

.ent-text-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ent-accent-dark);
    font-size: .9rem;
    font-weight: 800;
}

.ent-text-link svg {
    width: 17px;
    height: 17px;
}

.ent-side-card {
    padding: 30px;
    border-radius: 22px;
    color: #fff;
    background: var(--ent-primary);
    box-shadow: var(--ent-shadow);
}

.ent-side-card > svg {
    width: 34px;
    height: 34px;
    color: #bde29f;
}

.ent-side-card h3 {
    margin: 19px 0 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

.ent-side-card p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}

.ent-side-card-light {
    color: var(--ent-text);
    background: #fff;
    border: 1px solid var(--ent-border);
}

.ent-side-card-light > svg {
    color: var(--ent-accent-dark);
}

.ent-side-card-light h3 {
    color: var(--ent-primary);
}

.ent-side-card-light p {
    color: var(--ent-muted);
    margin-bottom: 22px;
}

/* LAGARTO */

.ent-condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ent-condition-card {
    padding: 28px;
    border: 1px solid var(--ent-border);
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.ent-condition-card svg {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
    color: var(--ent-accent-dark);
}

.ent-condition-card span,
.ent-condition-card strong {
    display: block;
}

.ent-condition-card span {
    color: var(--ent-muted);
    font-size: .84rem;
    font-weight: 700;
}

.ent-condition-card strong {
    margin-top: 7px;
    color: var(--ent-primary);
    font-size: 1.65rem;
    font-weight: 880;
}

.ent-alert {
    margin-top: 20px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    border: 1px solid #f2d391;
    border-radius: 15px;
    background: #fff9e9;
}

.ent-alert > svg {
    flex: 0 0 22px;
    color: #a86d00;
}

.ent-alert strong {
    color: #815900;
}

.ent-alert p {
    margin: 3px 0 0;
    color: #725f34;
    font-size: .87rem;
    line-height: 1.55;
}

.ent-fine-print {
    margin: 16px 0 0;
    color: #8993a3;
    font-size: .77rem;
    text-align: center;
}

.ent-fine-print-left {
    text-align: left;
}

/* ARACAJU */

.ent-aracaju-card {
    padding: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 38px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 95% 5%, rgba(101,179,46,.17), transparent 28%),
        #f7fbff;
    border: 1px solid rgba(18,58,99,.09);
}

.ent-aracaju-content > p {
    max-width: 760px;
    margin: 16px 0 0;
}

.ent-route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ent-route-pills span {
    padding: 9px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: var(--ent-primary);
    background: #fff;
    border: 1px solid var(--ent-border);
    font-size: .86rem;
    font-weight: 750;
}

.ent-route-pills svg {
    width: 18px;
    height: 18px;
    color: var(--ent-accent-dark);
}

.ent-price-summary {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ent-price-summary > div {
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ent-border);
}

.ent-price-summary span,
.ent-price-summary strong {
    display: block;
}

.ent-price-summary span {
    color: var(--ent-muted);
    font-size: .77rem;
}

.ent-price-summary strong {
    margin-top: 6px;
    color: var(--ent-primary);
    font-size: 1.2rem;
}

.ent-price-summary .ent-price-free {
    border-color: rgba(101,179,46,.35);
    background: #f7fff2;
}

.ent-price-summary .ent-price-free strong {
    color: var(--ent-accent-dark);
}

.ent-aracaju-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.ent-aracaju-aside {
    display: grid;
    gap: 12px;
}

.ent-aracaju-aside > div {
    padding: 19px;
    border-radius: 16px;
    color: #fff;
    background: var(--ent-primary);
}

.ent-aracaju-aside svg,
.ent-aracaju-aside strong,
.ent-aracaju-aside span {
    display: block;
}

.ent-aracaju-aside svg {
    margin-bottom: 13px;
    color: #bde29f;
}

.ent-aracaju-aside strong {
    font-size: .93rem;
}

.ent-aracaju-aside span {
    margin-top: 3px;
    color: rgba(255,255,255,.64);
    font-size: .79rem;
}

/* STEPS */

.ent-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ent-steps article {
    position: relative;
    padding: 27px 23px;
    border: 1px solid var(--ent-border);
    border-radius: 19px;
    background: #fff;
}

.ent-steps article > span {
    position: absolute;
    top: 17px;
    right: 17px;
    color: rgba(18,58,99,.08);
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1;
}

.ent-steps article > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 23px;
    color: var(--ent-accent-dark);
}

.ent-steps h3 {
    margin: 0;
    color: var(--ent-primary);
    font-size: 1rem;
    font-weight: 800;
}

.ent-steps p {
    margin: 8px 0 0;
    color: var(--ent-muted);
    font-size: .87rem;
    line-height: 1.55;
}

.ent-center-action {
    margin-top: 28px;
    text-align: center;
}

/* RULES */

.ent-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ent-rules-grid article {
    padding: 24px;
    border: 1px solid var(--ent-border);
    border-radius: 17px;
    background: #fff;
}

.ent-rules-grid svg {
    width: 27px;
    height: 27px;
    color: var(--ent-accent-dark);
}

.ent-rules-grid h3 {
    margin: 15px 0 0;
    color: var(--ent-primary);
    font-size: .98rem;
    font-weight: 800;
}

.ent-rules-grid p {
    margin: 7px 0 0;
    color: var(--ent-muted);
    font-size: .85rem;
    line-height: 1.55;
}

/* FAQ */

.ent-faq {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.ent-faq details {
    border: 1px solid var(--ent-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.ent-faq summary {
    position: relative;
    padding: 19px 50px 19px 20px;
    cursor: pointer;
    list-style: none;
    color: var(--ent-primary);
    font-size: .94rem;
    font-weight: 800;
}

.ent-faq summary::-webkit-details-marker {
    display: none;
}

.ent-faq summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ent-accent-dark);
    font-size: 1.3rem;
}

.ent-faq details[open] summary::after {
    content: "−";
}

.ent-faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--ent-muted);
    font-size: .88rem;
    line-height: 1.62;
}

/* FINAL */

.ent-final {
    padding: 0 0 88px;
}

.ent-final-card {
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    border-radius: 27px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(101,179,46,.34), transparent 26%),
        linear-gradient(135deg, #123a63 0%, #0b2948 100%);
}

.ent-final-card .ent-section-kicker {
    color: #bde29f;
}

.ent-final-card h2 {
    color: #fff;
}

.ent-final-card p {
    max-width: 670px;
    margin: 13px 0 0;
    color: rgba(255,255,255,.7);
}

.ent-final-actions {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* RESPONSIVO */

@media (max-width: 1199.98px) {
    .ent-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .ent-hero-grid,
    .ent-section-grid,
    .ent-aracaju-card,
    .ent-final-card {
        grid-template-columns: 1fr;
    }

    .ent-hero-content {
        text-align: center;
    }

    .ent-hero-actions {
        justify-content: center;
    }

    .ent-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .ent-hero-card {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .ent-aracaju-aside {
        grid-template-columns: repeat(3, 1fr);
    }

    .ent-final-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .ent-hero {
        padding: 46px 0 50px;
    }

    .ent-section {
        padding: 66px 0;
    }

    .ent-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-quick-grid a {
        min-height: 58px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .ent-condition-grid,
    .ent-price-summary,
    .ent-rules-grid {
        grid-template-columns: 1fr;
    }

    .ent-aracaju-aside {
        grid-template-columns: 1fr;
    }

    .ent-aracaju-card {
        padding: 30px 24px;
    }

    .ent-final-card {
        padding: 34px 26px;
    }
}

@media (max-width: 575.98px) {
    .ent-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.1rem);
    }

    .ent-hero-actions,
    .ent-aracaju-actions,
    .ent-final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ent-btn {
        width: 100%;
    }

    .ent-steps {
        grid-template-columns: 1fr;
    }

    .ent-hero-card {
        padding: 25px 20px;
    }

    .ent-quick-grid {
        grid-template-columns: 1fr 1fr;
    }
}