/* ===================== APPLE / AIRPODS (demo) ===================== */
:root {
    --bg: #fbfbfd;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --line: #d2d2d7;
    --soft: #f5f5f7;
    --blue: #0071e3;
    --blue-d: #0077ed;
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(.28, .11, .32, 1);
    --max: 1024px;
}

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.5;
    letter-spacing: -.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

em {
    font-style: normal;
    color: var(--muted);
}

::selection {
    background: #b3d4fc;
}

/* ===== botões estilo Apple ===== */
.abtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .8rem 1.4rem;
    border: 0;
    border-radius: 980px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background .25s var(--ease), transform .1s var(--ease), opacity .25s;
}

.abtn--blue {
    background: var(--blue);
    color: #fff;
}

.abtn--blue:hover {
    background: var(--blue-d);
}

.abtn--block {
    width: 100%;
}

.abtn:active {
    transform: scale(.985);
}

/* link azul com chevron (padrão Apple) */
.lk {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    color: var(--blue);
    font-size: 1.2rem;
    transition: opacity .2s;
}

.lk:hover {
    text-decoration: underline;
}

.lk--ghost {
    color: var(--blue);
}

.lk__c {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.kick {
    display: inline-block;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--blue);
    margin-bottom: 1rem;
}

.kick--w {
    color: #2997ff;
}

/* ===================== NAV GLOBAL ===================== */
.gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 2.4rem);
    background: rgba(251, 251, 253, .8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.gnav__logo {
    color: var(--ink);
    display: flex;
    align-items: center;
}

.gnav__logo svg {
    width: 16px;
    height: 19px;
}

.gnav__links {
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.6rem);
}

.gnav__links a {
    font-size: .82rem;
    color: #1d1d1fcc;
    transition: color .2s;
}

.gnav__links a:hover {
    color: var(--ink);
}

.gnav__act {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.gnav__i {
    position: relative;
    display: grid;
    place-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
}

.gnav__i svg {
    width: 18px;
    height: 18px;
}

.gnav__count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: .58rem;
    font-weight: 600;
    display: grid;
    place-content: center;
    transform: scale(0);
    transition: transform .3s var(--ease);
}

.gnav__count.on {
    transform: scale(1);
}

@media (max-width:740px) {
    .gnav__links {
        display: none;
    }
}

/* ===== BARRA STICKY DO PRODUTO ===== */
.pbar {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 850;
    background: rgba(245, 245, 247, .82);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.pbar.on {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.pbar__in {
    max-width: var(--max);
    margin: 0 auto;
    height: 52px;
    padding: 0 clamp(1rem, 4vw, 2.4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pbar__name {
    font-size: 1.25rem;
    font-weight: 600;
}

.pbar__right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.pbar__from {
    font-size: .8rem;
    color: var(--muted);
}

.pbar__buy {
    border: 0;
    background: var(--blue);
    color: #fff;
    font-family: inherit;
    font-size: .85rem;
    padding: .5rem 1rem;
    border-radius: 980px;
    cursor: pointer;
    transition: background .2s;
}

.pbar__buy:hover {
    background: var(--blue-d);
}

@media (max-width:540px) {
    .pbar__from {
        display: none;
    }
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100svh;
    padding: 96px clamp(1rem, 4vw, 2rem) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__copy {
    padding-top: clamp(1.5rem, 4vw, 3rem);
}

.hero__h {
    font-size: clamp(3.4rem, 9vw, 7rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.02em;
}

.hero__h span {
    display: inline-block;
    margin-left: .15em;
    background: linear-gradient(120deg, #b06ab3, #4568dc 60%, #2997ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 500;
    max-width: 24ch;
    margin: 1rem auto 0;
}

.hero__links {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.hero__price {
    margin-top: 1.1rem;
    font-size: .92rem;
    color: var(--muted);
}

.hero__stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero__stage img {
    width: 100%;
    height: auto;
    max-height: 64svh;
    object-fit: contain;
    border-radius: 18px;
    will-change: transform;
}

/* ===== modelos 3D interativos (model-viewer) ===== */
.mv {
    width: 100%;
    background-color: transparent;
    --poster-color: transparent;
    --progress-bar-color: #0071e3;
    --progress-mask: transparent;
    outline: none;
    will-change: transform;
}

.mv--hero {
    height: min(64svh, 560px);
}

.feat__media--3d {
    position: relative;
    background: radial-gradient(120% 100% at 50% 22%, #ffffff 0%, var(--soft) 100%);
}

.feat__media--3d .mv {
    width: 100%;
    height: 100%;
    display: block;
}

.mv__hint {
    position: absolute;
    left: 50%;
    bottom: clamp(.5rem, 2vw, 1.1rem);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem .9rem;
    border-radius: 99px;
    background: rgba(20, 20, 22, .55);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: -.01em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    animation: mvHint .6s ease 1.8s forwards;
    transition: opacity .45s ease;
    z-index: 3;
}

.mv__hint::before {
    content: '';
    width: 13px;
    height: 13px;
    border: 1.6px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    opacity: .9;
}

.mv__hint.is-hidden {
    opacity: 0;
    animation: none;
}

@keyframes mvHint {
    to {
        opacity: 1;
    }
}

/* ===================== DESTAQUES ===================== */
.hl {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hl__c {
    text-align: center;
}

.hl__big {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    letter-spacing: -.03em;
    background: linear-gradient(120deg, #1d1d1f, #6e6e73);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .6rem;
}

.hl__c p {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 32ch;
    margin: 0 auto;
}

@media (max-width:740px) {
    .hl {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ===================== FEATURE (imagem + copy) ===================== */
.feat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 4vw, 2rem);
}

.feat--alt .feat__media {
    order: 2;
}

.feat__media {
    border-radius: 22px;
    overflow: hidden;
    background: var(--soft);
    aspect-ratio: 4/3.4;
}

.feat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat__h {
    font-size: clamp(1.9rem, 4.4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -.02em;
    margin-bottom: 1.1rem;
}

.feat__copy p {
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 40ch;
}

/* variante escura */
.feat--dark {
    max-width: none;
    background: #000;
    color: #f5f5f7;
    margin-top: 0;
}

.feat--dark .feat__copy p {
    color: #a1a1a6;
}

.feat--dark em {
    color: #a1a1a6;
}

.feat--dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
}

@media (max-width:760px) {

    .feat,
    .feat--dark {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feat--alt .feat__media {
        order: 0;
    }
}

/* ===================== ESPACIAL (banda escura) ===================== */
.spatial {
    background: radial-gradient(120% 90% at 50% 0%, #2a2a2e 0%, #000 60%);
    color: #f5f5f7;
    text-align: center;
    padding: clamp(5rem, 12vw, 10rem) clamp(1.2rem, 4vw, 2rem);
}

.spatial__in {
    max-width: 820px;
    margin: 0 auto;
}

.spatial__h {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.spatial__h em {
    color: #86868b;
}

.spatial__p {
    color: #a1a1a6;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin: 1.4rem auto 0;
    max-width: 46ch;
}

.spatial__ico {
    display: inline-grid;
    place-content: center;
    width: 92px;
    height: 92px;
    margin-top: 2.6rem;
    border-radius: 50%;
    border: 1px solid #ffffff2e;
    color: #2997ff;
}

.spatial__ico svg {
    width: 46px;
    height: 46px;
}

html.motion .spatial__ico {
    animation: spin 14s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================== GRADE DE SPECS ===================== */
.grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 4vw, 2rem);
}

.grid__title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -.02em;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.grid__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.4vw, 1.6rem);
}

.gi {
    background: var(--soft);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.gi:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .35);
}

.gi__i {
    display: grid;
    place-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #fff;
    color: var(--blue);
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 14px -8px rgba(0, 0, 0, .3);
}

.gi__i svg {
    width: 28px;
    height: 28px;
}

.gi h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.gi p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
}

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

@media (max-width:460px) {
    .grid__items {
        grid-template-columns: 1fr;
    }
}

/* ===================== LINEUP ===================== */
.lineup {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 4vw, 2rem);
    text-align: center;
}

.lineup__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -.02em;
    margin: .2rem 0 .8rem;
}

.lineup__sub {
    color: var(--muted);
    max-width: 44ch;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    font-size: 1.05rem;
}

.lineup__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.4rem);
    text-align: center;
}

.card {
    background: var(--soft);
    border-radius: 20px;
    padding: 1.8rem 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px -26px rgba(0, 0, 0, .4);
}

.card__tag {
    font-size: .72rem;
    font-weight: 600;
    color: #bf4800;
    letter-spacing: .02em;
    min-height: 1rem;
    margin-bottom: .6rem;
}

.card__img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.2rem;
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.card:hover .card__img img {
    transform: scale(1.05);
}

.card__name {
    font-size: 1.18rem;
    font-weight: 600;
}

.card__desc {
    color: var(--muted);
    font-size: .88rem;
    margin: .4rem 0 1rem;
    min-height: 2.3em;
}

.card__price {
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 1.1rem;
}

.card__price small {
    display: block;
    color: var(--muted);
    font-weight: 400;
    font-size: .8rem;
    margin-top: .15rem;
}

.card .abtn {
    margin-top: auto;
}

.lineup__note {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 2.4rem;
    max-width: 50ch;
    margin-inline: auto;
}

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

@media (max-width:460px) {
    .lineup__grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== ESPECIFICAÇÕES ===================== */
.specs {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 4vw, 2rem) clamp(5rem, 10vw, 9rem);
}

.specs__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 1.6rem;
}

.sp {
    border-top: 1px solid var(--line);
}

.sp:last-child {
    border-bottom: 1px solid var(--line);
}

.sp summary {
    list-style: none;
    cursor: pointer;
    padding: 1.3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 500;
}

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

.sp__i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: none;
}

.sp__i::before,
.sp__i::after {
    content: '';
    position: absolute;
    background: var(--blue);
    border-radius: 2px;
}

.sp__i::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.sp__i::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    transition: transform .3s var(--ease);
}

.sp[open] .sp__i::after {
    transform: translateX(-50%) scaleY(0);
}

.sp__b {
    overflow: hidden;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.sp__b p {
    padding-bottom: 1.4rem;
    max-width: 64ch;
}

/* ===================== FOOTER ===================== */
.gfoot {
    background: var(--soft);
    color: var(--muted);
    font-size: .82rem;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2rem) 2.4rem;
}

.gfoot__top {
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
    line-height: 1.5;
}

.gfoot__top p {
    max-width: 70ch;
}

.gfoot__cols {
    max-width: var(--max);
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.gfoot__col h4 {
    color: var(--ink);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.gfoot__col a {
    display: block;
    color: var(--muted);
    margin-bottom: .5rem;
    transition: color .2s;
}

.gfoot__col a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.gfoot__legal {
    max-width: var(--max);
    margin: 0 auto;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    line-height: 1.5;
}

.gfoot__legal a {
    color: var(--blue);
}

@media (max-width:760px) {
    .gfoot__cols {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================== SACOLA ===================== */
.bag {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.bag[hidden] {
    display: none;
}

.bag__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .32);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.bag.is-open .bag__scrim {
    opacity: 1;
}

.bag__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(400px, 100%);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
}

.bag.is-open .bag__panel {
    transform: none;
}

.bag__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}

.bag__head button {
    background: none;
    border: 0;
    color: var(--blue);
    font-size: .9rem;
    cursor: pointer;
    font-family: inherit;
}

.bag__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.6rem;
}

.bag__empty {
    color: var(--muted);
    padding: 2rem 0;
    text-align: center;
}

.bag-item {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}

.bag-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--soft);
    flex: none;
}

.bag-item__i {
    flex: 1;
}

.bag-item__i b {
    font-weight: 600;
    font-size: .95rem;
}

.bag-item__i span {
    display: block;
    font-size: .78rem;
    color: var(--muted);
}

.bag-item__rm {
    background: none;
    border: 0;
    color: var(--blue);
    font-size: .78rem;
    cursor: pointer;
    margin-top: .3rem;
    padding: 0;
    font-family: inherit;
}

.bag-item__p {
    font-weight: 600;
    font-size: .95rem;
}

.bag__foot {
    padding: 1.4rem 1.6rem;
    border-top: 1px solid var(--line);
}

.bag__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.bag__ship {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

/* ===================== CHECKOUT ===================== */
.co {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.co[hidden] {
    display: none;
}

.co__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.co.is-open .co__scrim {
    opacity: 1;
}

.co__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(540px, 94vw);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.6rem, 4vw, 2.4rem);
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform .55s var(--ease), opacity .4s var(--ease);
}

.co.is-open .co__panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.co__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--soft);
    color: var(--ink);
    font-size: 1.2rem;
    cursor: pointer;
}

.co__view {
    animation: coIn .5s var(--ease);
}

@keyframes coIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
}

.co__steps {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.6rem;
}

.co__steps>span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.co__steps i {
    display: grid;
    place-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--muted);
    font-style: normal;
    font-size: .72rem;
}

.co__steps>span.is-on {
    color: var(--ink);
}

.co__steps>span.is-on i {
    background: var(--blue);
    color: #fff;
}

.co__steps>span.is-done i {
    background: #34c759;
    color: #fff;
}

.co__steps-line {
    flex: 1;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
    min-width: 8px;
}

.co__steps-line.is-on {
    background: var(--blue);
}

.co__steps-line.is-done {
    background: #34c759;
}

.co__h {
    font-size: clamp(1.4rem, 3.4vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
}

.co__h--c {
    text-align: center;
    margin-bottom: .3rem;
}

/* itens da configuração */
.co__cfgItems {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 1.2rem;
}

.co__ci {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.co__ci img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--soft);
    flex: none;
}

.co__ci b {
    font-weight: 600;
    font-size: .95rem;
}

.co__ci span {
    display: block;
    font-size: .8rem;
    color: var(--muted);
}

/* opções (gravação / applecare) */
.co__opt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: .8rem;
}

.co__opt--check {
    cursor: pointer;
}

.co__optTxt {
    flex: 1;
}

.co__optTxt b {
    font-weight: 600;
    font-size: .95rem;
}

.co__optTxt small {
    display: block;
    color: var(--muted);
    font-size: .8rem;
    margin-top: .15rem;
}

.co__plus {
    color: var(--blue);
}

.co__engrave {
    width: 130px;
    flex: none;
    font-family: inherit;
    font-size: .9rem;
    padding: .6rem .7rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    text-align: center;
    outline: none;
    transition: border-color .2s;
}

.co__engrave:focus {
    border-color: var(--blue);
}

.co__opt--check input {
    display: none;
}

.co__sw {
    position: relative;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: var(--line);
    flex: none;
    transition: background .25s var(--ease);
}

.co__sw::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    transition: transform .25s var(--ease);
}

.co__opt--check input:checked~.co__sw {
    background: #34c759;
}

.co__opt--check input:checked~.co__sw::after {
    transform: translateX(18px);
}

/* métodos de pagamento */
.co__methods {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.3rem;
}

.co__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    padding: 1rem 1.1rem;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, background .2s;
}

.co__method:hover {
    border-color: #aaa;
}

.co__method.is-active {
    border-color: var(--blue);
    background: #f5faff;
}

.co__mIc {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 11px;
    background: var(--soft);
    color: var(--ink);
}

.co__method.is-active .co__mIc {
    background: var(--blue);
    color: #fff;
}

.co__mIc svg {
    width: 22px;
    height: 22px;
}

.co__mInfo {
    flex: 1;
}

.co__mInfo b {
    font-weight: 600;
    font-size: 1rem;
}

.co__mInfo small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
}

.co__mChk {
    width: 22px;
    height: 22px;
    flex: none;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    position: relative;
}

.co__method.is-active .co__mChk {
    border-color: var(--blue);
}

.co__method.is-active .co__mChk::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--blue);
}

/* cartão */
.co__card {
    margin-bottom: 1.3rem;
}

.co__card[hidden] {
    display: none;
}

.co__cardPreview {
    position: relative;
    aspect-ratio: 16/9.6;
    max-width: 310px;
    margin: 0 auto 1.1rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #3a3a3c, #1d1d1f 60%, #000);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 36px -16px rgba(0, 0, 0, .6);
    overflow: hidden;
}

.co__cardPreview::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(0, 113, 227, .5), transparent 70%);
}

.co__cardBrand {
    align-self: flex-end;
    color: #ffffffcc;
}

.co__cardBrand svg {
    width: 28px;
    height: 28px;
}

.co__cardNum {
    font-size: 1.1rem;
    letter-spacing: .1em;
    font-variant-numeric: tabular-nums;
}

.co__cardRow {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .72rem;
    letter-spacing: .04em;
    color: #ffffffcc;
    text-transform: uppercase;
}

.co__cardRow span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.co__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.co__field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 600;
}

.co__field--full {
    grid-column: 1/-1;
}

.co__field input,
.co__field select {
    font-family: inherit;
    font-size: .95rem;
    font-weight: 500;
    padding: .7rem .8rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
}

.co__field input:focus,
.co__field select:focus {
    border-color: var(--blue);
}

/* resumo */
.co__summary {
    border-top: 1px solid var(--line);
    padding-top: 1.1rem;
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.co__line {
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    color: var(--muted);
}

.co__line[hidden] {
    display: none;
}

.co__free {
    color: #34c759;
    font-weight: 600;
}

.co__line--total {
    margin-top: .3rem;
    padding-top: .7rem;
    border-top: 1px solid var(--line);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
}

.co__safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    margin-top: .9rem;
}

.co__safe svg {
    width: 15px;
    height: 15px;
    flex: none;
}

/* confirmação */
.co__hero {
    text-align: center;
    margin-bottom: 1.6rem;
}

.co__check {
    display: inline-grid;
    place-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #34c759;
    color: #fff;
    margin-bottom: 1rem;
}

.co__check svg {
    width: 36px;
    height: 36px;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

.co.is-open .co__check svg {
    animation: coCheck .6s var(--ease) .2s forwards;
}

@keyframes coCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.co__order {
    color: var(--muted);
    font-size: .92rem;
}

.co__order b {
    color: var(--ink);
}

.co__eta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1.5px solid var(--ink);
    border-radius: 14px;
    margin-bottom: 1.3rem;
}

.co__etaIc {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 11px;
    background: var(--ink);
    color: #fff;
}

.co__etaIc svg {
    width: 24px;
    height: 24px;
}

.co__eta>div {
    flex: 1;
}

.co__etaLbl {
    font-size: .76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.co__etaDate {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.co__etaTag {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--blue);
    background: #e8f2fe;
    padding: .35rem .6rem;
    border-radius: 6px;
    flex: none;
}

.co__track {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.3rem;
}

.co__tstep {
    display: flex;
    gap: 1rem;
    position: relative;
}

.co__tstep::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    bottom: -6px;
    width: 2px;
    background: var(--line);
}

.co__tstep:last-child::before {
    display: none;
}

.co__tdot {
    width: 18px;
    height: 18px;
    flex: none;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: #fff;
    margin-top: 2px;
    z-index: 1;
}

.co__tstep.is-active .co__tdot {
    border-color: #34c759;
    background: #34c759;
}

.co__tbody {
    padding-bottom: 1.1rem;
}

.co__tbody b {
    font-weight: 600;
    font-size: .95rem;
}

.co__tbody span {
    display: block;
    font-size: .82rem;
    color: var(--muted);
}

.co__addr {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--soft);
    border-radius: 14px;
    margin-bottom: 1.3rem;
}

.co__addrIc {
    color: var(--ink);
    flex: none;
}

.co__addrIc svg {
    width: 22px;
    height: 22px;
}

.co__addrLbl {
    font-size: .76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.co__addr p {
    font-size: .94rem;
    margin-top: .2rem;
}

.co__items {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.3rem;
}

.co__item {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.co__item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--soft);
    flex: none;
}

.co__item__i {
    flex: 1;
}

.co__item__i b {
    font-weight: 600;
    font-size: .92rem;
}

.co__item__i span {
    display: block;
    font-size: .78rem;
    color: var(--muted);
}

.co__item__p {
    font-weight: 600;
    font-size: .92rem;
}

/* TOAST */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, 200%);
    z-index: 1300;
    background: #1d1d1f;
    color: #fff;
    padding: .85rem 1.4rem;
    border-radius: 980px;
    font-size: .9rem;
    font-weight: 500;
    box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s var(--ease), opacity .4s, visibility 0s linear .4s;
    pointer-events: none;
}

.toast.is-on {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    transition: transform .5s var(--ease), opacity .4s;
}

/* reveal */
html.motion [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

@media (max-width:480px) {
    .co__fields {
        grid-template-columns: 1fr 1fr;
    }

    .co__eta {
        flex-wrap: wrap;
    }

    .co__opt {
        flex-wrap: wrap;
    }

    .co__engrave {
        width: 100%;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition-duration: .001ms !important;
    }
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-thumb {
    background: #c7c7cc;
    border-radius: 10px;
}
