/* ==========================================================================
   AUTONOMIA NO CAMPO — PÁGINA DE VENDAS
   Escopo isolado para não conflitar com o site.css
   ========================================================================== */

.aut-page {
    --aut-green-950: #031f11;
    --aut-green-900: #052b18;
    --aut-green-850: #07381f;
    --aut-green-700: #0b6336;
    --aut-green-500: #1e9b52;
    --aut-neon: #9cff63;
    --aut-gold: #dfb854;
    --aut-cream: #f6f2e8;
    --aut-ink: #132019;
    --aut-muted: #67736b;
    overflow: hidden;
    background: var(--aut-cream);
    color: var(--aut-ink);
}

.aut-page *,
.aut-page *::before,
.aut-page *::after {
    box-sizing: border-box;
}

.aut-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.aut-section {
    position: relative;
    padding: clamp(74px, 8vw, 118px) 0;
}

.aut-dark {
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(156, 255, 99, .09), transparent 27%),
        linear-gradient(135deg, var(--aut-green-950), var(--aut-green-850));
}

.aut-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--aut-gold);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.aut-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.aut-title {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.45rem, 5.2vw, 5.25rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.aut-title em {
    color: var(--aut-gold);
    font-style: normal;
}

.aut-lead {
    max-width: 60ch;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    line-height: 1.75;
}

.aut-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.aut-btn {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.aut-btn-primary {
    color: #082116;
    background: linear-gradient(135deg, #efd174, var(--aut-gold));
    box-shadow: 0 16px 36px rgba(0, 0, 0, .23);
}

.aut-btn-primary:hover {
    color: #082116;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .28), 0 0 20px rgba(223, 184, 84, .14);
}

.aut-btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, .055);
    border-color: rgba(255, 255, 255, .18);
}

.aut-btn-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border-color: rgba(156, 255, 99, .35);
    transform: translateY(-2px);
}

.aut-btn svg,
.aut-btn .icon {
    width: 18px;
    height: 18px;
    transition: transform .22s ease;
}

.aut-btn:hover svg,
.aut-btn:hover .icon {
    transform: translateX(4px);
}

/* HERO */
.aut-hero {
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: clamp(76px, 8vw, 120px) 0 82px;
}

.aut-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.aut-hero-copy {
    position: relative;
    z-index: 3;
}

.aut-proof-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
}

.aut-proof-inline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    font-weight: 750;
}

.aut-proof-inline svg,
.aut-proof-inline .icon {
    color: var(--aut-neon);
}

.aut-hero-media {
    position: relative;
    min-height: 620px;
}

.aut-hero-photo {
    position: absolute;
    inset: 0 0 0 8%;
    overflow: hidden;
    border: 1px solid rgba(156, 255, 99, .20);
    border-radius: 34px;
    box-shadow: 0 32px 70px rgba(0, 0, 0, .34);
}

.aut-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aut-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 24, 12, .72));
}

.aut-hero-label {
    position: absolute;
    right: -2%;
    top: 8%;
    z-index: 2;
    width: min(250px, 48%);
    padding: 20px;
    border: 1px solid rgba(223, 184, 84, .30);
    border-radius: 18px;
    background: rgba(4, 45, 24, .92);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .25);
}

.aut-hero-label strong,
.aut-hero-label span {
    display: block;
}

.aut-hero-label strong {
    font-size: 1rem;
}

.aut-hero-label span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: .78rem;
    line-height: 1.45;
}

.aut-hero-card {
    position: absolute;
    left: 0;
    bottom: 7%;
    z-index: 2;
    width: min(285px, 60%);
    padding: 22px;
    border: 1px solid rgba(156, 255, 99, .22);
    border-radius: 20px;
    background: rgba(3, 38, 20, .94);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .30);
}

.aut-hero-card small {
    color: var(--aut-neon);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.aut-hero-card strong {
    display: block;
    margin-top: 7px;
    font-size: 1.05rem;
    line-height: 1.35;
}

/* BARRA DE PROVA */
.aut-stat-strip {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.aut-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 55, 31, .10);
    border-radius: 22px;
    box-shadow: 0 24px 58px rgba(4, 31, 16, .13);
}

.aut-stat {
    position: relative;
    padding: 24px 25px;
}

.aut-stat + .aut-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24%;
    bottom: 24%;
    width: 1px;
    background: rgba(10, 55, 31, .10);
}

.aut-stat strong,
.aut-stat span {
    display: block;
}

.aut-stat strong {
    color: var(--aut-green-850);
    font-size: 1.2rem;
}

.aut-stat span {
    margin-top: 4px;
    color: var(--aut-muted);
    font-size: .78rem;
}

/* CABEÇALHOS */
.aut-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.aut-heading h2 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.aut-heading p {
    max-width: 55ch;
    margin: 0;
    color: var(--aut-muted);
    line-height: 1.75;
}

/* DOR */
.aut-problem-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.aut-problem-copy h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.aut-problem-copy p {
    max-width: 55ch;
    color: rgba(255, 255, 255, .70);
    line-height: 1.75;
}

.aut-problem-list {
    display: grid;
    gap: 14px;
}

.aut-problem-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.aut-problem-item b {
    color: var(--aut-neon);
    font-size: .78rem;
}

.aut-problem-item strong {
    display: block;
    font-size: 1rem;
}

.aut-problem-item span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .62);
    font-size: .85rem;
    line-height: 1.55;
}

/* CONTEÚDO */
.aut-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.aut-module {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(8, 66, 36, .10);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(4, 31, 16, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.aut-module:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(4, 31, 16, .12);
}

.aut-module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    color: var(--aut-green-950);
    background: linear-gradient(135deg, #f0d173, var(--aut-gold));
    border-radius: 50%;
    font-weight: 900;
}

.aut-module h3 {
    margin: 0 0 10px;
    font-size: 1.22rem;
}

.aut-module p {
    margin: 0;
    color: var(--aut-muted);
    line-height: 1.68;
}

/* FERRAMENTAS */
.aut-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.aut-tool {
    padding: 24px;
    border: 1px solid rgba(156, 255, 99, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.aut-tool strong {
    display: block;
    margin-bottom: 7px;
}

.aut-tool span {
    color: rgba(255, 255, 255, .62);
    font-size: .84rem;
    line-height: 1.55;
}

/* AUTORIDADE */
.aut-authority-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.aut-authority-photo {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 28px;
    box-shadow: 0 26px 58px rgba(4, 31, 16, .18);
}

.aut-authority-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aut-authority-copy h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.1rem, 3.9vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.aut-authority-copy > p {
    max-width: 58ch;
    color: var(--aut-muted);
    line-height: 1.75;
}

.aut-authority-points {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.aut-authority-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
}

.aut-authority-points svg,
.aut-authority-points .icon {
    color: var(--aut-green-500);
}

/* CARROSSEL DE FOTOS */
.aut-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 12px;
}

.aut-marquee::before,
.aut-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(30px, 8vw, 140px);
    z-index: 2;
    pointer-events: none;
}

.aut-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--aut-cream), transparent);
}

.aut-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--aut-cream), transparent);
}

.aut-marquee-track {
    display: flex;
    width: max-content;
    animation: autMarquee 70s linear infinite;
}

.aut-marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    padding-right: 16px;
}

.aut-photo {
    width: clamp(220px, 20vw, 320px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(4, 31, 16, .12);
}

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

.aut-marquee:hover .aut-marquee-track {
    animation-play-state: paused;
}

@keyframes autMarquee {
    to { transform: translateX(-50%); }
}

/* PARA QUEM É */
.aut-audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.aut-audience-item {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.aut-audience-item strong {
    display: block;
    margin-bottom: 6px;
}

.aut-audience-item span {
    color: rgba(255, 255, 255, .62);
    line-height: 1.55;
}

/* OFERTA */
.aut-offer {
    border-radius: 32px;
    background:
        radial-gradient(circle at 85% 12%, rgba(156, 255, 99, .13), transparent 28%),
        linear-gradient(135deg, var(--aut-green-950), var(--aut-green-850));
    box-shadow: 0 32px 74px rgba(4, 31, 16, .22);
}

.aut-offer-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    align-items: center;
    gap: 60px;
    padding: clamp(38px, 6vw, 72px);
}

.aut-offer-copy h2 {
    max-width: 13ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.aut-offer-copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.aut-offer-box {
    padding: 28px;
    border: 1px solid rgba(223, 184, 84, .25);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
}

.aut-offer-box small {
    color: var(--aut-neon);
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.aut-offer-box h3 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: 1.45rem;
}

.aut-offer-box p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .64);
    font-size: .88rem;
}

/* FAQ */
.aut-faq {
    max-width: 900px;
    margin-inline: auto;
}

.aut-faq details {
    border-bottom: 1px solid rgba(8, 66, 36, .14);
}

.aut-faq summary {
    position: relative;
    padding: 22px 42px 22px 0;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

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

.aut-faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 18px;
    color: var(--aut-green-700);
    font-size: 1.5rem;
}

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

.aut-faq p {
    max-width: 72ch;
    margin: -4px 0 22px;
    color: var(--aut-muted);
    line-height: 1.7;
}

/* CTA FINAL FIXO MOBILE */
.aut-mobile-bar {
    display: none;
}

/* RESPONSIVO */
@media (max-width: 1050px) {
    .aut-hero {
        min-height: auto;
    }

    .aut-hero-grid,
    .aut-problem-grid,
    .aut-authority-grid,
    .aut-offer-grid {
        grid-template-columns: 1fr;
    }

    .aut-hero-media {
        min-height: 620px;
    }

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

    .aut-stat:nth-child(3)::before {
        display: none;
    }

    .aut-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .aut-authority-photo {
        min-height: 540px;
    }
}

@media (max-width: 700px) {
    .aut-container {
        width: min(100% - 28px, 1180px);
    }

    .aut-section {
        padding: 68px 0;
    }

    .aut-hero {
        padding-top: 64px;
    }

    .aut-title {
        max-width: 12ch;
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }

    .aut-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .aut-btn {
        width: 100%;
    }

    .aut-proof-inline {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-hero-media {
        min-height: 500px;
        margin-top: 10px;
    }

    .aut-hero-photo {
        inset: 0;
        border-radius: 24px;
    }

    .aut-hero-label {
        top: 14px;
        right: 14px;
        width: 190px;
        padding: 14px;
    }

    .aut-hero-card {
        left: 14px;
        bottom: 14px;
        width: 230px;
        padding: 16px;
    }

    .aut-stat-strip {
        margin-top: -18px;
    }

    .aut-stats {
        grid-template-columns: 1fr 1fr;
    }

    .aut-stat {
        padding: 19px;
    }

    .aut-stat:nth-child(3)::before {
        display: block;
    }

    .aut-stat:nth-child(odd)::before {
        display: none;
    }

    .aut-module-grid,
    .aut-tools,
    .aut-audience {
        grid-template-columns: 1fr;
    }

    .aut-authority-photo {
        min-height: 470px;
    }

    .aut-photo {
        width: 205px;
    }

    .aut-marquee-track {
        animation-duration: 54s;
    }

    .aut-offer-grid {
        padding: 28px 20px;
        gap: 30px;
    }

    .aut-mobile-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 100;
        display: block;
        padding: 8px;
        border: 1px solid rgba(156, 255, 99, .25);
        border-radius: 999px;
        background: rgba(3, 31, 17, .94);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .30);
        backdrop-filter: blur(14px);
    }

    .aut-mobile-bar .aut-btn {
        min-height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-marquee {
        overflow-x: auto;
    }

    .aut-marquee-track {
        animation: none;
    }

    .aut-marquee-group[aria-hidden="true"] {
        display: none;
    }
}
/* ==========================================================================
   CONVERSÃO INTERMEDIÁRIA
   ========================================================================== */

.aut-btn-neon {
    color: #082116;
    background: linear-gradient(135deg, #b9ff79, #8fe94d);
    border-color: rgba(202, 255, 158, .42);
    box-shadow: 0 14px 34px rgba(39, 154, 73, .18);
}

.aut-btn-neon:hover {
    color: #082116;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(39, 154, 73, .26), 0 0 20px rgba(156, 255, 99, .16);
}

.aut-quick-cta {
    position: relative;
    z-index: 6;
    padding: 26px 0 8px;
}

.aut-quick-cta__inner,
.aut-inline-offer,
.aut-conversion-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 24px 26px;
    border: 1px solid rgba(10, 92, 49, .12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(4, 31, 16, .09);
}

.aut-quick-cta__inner div,
.aut-inline-offer div,
.aut-conversion-box div {
    display: grid;
    gap: 5px;
}

.aut-quick-cta__inner small,
.aut-inline-offer small,
.aut-conversion-box small {
    color: var(--aut-green-700);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.aut-quick-cta__inner strong,
.aut-inline-offer strong,
.aut-conversion-box strong {
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.45;
}

.aut-inline-offer {
    margin-top: 28px;
    background:
        radial-gradient(circle at 84% 20%, rgba(156, 255, 99, .11), transparent 28%),
        var(--aut-green-900);
    border-color: rgba(156, 255, 99, .18);
    box-shadow: 0 20px 46px rgba(4, 31, 16, .16);
}

.aut-inline-offer small {
    color: var(--aut-neon);
}

.aut-inline-offer strong {
    color: #fff;
}

/* ==========================================================================
   SHORTS
   ========================================================================== */

.aut-shorts-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(156, 255, 99, .08), transparent 23%),
        linear-gradient(180deg, #f6f2e8 0%, #eef1e8 100%);
}

.aut-shorts-heading {
    margin-bottom: 30px;
}

.aut-shorts-heading__side {
    display: grid;
    justify-items: start;
    gap: 20px;
}

.aut-shorts-main-cta {
    min-height: 52px;
}

.aut-shorts-shell {
    position: relative;
    overflow: hidden;
}

.aut-shorts-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.aut-shorts-controls-row > span {
    color: var(--aut-muted);
    font-size: .76rem;
}

.aut-shorts-controls {
    display: flex;
    gap: 8px;
}

.aut-shorts-controls button {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--aut-green-850);
    background: #fff;
    border: 1px solid rgba(8, 66, 36, .12);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(4, 31, 16, .07);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.aut-shorts-controls button:hover {
    color: #fff;
    background: var(--aut-green-700);
    transform: translateY(-2px);
}

.aut-shorts-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 290px);
    gap: 18px;
    overflow-x: auto;
    padding: 8px max(20px, calc((100vw - 1180px) / 2)) 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.aut-shorts-carousel::-webkit-scrollbar {
    display: none;
}

.aut-short-card {
    scroll-snap-align: start;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(8, 66, 36, .10);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(4, 31, 16, .10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.aut-short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(4, 31, 16, .14);
}

.aut-short-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--aut-green-950);
    cursor: pointer;
}

.aut-short-player img,
.aut-short-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

.aut-short-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 52%, rgba(3, 31, 17, .60)),
        linear-gradient(135deg, rgba(3, 31, 17, .08), transparent);
    pointer-events: none;
}

.aut-short-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--aut-green-950);
    background: linear-gradient(135deg, #efd174, var(--aut-gold));
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
    transition: transform .22s ease, box-shadow .22s ease;
}

.aut-short-player:hover .aut-short-play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34), 0 0 18px rgba(223, 184, 84, .15);
}

.aut-short-copy {
    min-height: 112px;
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 18px;
}

.aut-short-copy small {
    color: var(--aut-green-700);
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.aut-short-copy strong {
    font-size: .94rem;
    line-height: 1.4;
}

.aut-conversion-box {
    margin-top: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(156, 255, 99, .14), transparent 28%),
        var(--aut-green-900);
    border-color: rgba(156, 255, 99, .18);
}

.aut-conversion-box small {
    color: var(--aut-neon);
}

.aut-mini-offer {
    padding: 54px 0;
}

.aut-mini-offer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 44px;
}

.aut-mini-offer h2 {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

/* ==========================================================================
   RESPONSIVO DOS NOVOS BLOCOS
   ========================================================================== */

@media (max-width: 900px) {
    .aut-quick-cta__inner,
    .aut-inline-offer,
    .aut-conversion-box {
        align-items: stretch;
        flex-direction: column;
    }

    .aut-quick-cta__inner .aut-btn,
    .aut-inline-offer .aut-btn,
    .aut-conversion-box .aut-btn {
        width: 100%;
    }

    .aut-mini-offer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aut-mini-offer__grid .aut-btn {
        width: max-content;
    }
}

@media (max-width: 700px) {
    .aut-shorts-carousel {
        grid-auto-columns: minmax(220px, 78vw);
        padding-inline: 14px;
    }

    .aut-shorts-controls-row {
        width: min(100% - 28px, 1180px);
    }

    .aut-short-copy {
        min-height: 106px;
    }

    .aut-mini-offer__grid .aut-btn {
        width: 100%;
    }
}

/* ==========================================================================
   SEÇÃO DO PROBLEMA — ALINHAMENTO, CONFIANÇA E CONVERSÃO
   ========================================================================== */

.aut-problem-section {
    padding-bottom: clamp(76px, 8vw, 112px);
}

.aut-problem-section .aut-problem-grid {
    align-items: center;
}

/* Texto da esquerda */

.aut-problem-copy h2 {
    max-width: 11ch;
}

.aut-problem-copy > p {
    margin: 20px 0 0;
}

/* Informações de segurança */

.aut-problem-security {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 25px;
}

.aut-problem-security span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 750;
}

.aut-problem-security .icon,
.aut-problem-security svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;

    color: var(--aut-neon);
}

/* ==========================================================================
   CARDS DO PROBLEMA
   ========================================================================== */

.aut-problem-list {
    display: grid;
    gap: 14px;
}

.aut-problem-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 18px;

    min-height: 104px;
    padding: 21px 24px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.035)
        );

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.aut-problem-item:hover {
    transform: translateX(5px);

    border-color: rgba(156, 255, 99, 0.24);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(156, 255, 99, 0.035)
        );
}

/* Número perfeitamente alinhado */

.aut-problem-item b {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    align-self: center;

    color: var(--aut-green-950);
    background: linear-gradient(
        135deg,
        #b9ff79,
        var(--aut-neon)
    );

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18),
        0 0 14px rgba(156, 255, 99, 0.10);
}

.aut-problem-item > div {
    min-width: 0;
}

.aut-problem-item strong {
    margin: 0;

    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
}

.aut-problem-item span {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.63);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* ==========================================================================
   CTA AO FINAL DA SEÇÃO
   ========================================================================== */

.aut-problem-cta {
    position: relative;

    margin-top: clamp(38px, 5vw, 64px);
    padding: 25px 27px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;

    overflow: hidden;

    border: 1px solid rgba(156, 255, 99, 0.20);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(156, 255, 99, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(6, 61, 35, 0.98),
            rgba(8, 85, 45, 0.94)
        );

    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.aut-problem-cta::before {
    content: "";
    position: absolute;
    top: -90px;
    right: 19%;

    width: 240px;
    height: 240px;

    background: radial-gradient(
        circle,
        rgba(223, 184, 84, 0.13),
        transparent 68%
    );

    pointer-events: none;
}

.aut-problem-cta > * {
    position: relative;
    z-index: 1;
}

.aut-problem-cta__copy {
    display: grid;
    gap: 6px;
}

.aut-problem-cta__copy > small {
    color: var(--aut-neon);

    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.aut-problem-cta__copy > strong {
    max-width: 55ch;

    color: #ffffff;
    font-size: clamp(0.98rem, 1.5vw, 1.15rem);
    line-height: 1.45;
}

.aut-problem-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;

    margin-top: 5px;
}

.aut-problem-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 700;
}

.aut-problem-cta__trust .icon,
.aut-problem-cta__trust svg {
    width: 15px;
    height: 15px;

    color: var(--aut-gold);
}

/* ==========================================================================
   BOTÃO DE COMPRA TRABALHADO
   ========================================================================== */

.aut-problem-buy {
    position: relative;

    min-width: 300px;
    min-height: 68px;

    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;

    padding: 10px 14px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(223, 184, 84, 0.42);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(5, 40, 23, 0.94),
            rgba(6, 70, 38, 0.98)
        );

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    overflow: hidden;

    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease;
}

.aut-problem-buy::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        110deg,
        transparent 24%,
        rgba(255, 255, 255, 0.12) 48%,
        transparent 72%
    );

    transform: translateX(-130%);
    transition: transform 700ms ease;

    pointer-events: none;
}

.aut-problem-buy:hover::before {
    transform: translateX(130%);
}

.aut-problem-buy:hover {
    color: #ffffff;

    border-color: rgba(156, 255, 99, 0.50);

    background:
        linear-gradient(
            135deg,
            rgba(7, 57, 32, 0.98),
            rgba(8, 100, 51, 1)
        );

    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.30),
        0 0 22px rgba(156, 255, 99, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Ícone dourado da esquerda */

.aut-problem-buy__icon {
    position: relative;
    z-index: 1;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background: linear-gradient(
        135deg,
        #f0d173,
        var(--aut-gold)
    );

    border-radius: 50%;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 8px 18px rgba(0, 0, 0, 0.20);
}

.aut-problem-buy__icon svg {
    width: 18px;
    height: 18px;
}

/* Texto do botão */

.aut-problem-buy__copy {
    position: relative;
    z-index: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;

    text-align: left;
}

.aut-problem-buy__copy small {
    color: rgba(181, 255, 197, 0.80);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.aut-problem-buy__copy strong {
    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.2;
}

/* Seta animada da direita */

.aut-problem-buy__arrow {
    position: relative;
    z-index: 1;

    color: var(--aut-neon);

    font-size: 1.2rem;
    line-height: 1;

    transition: transform 250ms ease;
}

.aut-problem-buy:hover .aut-problem-buy__arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {

    .aut-problem-cta {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .aut-problem-buy {
        width: 100%;
        max-width: 380px;
        min-width: 0;
    }

}

@media (max-width: 700px) {

    .aut-problem-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;

        min-height: 0;
        padding: 18px 16px;
    }

    .aut-problem-item b {
        width: 38px;
        height: 38px;
    }

    .aut-problem-security {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .aut-problem-cta {
        padding: 22px 18px;
    }

    .aut-problem-cta__trust {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-problem-buy {
        max-width: 100%;
    }

}

@media (max-width: 390px) {

    .aut-problem-buy {
        grid-template-columns: 39px minmax(0, 1fr) 18px;
        gap: 10px;
    }

    .aut-problem-buy__icon {
        width: 39px;
        height: 39px;
    }

    .aut-problem-buy__copy strong {
        font-size: 0.84rem;
    }

}

/* ==========================================================================
   CONTEÚDO DO CURSO — LIGHT PREMIUM
   ========================================================================== */

.aut-content-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(156, 255, 99, 0.10),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(223, 184, 84, 0.09),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #f1f3e9 0%,
            #f7f4eb 48%,
            #eef2e7 100%
        );
}

/* Formas decorativas discretas */

.aut-content-section::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -150px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(20, 105, 55, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-content-section::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: 4%;

    width: 320px;
    height: 320px;

    background: radial-gradient(
        circle,
        rgba(29, 132, 67, 0.07),
        transparent 68%
    );

    pointer-events: none;
}

.aut-content-section > .aut-container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.aut-content-section .aut-heading {
    margin-bottom: 48px;
}

.aut-content-section .aut-kicker {
    color: var(--aut-green-700);
}

.aut-content-section .aut-heading h2 {
    color: var(--aut-green-950);
    max-width: 14ch;
}

.aut-content-section .aut-heading > p {
    color: #617067;
    font-size: 1rem;
    line-height: 1.75;
}

/* Pequena linha decorativa abaixo do título */

.aut-content-section .aut-heading h2::after {
    content: "";
    display: block;

    width: 64px;
    height: 3px;

    margin-top: 20px;

    background: linear-gradient(
        90deg,
        var(--aut-gold),
        var(--aut-neon)
    );

    border-radius: 999px;
}

/* ==========================================================================
   GRID DOS MÓDULOS
   ========================================================================== */

.aut-content-section .aut-module-grid {
    gap: 22px;
}

.aut-content-section .aut-module {
    position: relative;

    min-height: 260px;
    padding: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(242, 247, 237, 0.96)
        );

    border: 1px solid rgba(12, 91, 48, 0.12);
    border-radius: 23px;

    box-shadow:
        0 15px 34px rgba(5, 42, 22, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);

    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

/* Linha superior decorativa */

.aut-content-section .aut-module::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;

    height: 3px;

    background: linear-gradient(
        90deg,
        var(--aut-green-700),
        var(--aut-neon)
    );

    border-radius: 0 0 999px 999px;

    opacity: 0.60;
}

/* Brilho interno sutil */

.aut-content-section .aut-module::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;

    width: 180px;
    height: 180px;

    background: radial-gradient(
        circle,
        rgba(156, 255, 99, 0.11),
        transparent 68%
    );

    pointer-events: none;
}

/* Hover */

.aut-content-section .aut-module:hover {
    transform: translateY(-7px);

    border-color: rgba(24, 135, 67, 0.24);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf6e9
        );

    box-shadow:
        0 24px 48px rgba(5, 42, 22, 0.13),
        0 0 20px rgba(156, 255, 99, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   NUMERAÇÃO
   ========================================================================== */

.aut-content-section .aut-module-number {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    margin-bottom: 23px;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 15px;

    box-shadow:
        0 9px 18px rgba(70, 52, 9, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);

    font-size: 0.78rem;
    font-weight: 900;

    transition:
        transform 260ms ease,
        border-radius 260ms ease;
}

.aut-content-section .aut-module:hover .aut-module-number {
    transform: translateY(-2px);
    border-radius: 50%;
}

/* ==========================================================================
   TEXTOS DOS CARDS
   ========================================================================== */

.aut-content-section .aut-module h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: var(--aut-green-950);
    font-size: 1.22rem;
    line-height: 1.35;
}

.aut-content-section .aut-module p {
    position: relative;
    z-index: 2;

    color: #647269;
    font-size: 0.93rem;
    line-height: 1.72;
}

/* Alternância leve entre cards */

.aut-content-section .aut-module:nth-child(2),
.aut-content-section .aut-module:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            rgba(248, 250, 241, 0.98),
            rgba(235, 244, 231, 0.98)
        );
}

.aut-content-section .aut-module:nth-child(3),
.aut-content-section .aut-module:nth-child(6) {
    background:
        linear-gradient(
            145deg,
            rgba(255, 252, 244, 0.98),
            rgba(242, 246, 234, 0.98)
        );
}

/* ==========================================================================
   CTA INFERIOR
   ========================================================================== */

.aut-content-section .aut-inline-offer {
    position: relative;

    margin-top: 32px;
    padding: 25px 27px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(156, 255, 99, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06351f,
            #0a5830
        );

    border: 1px solid rgba(156, 255, 99, 0.19);
    border-radius: 24px;

    box-shadow:
        0 24px 54px rgba(5, 42, 22, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Linha dourada no CTA */

.aut-content-section .aut-inline-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    right: 27px;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--aut-gold),
        var(--aut-neon),
        transparent
    );
}

.aut-content-section .aut-inline-offer small {
    color: var(--aut-neon);
}

.aut-content-section .aut-inline-offer strong {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.45;
}

/* Botão mais integrado ao CTA */

.aut-content-section .aut-inline-offer .aut-btn-primary {
    min-width: 310px;

    color: #092417;

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.28);

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.aut-content-section .aut-inline-offer .aut-btn-primary:hover {
    color: #092417;

    transform: translateY(-3px);

    box-shadow:
        0 19px 38px rgba(0, 0, 0, 0.26),
        0 0 20px rgba(223, 184, 84, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {

    .aut-content-section .aut-heading {
        margin-bottom: 36px;
    }

    .aut-content-section .aut-module {
        min-height: 0;
    }

    .aut-content-section .aut-inline-offer .aut-btn-primary {
        width: 100%;
        min-width: 0;
    }

}

@media (max-width: 700px) {

    .aut-content-section {
        background:
            radial-gradient(
                circle at 90% 8%,
                rgba(156, 255, 99, 0.10),
                transparent 20%
            ),
            linear-gradient(
                180deg,
                #eff2e7,
                #f7f4eb
            );
    }

    .aut-content-section .aut-module-grid {
        gap: 15px;
    }

    .aut-content-section .aut-module {
        padding: 23px 20px;
        border-radius: 19px;
    }

    .aut-content-section .aut-module::before {
        left: 20px;
        right: 20px;
    }

    .aut-content-section .aut-module-number {
        width: 42px;
        height: 42px;
        margin-bottom: 19px;
    }

    .aut-content-section .aut-module h3 {
        font-size: 1.08rem;
    }

    .aut-content-section .aut-module p {
        font-size: 0.90rem;
    }

    .aut-content-section .aut-inline-offer {
        padding: 22px 18px;
        border-radius: 20px;
    }

}

/* ==========================================================================
   BOTÃO CTA — AUTONOMIA NO CAMPO
   ========================================================================== */

.aut-inline-offer .aut-btn-enroll {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-width: 380px;
    padding: 12px 14px 12px 14px;

    color: #082315;
    text-decoration: none;

    background: linear-gradient(135deg, #efd174 0%, #dcb24a 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(156, 255, 99, 0.18),
        0 0 18px rgba(110, 255, 114, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.aut-inline-offer .aut-btn-enroll::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.04) 25%,
        rgba(110, 255, 114, 0.08) 70%,
        rgba(255, 255, 255, 0.04)
    );

    opacity: 0.9;
}

.aut-inline-offer .aut-btn-enroll:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f3d878 0%, #e1ba55 100%);
    border-color: rgba(172, 255, 129, 0.55);

    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(156, 255, 99, 0.28),
        0 0 24px rgba(110, 255, 114, 0.18),
        0 0 42px rgba(110, 255, 114, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.aut-inline-offer .aut-btn-enroll__icon {
    position: relative;
    z-index: 2;

    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #0a4626;
    background: radial-gradient(circle at 30% 30%, #fff2b9 0%, #e7bf56 100%);
    border: 1px solid rgba(10, 70, 38, 0.10);
    border-radius: 50%;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 6px 12px rgba(84, 62, 10, 0.12);
}

.aut-inline-offer .aut-btn-enroll__text {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;

    flex: 1;
    min-width: 0;
}

.aut-inline-offer .aut-btn-enroll__text small {
    display: block;
    margin: 0;

    color: #47622c;
    font-size: 0.70rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-inline-offer .aut-btn-enroll__text strong {
    display: block;
    margin: 0;

    color: #082315;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.aut-inline-offer .aut-btn-enroll__arrow {
    position: relative;
    z-index: 2;

    flex: 0 0 44px;
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #f4ffe8;
    background: linear-gradient(135deg, #1b8e46 0%, #116a35 100%);
    border: 1px solid rgba(172, 255, 129, 0.38);
    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(172, 255, 129, 0.10),
        0 0 16px rgba(110, 255, 114, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.aut-inline-offer .aut-btn-enroll:hover .aut-btn-enroll__arrow {
    transform: translateX(3px);
    background: linear-gradient(135deg, #1fa54f 0%, #15823f 100%);
    box-shadow:
        0 0 0 1px rgba(172, 255, 129, 0.18),
        0 0 20px rgba(110, 255, 114, 0.28),
        0 0 34px rgba(110, 255, 114, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.aut-inline-offer .aut-btn-enroll svg {
    width: 18px;
    height: 18px;
}

/* Responsivo */
@media (max-width: 900px) {
    .aut-inline-offer .aut-btn-enroll {
        min-width: 0;
        width: 100%;
    }

    .aut-inline-offer .aut-btn-enroll__text strong {
        font-size: 0.96rem;
    }
}

@media (max-width: 560px) {
    .aut-inline-offer .aut-btn-enroll {
        gap: 12px;
        padding: 11px 12px;
    }

    .aut-inline-offer .aut-btn-enroll__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .aut-inline-offer .aut-btn-enroll__arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .aut-inline-offer .aut-btn-enroll__text small {
        font-size: 0.65rem;
    }

    .aut-inline-offer .aut-btn-enroll__text strong {
        font-size: 0.90rem;
    }
}

/* =========================================================
   ÍCONE ESQUERDO FIXO — CTA AUTONOMIA
========================================================= */

.aut-inline-offer .aut-btn-enroll__icon,
.aut-inline-offer .aut-btn-enroll:hover .aut-btn-enroll__icon {
    transform: none !important;
    transition: none !important;
}

.aut-inline-offer .aut-btn-enroll__icon svg,
.aut-inline-offer .aut-btn-enroll:hover .aut-btn-enroll__icon svg {
    transform: none !important;
    transition: none !important;
}

/* ==========================================================================
   FERRAMENTAS — SEÇÃO OTIMIZADA
   ========================================================================== */

.aut-tools-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 12%,
            rgba(156, 255, 99, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(223, 184, 84, 0.07),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #032614 0%,
            #06361e 52%,
            #073c22 100%
        );
}

.aut-tools-section::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -170px;

    width: 540px;
    height: 540px;

    border: 1px solid rgba(156, 255, 99, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-tools-section > .aut-container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.aut-tools-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    align-items: center;
    gap: clamp(48px, 7vw, 105px);

    margin-bottom: 44px;
}

.aut-tools-heading__copy h2 {
    max-width: 13ch;
    margin: 0;

    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.aut-tools-heading__copy p {
    max-width: 54ch;
    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.65);
    line-height: 1.72;
}

/* ==========================================================================
   RESUMO DO KIT
   ========================================================================== */

.aut-toolkit-summary {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border: 1px solid rgba(156, 255, 99, 0.19);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(156, 255, 99, 0.13),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.aut-toolkit-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--aut-gold),
        var(--aut-neon),
        transparent
    );
}

.aut-toolkit-summary__icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);
    background: linear-gradient(135deg, #f1d477, var(--aut-gold));

    border-radius: 16px;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.aut-toolkit-summary__icon svg {
    width: 24px;
    height: 24px;
}

.aut-toolkit-summary__copy {
    margin-top: 21px;
}

.aut-toolkit-summary__copy small {
    color: var(--aut-neon);

    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aut-toolkit-summary__copy strong {
    display: block;
    max-width: 34ch;

    margin-top: 7px;

    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.45;
}

.aut-toolkit-summary__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-top: 24px;
}

.aut-toolkit-summary__metrics span {
    padding: 14px 12px;

    color: rgba(255, 255, 255, 0.58);
    background: rgba(2, 31, 16, 0.38);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;

    font-size: 0.67rem;
    line-height: 1.35;
}

.aut-toolkit-summary__metrics b {
    display: block;

    margin-bottom: 3px;

    color: var(--aut-neon);
    font-size: 1.1rem;
}

.aut-toolkit-summary__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 18px;
}

.aut-toolkit-summary__tags span {
    padding: 7px 10px;

    color: rgba(255, 255, 255, 0.69);
    background: rgba(156, 255, 99, 0.07);

    border: 1px solid rgba(156, 255, 99, 0.13);
    border-radius: 999px;

    font-size: 0.65rem;
    font-weight: 750;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.aut-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aut-tool-card {
    position: relative;
    min-height: 255px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 24px;

    overflow: hidden;

    border: 1px solid rgba(156, 255, 99, 0.14);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(156, 255, 99, 0.08),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 240ms ease,
        border-color 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease;
}

.aut-tool-card:hover {
    transform: translateY(-6px);

    border-color: rgba(156, 255, 99, 0.30);

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(156, 255, 99, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 23px 48px rgba(0, 0, 0, 0.19),
        0 0 18px rgba(156, 255, 99, 0.05);
}

.aut-tool-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 32px;
}

.aut-tool-card__icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-neon);
    background: rgba(156, 255, 99, 0.08);

    border: 1px solid rgba(156, 255, 99, 0.17);
    border-radius: 15px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 15px rgba(156, 255, 99, 0.04);
}

.aut-tool-card__icon svg {
    width: 23px;
    height: 23px;
}

.aut-tool-card__number {
    color: rgba(255, 255, 255, 0.30);

    font-size: 0.70rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.aut-tool-card small {
    color: var(--aut-gold);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-tool-card h3 {
    margin: 8px 0 11px;

    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
}

.aut-tool-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.60);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.aut-tools-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 24px;
    padding: 24px 26px;

    border: 1px solid rgba(223, 184, 84, 0.22);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.12),
            transparent 28%
        ),
        rgba(2, 31, 16, 0.44);
}

.aut-tools-cta__copy {
    display: grid;
    gap: 5px;
}

.aut-tools-cta__copy small {
    color: var(--neon);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-tools-cta__copy strong {
    max-width: 58ch;

    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.45;
}

.aut-tools-cta__button {
    min-width: 310px;
    min-height: 64px;

    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;

    padding: 9px 14px 9px 10px;

    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(135deg, #07502c, #0b743b);

    border: 1px solid rgba(156, 255, 99, 0.27);
    border-radius: 999px;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22),
        0 0 16px rgba(156, 255, 99, 0.07);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-tools-cta__button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.48);

    box-shadow:
        0 19px 38px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(156, 255, 99, 0.13);
}

.aut-tools-cta__button-icon {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);
    background: linear-gradient(135deg, #f0d173, var(--aut-gold));

    border-radius: 50%;
}

.aut-tools-cta__button-icon svg {
    width: 18px;
    height: 18px;
}

.aut-tools-cta__button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aut-tools-cta__button small {
    color: rgba(181, 255, 197, 0.78);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-tools-cta__button strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.aut-tools-cta__button b {
    color: var(--aut-neon);
    font-size: 1.1rem;

    transition: transform 220ms ease;
}

.aut-tools-cta__button:hover b {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1050px) {

    .aut-tools-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aut-toolkit-summary {
        max-width: 720px;
    }

    .aut-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .aut-tools-cta {
        grid-template-columns: 1fr;
    }

    .aut-tools-cta__button {
        width: 100%;
        max-width: 380px;
        min-width: 0;
    }

}

@media (max-width: 650px) {

    .aut-tools-heading__copy h2 {
        max-width: 12ch;
    }

    .aut-toolkit-summary {
        padding: 22px 19px;
    }

    .aut-toolkit-summary__metrics {
        grid-template-columns: 1fr;
    }

    .aut-tools-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aut-tool-card {
        min-height: 230px;
        padding: 21px 19px;
    }

    .aut-tools-cta {
        padding: 21px 18px;
    }

    .aut-tools-cta__button {
        max-width: 100%;
    }

}

/* ==========================================================================
   FERRAMENTAS — AUTONOMIA NO CAMPO
   ========================================================================== */

.aut-tools-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(156, 255, 99, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 4% 88%,
            rgba(223, 184, 84, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #032614 0%,
            #06361e 50%,
            #073e23 100%
        );
}

.aut-tools-section::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -170px;

    width: 560px;
    height: 560px;

    border: 1px solid rgba(156, 255, 99, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-tools-section::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -220px;

    width: 480px;
    height: 480px;

    background: radial-gradient(
        circle,
        rgba(223, 184, 84, 0.08),
        transparent 68%
    );

    pointer-events: none;
}

.aut-tools-section > .aut-container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.aut-tools-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 0.90fr)
        minmax(420px, 1.10fr);

    align-items: center;
    gap: clamp(48px, 7vw, 105px);

    margin-bottom: 46px;
}

.aut-tools-heading__copy h2 {
    max-width: 13ch;
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.aut-tools-heading__copy > p {
    max-width: 55ch;
    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.96rem;
    line-height: 1.72;
}

.aut-tools-heading__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 26px;
}

.aut-tools-heading__security {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.68rem;
    font-weight: 700;
}

.aut-tools-heading__security svg {
    width: 16px;
    height: 16px;

    color: var(--aut-neon);
}

/* =========================================================
   BOTÃO DO CABEÇALHO
========================================================= */

.aut-tools-main-button {
    position: relative;
    overflow: hidden;

    min-width: 310px;
    min-height: 64px;

    display: grid;
    grid-template-columns:
        43px
        minmax(0, 1fr)
        22px;

    align-items: center;
    gap: 12px;

    padding: 9px 15px 9px 10px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #07502c,
            #0b743b
        );

    border: 1px solid rgba(156, 255, 99, 0.28);
    border-radius: 999px;

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.24),
        0 0 16px rgba(156, 255, 99, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.aut-tools-main-button::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255, 255, 255, 0.12) 48%,
        transparent 72%
    );

    transform: translateX(-130%);
    transition: transform 700ms ease;

    pointer-events: none;
}

.aut-tools-main-button:hover::before {
    transform: translateX(130%);
}

.aut-tools-main-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #086037,
            #0d8748
        );

    border-color: rgba(156, 255, 99, 0.50);

    box-shadow:
        0 21px 42px rgba(0, 0, 0, 0.29),
        0 0 24px rgba(156, 255, 99, 0.14);
}

.aut-tools-main-button__icon {
    position: relative;
    z-index: 2;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #f1d477,
            var(--aut-gold)
        );

    border-radius: 50%;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 8px 18px rgba(0, 0, 0, 0.20);

    transform: none !important;
    transition: none !important;
}

.aut-tools-main-button__icon svg {
    width: 19px;
    height: 19px;

    transform: none !important;
    transition: none !important;
}

.aut-tools-main-button__copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-tools-main-button__copy small {
    color: rgba(181, 255, 197, 0.80);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.aut-tools-main-button__copy strong {
    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.2;
}

.aut-tools-main-button__arrow {
    position: relative;
    z-index: 2;

    color: var(--aut-neon);

    font-size: 1.15rem;
    font-weight: 800;

    transition: transform 220ms ease;
}

.aut-tools-main-button:hover
.aut-tools-main-button__arrow {
    transform: translateX(5px);
}

/* =========================================================
   PAINEL DE RESUMO
========================================================= */

.aut-toolkit-summary {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border: 1px solid rgba(156, 255, 99, 0.19);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(156, 255, 99, 0.14),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

.aut-toolkit-summary.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aut-toolkit-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--aut-gold),
            var(--aut-neon),
            transparent
        );
}

.aut-toolkit-summary__header {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 17px;
}

.aut-toolkit-summary__icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #f1d477,
            var(--aut-gold)
        );

    border-radius: 16px;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.aut-toolkit-summary__icon svg {
    width: 24px;
    height: 24px;
}

.aut-toolkit-summary__copy small {
    color: var(--aut-neon);

    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aut-toolkit-summary__copy strong {
    display: block;

    max-width: 35ch;

    margin-top: 7px;

    color: #ffffff;

    font-size: 1.08rem;
    line-height: 1.43;
}

/* Métricas */

.aut-toolkit-summary__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-top: 24px;
}

.aut-toolkit-summary__metrics span {
    padding: 14px 12px;

    color: rgba(255, 255, 255, 0.58);

    background: rgba(2, 31, 16, 0.38);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;

    font-size: 0.67rem;
    line-height: 1.35;
}

.aut-toolkit-summary__metrics b {
    display: block;

    margin-bottom: 3px;

    color: var(--aut-neon);

    font-size: 1.12rem;
}

/* Fluxo */

.aut-toolkit-summary__flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;

    margin-top: 19px;
    padding: 15px;

    background: rgba(2, 31, 16, 0.34);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.aut-toolkit-summary__flow span {
    display: grid;
    gap: 3px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 0.65rem;
    font-weight: 700;

    text-align: center;
}

.aut-toolkit-summary__flow i {
    color: var(--aut-gold);

    font-size: 0.58rem;
    font-style: normal;
}

.aut-toolkit-summary__flow > b {
    color: rgba(156, 255, 99, 0.50);

    font-size: 0.85rem;
}

/* Tags */

.aut-toolkit-summary__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 18px;
}

.aut-toolkit-summary__tags span {
    padding: 7px 10px;

    color: rgba(255, 255, 255, 0.69);

    background: rgba(156, 255, 99, 0.07);

    border: 1px solid rgba(156, 255, 99, 0.13);
    border-radius: 999px;

    font-size: 0.65rem;
    font-weight: 750;
}

/* =========================================================
   GRID DE FERRAMENTAS
========================================================= */

.aut-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aut-tool-card {
    position: relative;
    overflow: hidden;

    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    border: 1px solid rgba(156, 255, 99, 0.14);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(156, 255, 99, 0.08),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 550ms ease,
        transform 550ms ease,
        border-color 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease;
}

.aut-tool-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aut-tool-card.is-visible:hover {
    transform: translateY(-6px);

    border-color: rgba(156, 255, 99, 0.30);

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(156, 255, 99, 0.14),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 23px 48px rgba(0, 0, 0, 0.19),
        0 0 18px rgba(156, 255, 99, 0.05);
}

.aut-tool-card::after {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;

    width: 190px;
    height: 190px;

    background:
        radial-gradient(
            circle,
            rgba(156, 255, 99, 0.08),
            transparent 66%
        );

    pointer-events: none;
}

.aut-tool-card__top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 29px;
}

.aut-tool-card__icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-neon);

    background: rgba(156, 255, 99, 0.08);

    border: 1px solid rgba(156, 255, 99, 0.17);
    border-radius: 15px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 15px rgba(156, 255, 99, 0.04);

    transform: none !important;
}

.aut-tool-card__icon svg {
    width: 23px;
    height: 23px;

    transform: none !important;
}

.aut-tool-card__number {
    color: rgba(255, 255, 255, 0.30);

    font-size: 0.70rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.aut-tool-card__content {
    position: relative;
    z-index: 2;
}

.aut-tool-card__content small {
    color: var(--aut-gold);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-tool-card__content h3 {
    margin: 8px 0 11px;

    color: #ffffff;

    font-size: 1.08rem;
    line-height: 1.35;
}

.aut-tool-card__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 0.85rem;
    line-height: 1.65;
}

.aut-tool-card__status {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-self: flex-start;

    margin-top: auto;
    padding-top: 22px;

    color: rgba(181, 255, 197, 0.67);

    font-size: 0.64rem;
    font-weight: 750;
}

/* =========================================================
   CTA FINAL
========================================================= */

.aut-tools-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 25px;
    padding: 25px 27px;

    border: 1px solid rgba(223, 184, 84, 0.22);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.13),
            transparent 28%
        ),
        rgba(2, 31, 16, 0.48);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.15);
}

.aut-tools-cta__copy {
    display: grid;
    gap: 5px;
}

.aut-tools-cta__copy > small {
    color: var(--aut-neon);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-tools-cta__copy > strong {
    max-width: 58ch;

    color: #ffffff;

    font-size: 0.98rem;
    line-height: 1.45;
}

.aut-tools-cta__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 16px;

    margin-top: 6px;
}

.aut-tools-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.54);

    font-size: 0.65rem;
    font-weight: 700;
}

.aut-tools-cta__trust svg {
    width: 15px;
    height: 15px;

    color: var(--aut-gold);
}

/* Botão final */

.aut-tools-cta__button {
    position: relative;
    overflow: hidden;

    min-width: 320px;
    min-height: 66px;

    display: grid;
    grid-template-columns:
        43px
        minmax(0, 1fr)
        20px;

    align-items: center;
    gap: 12px;

    padding: 10px 15px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #07502c,
            #0b743b
        );

    border: 1px solid rgba(156, 255, 99, 0.27);
    border-radius: 999px;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22),
        0 0 16px rgba(156, 255, 99, 0.07);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-tools-cta__button::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255, 255, 255, 0.12) 48%,
            transparent 72%
        );

    transform: translateX(-130%);
    transition: transform 700ms ease;
}

.aut-tools-cta__button:hover::before {
    transform: translateX(130%);
}

.aut-tools-cta__button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.48);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(156, 255, 99, 0.13);
}

.aut-tools-cta__button-icon {
    position: relative;
    z-index: 2;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #f0d173,
            var(--aut-gold)
        );

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-tools-cta__button-icon svg {
    width: 19px;
    height: 19px;

    transform: none !important;
    transition: none !important;
}

.aut-tools-cta__button-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-tools-cta__button-copy small {
    color: rgba(181, 255, 197, 0.78);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-tools-cta__button-copy strong {
    color: #ffffff;

    font-size: 0.90rem;
    font-weight: 850;
}

.aut-tools-cta__button-arrow {
    position: relative;
    z-index: 2;

    color: var(--aut-neon);

    font-size: 1.10rem;
    font-weight: 850;

    transition: transform 220ms ease;
}

.aut-tools-cta__button:hover
.aut-tools-cta__button-arrow {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1050px) {

    .aut-tools-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .aut-toolkit-summary {
        max-width: 740px;
    }

    .aut-tools-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .aut-tools-cta {
        grid-template-columns: 1fr;
    }

    .aut-tools-cta__button {
        width: 100%;
        max-width: 390px;
        min-width: 0;
    }

}

@media (max-width: 650px) {

    .aut-tools-heading__copy h2 {
        max-width: 12ch;
    }

    .aut-tools-main-button {
        width: 100%;
        min-width: 0;
    }

    .aut-tools-heading__security {
        width: 100%;
    }

    .aut-toolkit-summary {
        padding: 22px 19px;
    }

    .aut-toolkit-summary__metrics {
        grid-template-columns: 1fr;
    }

    .aut-toolkit-summary__flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .aut-toolkit-summary__flow > b {
        display: none;
    }

    .aut-tools-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aut-tool-card {
        min-height: 245px;
        padding: 21px 19px;
    }

    .aut-tools-cta {
        padding: 22px 18px;
    }

    .aut-tools-cta__button {
        width: 100%;
        max-width: 100%;
    }

}

/* ==========================================================================
   SHORTS PREMIUM
   ========================================================================== */

.aut-shorts-premium {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(156, 255, 99, 0.12),
            transparent 24%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(223, 184, 84, 0.13),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #eef4e8 0%,
            #f8f3e8 48%,
            #e9f0e5 100%
        );
}

.aut-shorts-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.aut-shorts-decoration--one {
    top: 100px;
    right: -190px;

    width: 440px;
    height: 440px;

    border: 1px solid rgba(15, 111, 57, 0.09);
}

.aut-shorts-decoration--two {
    left: -180px;
    bottom: 80px;

    width: 380px;
    height: 380px;

    background:
        radial-gradient(
            circle,
            rgba(223, 184, 84, 0.10),
            transparent 68%
        );
}

.aut-shorts-premium > * {
    position: relative;
    z-index: 2;
}

/* Cabeçalho */

.aut-shorts-premium__heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;
    gap: clamp(48px, 7vw, 100px);

    margin-bottom: 48px;
}

.aut-shorts-premium__heading-copy h2 {
    max-width: 15ch;
    margin: 0;

    color: var(--aut-green-950);

    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.aut-shorts-premium__heading-copy h2 em {
    display: block;

    color: var(--aut-green-700);
    font-style: normal;
}

.aut-shorts-premium__heading-copy > p {
    max-width: 59ch;
    margin: 22px 0 0;

    color: #617067;

    font-size: 0.96rem;
    line-height: 1.75;
}

.aut-shorts-premium__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 23px;
}

.aut-shorts-premium__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 12px;

    color: var(--aut-green-850);
    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(10, 91, 48, 0.10);
    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 750;
}

.aut-shorts-premium__benefits i {
    width: 23px;
    height: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-700);
    background: rgba(156, 255, 99, 0.13);

    border-radius: 50%;
}

.aut-shorts-premium__benefits svg {
    width: 14px;
    height: 14px;
}

/* Painel lateral */

.aut-shorts-premium__summary {
    position: relative;
    overflow: hidden;

    padding: 27px;

    border: 1px solid rgba(11, 104, 54, 0.15);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(156, 255, 99, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #edf5e9
        );

    box-shadow:
        0 24px 54px rgba(6, 56, 29, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.aut-shorts-premium__summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--aut-gold),
            var(--aut-neon)
        );

    border-radius: 0 0 999px 999px;
}

.aut-shorts-premium__summary-icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border-radius: 17px;

    box-shadow:
        0 11px 23px rgba(74, 55, 9, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.aut-shorts-premium__summary-icon svg {
    width: 25px;
    height: 25px;
}

.aut-shorts-premium__summary > div:nth-child(2) {
    margin-top: 18px;
}

.aut-shorts-premium__summary small {
    color: var(--aut-green-700);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aut-shorts-premium__summary strong {
    display: block;

    margin-top: 6px;

    color: var(--aut-green-950);

    font-size: 1.07rem;
    line-height: 1.45;
}

.aut-shorts-premium__summary-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    margin-top: 22px;
}

.aut-shorts-premium__summary-metrics span {
    padding: 12px 10px;

    color: #6b766f;
    background: rgba(8, 85, 45, 0.05);

    border: 1px solid rgba(8, 85, 45, 0.08);
    border-radius: 13px;

    font-size: 0.62rem;
    line-height: 1.3;
}

.aut-shorts-premium__summary-metrics b {
    display: block;

    color: var(--aut-green-700);

    font-size: 1.05rem;
}

.aut-shorts-summary-button {
    min-height: 59px;

    display: grid;
    grid-template-columns:
        40px
        minmax(0, 1fr)
        18px;

    align-items: center;
    gap: 11px;

    margin-top: 18px;
    padding: 9px 13px 9px 10px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #07502c,
            #0b743b
        );

    border: 1px solid rgba(31, 145, 76, 0.28);
    border-radius: 999px;

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.aut-shorts-summary-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 16px 30px rgba(5, 56, 29, 0.20),
        0 0 18px rgba(156, 255, 99, 0.13);
}

.aut-shorts-summary-button__icon {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-shorts-summary-button__icon svg {
    width: 18px;
    height: 18px;

    transform: none !important;
}

.aut-shorts-summary-button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aut-shorts-summary-button > span:nth-child(2) small {
    color: rgba(181, 255, 197, 0.78);
    font-size: 0.54rem;
}

.aut-shorts-summary-button > span:nth-child(2) strong {
    margin: 0;

    color: #ffffff;
    font-size: 0.86rem;
}

.aut-shorts-summary-button > b {
    color: var(--aut-neon);

    transition: transform 220ms ease;
}

.aut-shorts-summary-button:hover > b {
    transform: translateX(4px);
}

/* Controles */

.aut-shorts-premium__controls-wrapper {
    margin-bottom: 12px;
}

.aut-shorts-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aut-shorts-controls-row__copy {
    display: grid;
    gap: 2px;
}

.aut-shorts-controls-row__copy > span {
    color: var(--aut-green-950);

    font-size: 0.82rem;
    font-weight: 850;
}

.aut-shorts-controls-row__copy small {
    color: #7b867f;

    font-size: 0.68rem;
}

.aut-shorts-controls {
    display: flex;
    gap: 9px;
}

.aut-shorts-controls button {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-850);
    background: #ffffff;

    border: 1px solid rgba(8, 66, 36, 0.13);
    border-radius: 50%;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(4, 31, 16, 0.08);

    transition:
        transform 220ms ease,
        color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.aut-shorts-controls button:hover {
    color: #ffffff;
    background: var(--aut-green-700);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(4, 64, 31, 0.18),
        0 0 15px rgba(156, 255, 99, 0.10);
}

.aut-shorts-controls button svg {
    width: 18px;
    height: 18px;
}

.aut-shorts-progress {
    height: 4px;

    margin-top: 15px;
    overflow: hidden;

    background: rgba(7, 81, 42, 0.08);

    border-radius: 999px;
}

.aut-shorts-progress span {
    display: block;

    width: 12.5%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--aut-gold),
            var(--aut-neon),
            var(--aut-green-500)
        );

    border-radius: inherit;

    transition:
        width 280ms ease,
        transform 280ms ease;
}

/* Carrossel */

.aut-shorts-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 300px);
    gap: 20px;

    overflow-x: auto;

    padding:
        14px
        max(20px, calc((100vw - 1180px) / 2))
        30px;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.aut-shorts-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards */

.aut-short-card {
    --short-accent: #18864a;

    position: relative;
    overflow: hidden;

    scroll-snap-align: start;

    border: 1px solid rgba(8, 66, 36, 0.12);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f7f0
        );

    box-shadow:
        0 16px 38px rgba(4, 31, 16, 0.10);

    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 550ms ease,
        transform 550ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease;
}

.aut-short-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aut-short-card.is-visible:hover {
    transform: translateY(-7px);

    border-color: color-mix(
        in srgb,
        var(--short-accent) 35%,
        transparent
    );

    box-shadow:
        0 26px 52px rgba(4, 31, 16, 0.15),
        0 0 20px rgba(42, 174, 88, 0.06);
}

.aut-short-card--diagnostic {
    --short-accent: #238a50;
}

.aut-short-card--field {
    --short-accent: #76a63a;
}

.aut-short-card--method {
    --short-accent: #d0a941;
}

.aut-short-card--correction {
    --short-accent: #299271;
}

.aut-short-card--autonomy {
    --short-accent: #87c442;
}

.aut-short-card--execution {
    --short-accent: #d3a63c;
}

.aut-short-card--planning {
    --short-accent: #367db0;
}

.aut-short-card--clarity {
    --short-accent: #8c68b7;
}

.aut-short-player {
    position: relative;

    width: 100%;
    aspect-ratio: 9 / 16;

    display: block;
    overflow: hidden;

    padding: 0;
    border: 0;

    background: var(--aut-green-950);
    cursor: pointer;
}

.aut-short-player img,
.aut-short-player iframe {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    border: 0;
}

.aut-short-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(2, 25, 13, 0.10),
            transparent 45%,
            rgba(2, 25, 13, 0.82)
        );

    pointer-events: none;
}

.aut-short-category,
.aut-short-duration {
    position: absolute;
    top: 14px;

    z-index: 3;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}

.aut-short-category {
    left: 14px;

    color: #ffffff;
    background: rgba(3, 48, 25, 0.70);

    border: 1px solid rgba(255, 255, 255, 0.14);
}

.aut-short-duration {
    right: 14px;

    color: var(--aut-green-950);
    background: rgba(239, 209, 116, 0.92);
}

.aut-short-play {
    position: absolute;
    left: 50%;
    top: 50%;

    z-index: 3;

    width: 62px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    box-shadow:
        0 17px 34px rgba(0, 0, 0, 0.30);

    transition:
        transform 230ms ease,
        box-shadow 230ms ease;
}

.aut-short-player:hover .aut-short-play {
    transform:
        translate(-50%, -50%)
        scale(1.07);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.34),
        0 0 22px rgba(223, 184, 84, 0.17);
}

.aut-short-card.is-playing {
    border-color: rgba(29, 145, 70, 0.42);

    box-shadow:
        0 28px 56px rgba(4, 31, 16, 0.18),
        0 0 24px rgba(156, 255, 99, 0.11);
}

/* Textos dos cards */

.aut-short-copy {
    min-height: 192px;

    display: flex;
    flex-direction: column;

    padding: 19px;
}

.aut-short-copy__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}

.aut-short-copy__top small {
    color: var(--short-accent);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-short-copy__top span {
    width: 29px;
    height: 29px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--short-accent);
    background:
        color-mix(
            in srgb,
            var(--short-accent) 10%,
            transparent
        );

    border-radius: 50%;
}

.aut-short-copy__top svg {
    width: 15px;
    height: 15px;
}

.aut-short-copy > strong {
    color: var(--aut-green-950);

    font-size: 0.98rem;
    line-height: 1.38;
}

.aut-short-copy > p {
    margin: 10px 0 0;

    color: #6c7870;

    font-size: 0.79rem;
    line-height: 1.58;
}

/* CTA final */

.aut-shorts-final-cta {
    display: grid;
    grid-template-columns:
        54px
        minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 18px;

    margin-top: 28px;
    padding: 25px 27px;

    border: 1px solid rgba(156, 255, 99, 0.20);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #05371f,
            #08713b
        );

    box-shadow:
        0 24px 52px rgba(4, 52, 27, 0.21);
}

.aut-shorts-final-cta__icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border-radius: 17px;
}

.aut-shorts-final-cta__icon svg {
    width: 25px;
    height: 25px;
}

.aut-shorts-final-cta__copy {
    display: grid;
    gap: 5px;
}

.aut-shorts-final-cta__copy > small {
    color: var(--aut-neon);

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-shorts-final-cta__copy > strong {
    max-width: 58ch;

    color: #ffffff;

    font-size: 1rem;
    line-height: 1.45;
}

.aut-shorts-final-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;

    margin-top: 4px;
}

.aut-shorts-final-cta__trust span {
    color: rgba(255, 255, 255, 0.60);

    font-size: 0.64rem;
    font-weight: 700;
}

.aut-shorts-final-cta__button {
    min-width: 320px;
    min-height: 65px;

    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr)
        18px;

    align-items: center;
    gap: 11px;

    padding: 10px 14px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(4, 47, 25, 0.94),
            rgba(7, 89, 45, 0.98)
        );

    border: 1px solid rgba(156, 255, 99, 0.30);
    border-radius: 999px;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.22);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-shorts-final-cta__button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.54);

    box-shadow:
        0 21px 40px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(156, 255, 99, 0.15);
}

.aut-shorts-final-cta__button-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--aut-green-950);

    background:
        linear-gradient(
            135deg,
            #efd174,
            var(--aut-gold)
        );

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-shorts-final-cta__button-icon svg {
    width: 18px;
    height: 18px;

    transform: none !important;
}

.aut-shorts-final-cta__button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aut-shorts-final-cta__button small {
    color: rgba(181, 255, 197, 0.79);

    font-size: 0.54rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-shorts-final-cta__button strong {
    color: #ffffff;
    font-size: 0.86rem;
}

.aut-shorts-final-cta__button b {
    color: var(--aut-neon);

    transition: transform 220ms ease;
}

.aut-shorts-final-cta__button:hover b {
    transform: translateX(5px);
}

/* Responsivo */

@media (max-width: 1050px) {

    .aut-shorts-premium__heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .aut-shorts-premium__summary {
        max-width: 680px;
    }

    .aut-shorts-final-cta {
        grid-template-columns:
            54px
            minmax(0, 1fr);
    }

    .aut-shorts-final-cta__button {
        grid-column: 1 / -1;

        width: 100%;
        max-width: 390px;
    }

}

@media (max-width: 700px) {

    .aut-shorts-premium__heading-copy h2 {
        max-width: 12ch;
    }

    .aut-shorts-premium__benefits {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-shorts-premium__summary {
        padding: 22px 18px;
    }

    .aut-shorts-premium__summary-metrics {
        grid-template-columns: 1fr;
    }

    .aut-shorts-carousel {
        grid-auto-columns:
            minmax(230px, 80vw);

        padding-inline: 14px;
    }

    .aut-shorts-controls-row {
        width: min(
            100% - 28px,
            1180px
        );
    }

    .aut-short-copy {
        min-height: 180px;
    }

    .aut-shorts-final-cta {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .aut-shorts-final-cta__button {
        max-width: 100%;
    }

}

/* Segurança: os Shorts permanecem visíveis sem JavaScript */
.no-js .aut-short-card {
    opacity: 1;
    transform: none;
}

/* O JS adiciona esta classe durante a entrada */
.aut-short-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .aut-short-card {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   CTA PRINCIPAL — SEÇÃO DE SHORTS
========================================================= */

.aut-shorts-main-cta {
    position: relative;
    overflow: hidden;

    width: fit-content;
    min-width: 330px;
    min-height: 66px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;

    padding: 10px 16px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(156, 255, 99, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #064f2b 0%,
            #08713b 55%,
            #075b31 100%
        );

    border: 1px solid rgba(156, 255, 99, 0.34);
    border-radius: 999px;

    box-shadow:
        0 15px 32px rgba(4, 52, 27, 0.22),
        0 0 18px rgba(156, 255, 99, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.aut-shorts-main-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.13) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 720ms ease;

    pointer-events: none;
}

.aut-shorts-main-cta:hover {
    color: #ffffff;
    transform: translateY(-3px);

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(156, 255, 99, 0.19),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #076037 0%,
            #0a8145 55%,
            #076638 100%
        );

    border-color: rgba(156, 255, 99, 0.58);

    box-shadow:
        0 21px 42px rgba(4, 52, 27, 0.28),
        0 0 27px rgba(156, 255, 99, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.aut-shorts-main-cta:hover::before {
    transform: translateX(135%);
}

/* Ícone esquerdo: permanece completamente parado */

.aut-shorts-main-cta__icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f3d778,
            #ddb454
        );

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;

    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);

    transform: none !important;
    transition: none !important;
}

.aut-shorts-main-cta__icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
    transition: none !important;
}

/* Texto */

.aut-shorts-main-cta__copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-shorts-main-cta__copy small {
    color: rgba(181, 255, 197, 0.78);

    font-size: 0.56rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aut-shorts-main-cta__copy strong {
    color: #ffffff;

    font-size: 0.93rem;
    font-weight: 850;
    line-height: 1.2;
}

/* Somente a seta se movimenta */

.aut-shorts-main-cta__arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-shorts-main-cta__arrow svg {
    width: 18px;
    height: 18px;

    transition: transform 220ms ease;
}

.aut-shorts-main-cta:hover .aut-shorts-main-cta__arrow {
    transform: translateX(5px);
}

/* Neutraliza regras genéricas que possam mover todos os SVGs */

.aut-shorts-main-cta:hover .aut-shorts-main-cta__icon,
.aut-shorts-main-cta:hover .aut-shorts-main-cta__icon svg {
    transform: none !important;
}

/* Responsivo */

@media (max-width: 650px) {
    .aut-shorts-main-cta {
        width: 100%;
        min-width: 0;
        max-width: 390px;
    }

    .aut-shorts-main-cta__copy strong {
        font-size: 0.86rem;
    }
}

/* ==========================================================================
   AUTORIDADE — ERASMO FERNANDES
   ========================================================================== */

.aut-authority-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 9% 18%,
            rgba(156, 255, 99, 0.10),
            transparent 22%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(223, 184, 84, 0.10),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f1f4ea 0%,
            #f8f3e8 52%,
            #edf2e8 100%
        );
}

.aut-authority-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -190px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(13, 111, 57, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-authority-section .aut-authority-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

/* ==========================================================================
   FOTO
   ========================================================================== */

.aut-authority-photo {
    position: relative;
    margin: 0;

    opacity: 0;
    transform: translateX(-30px);

    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.aut-authority-photo.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.aut-authority-photo__frame {
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 3 / 4;

    border: 1px solid rgba(13, 111, 57, 0.15);
    border-radius: 30px;

    background: #0b3e24;

    box-shadow:
        0 28px 58px rgba(6, 55, 29, 0.16),
        0 0 0 8px rgba(255, 255, 255, 0.42);
}

/*
 * Esta regra elimina a faixa vazia.
 * A imagem ocupa todo o quadro.
 */
.aut-authority-photo__frame > img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    /*
     * Ajuste fino do enquadramento.
     * Reduza ou aumente o segundo valor caso necessário.
     */
    object-position: center 42%;
}

.aut-authority-photo__frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(1, 28, 14, 0.80) 100%
        );

    pointer-events: none;
}

.aut-authority-photo__glow {
    position: absolute;
    z-index: 2;

    left: 13%;
    right: 13%;
    top: 8%;
    bottom: 9%;

    border: 2px solid rgba(156, 255, 99, 0.72);
    border-radius: 28px;

    box-shadow:
        0 0 12px rgba(156, 255, 99, 0.40),
        0 0 28px rgba(156, 255, 99, 0.17),
        inset 0 0 18px rgba(156, 255, 99, 0.08);

    pointer-events: none;

    animation: authorityGlow 3.4s ease-in-out infinite;
}

@keyframes authorityGlow {
    0%,
    100% {
        opacity: 0.72;
        box-shadow:
            0 0 10px rgba(156, 255, 99, 0.32),
            0 0 24px rgba(156, 255, 99, 0.13);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 15px rgba(156, 255, 99, 0.50),
            0 0 35px rgba(156, 255, 99, 0.21);
    }
}

/* Badge superior */

.aut-authority-photo__badge {
    position: absolute;
    z-index: 4;

    top: 20px;
    left: 20px;
    right: 20px;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;

    padding: 10px 13px;

    color: #ffffff;
    background: rgba(3, 47, 25, 0.76);

    border: 1px solid rgba(156, 255, 99, 0.21);
    border-radius: 17px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.17);
}

.aut-authority-photo__badge-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #0b3a21;
    background: linear-gradient(135deg, #f1d477, #ddb454);

    border-radius: 13px;
}

.aut-authority-photo__badge-icon svg {
    width: 21px;
    height: 21px;
}

.aut-authority-photo__badge small {
    display: block;

    color: rgba(183, 255, 200, 0.78);
    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-authority-photo__badge strong {
    display: block;

    margin-top: 3px;

    color: #ffffff;
    font-size: 0.78rem;
    line-height: 1.3;
}

/* Legenda da imagem */

.aut-authority-photo__caption {
    position: absolute;
    z-index: 4;

    left: 24px;
    right: 24px;
    bottom: 22px;

    display: grid;
    gap: 3px;
}

.aut-authority-photo__caption > span {
    color: #9cff63;

    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aut-authority-photo__caption strong {
    color: #ffffff;

    font-size: 1.12rem;
    line-height: 1.2;
}

.aut-authority-photo__caption small {
    color: rgba(255, 255, 255, 0.70);

    font-size: 0.72rem;
    line-height: 1.4;
}

/* Métricas abaixo da foto */

.aut-authority-photo__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    margin-top: 14px;
}

.aut-authority-photo__metrics span {
    min-height: 85px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.90),
            rgba(237, 245, 233, 0.96)
        );

    border: 1px solid rgba(12, 91, 48, 0.11);
    border-radius: 16px;

    box-shadow:
        0 10px 22px rgba(5, 42, 22, 0.07);
}

.aut-authority-photo__metrics b {
    color: #0a5830;

    font-size: 0.90rem;
    line-height: 1.2;
}

.aut-authority-photo__metrics small {
    margin-top: 4px;

    color: #6a776f;
    font-size: 0.63rem;
    line-height: 1.35;
}

/* ==========================================================================
   TEXTO
   ========================================================================== */

.aut-authority-copy {
    opacity: 0;
    transform: translateX(30px);

    transition:
        opacity 700ms ease 120ms,
        transform 700ms ease 120ms;
}

.aut-authority-copy.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.aut-authority-copy h2 {
    max-width: 12ch;
    margin: 0;

    color: #102319;

    font-size: clamp(2.35rem, 4.6vw, 4.7rem);
    line-height: 1.01;
    letter-spacing: -0.055em;
}

.aut-authority-copy h2 em {
    color: #128046;
    font-style: normal;

    text-shadow:
        0 0 20px rgba(156, 255, 99, 0.10);
}

.aut-authority-lead {
    max-width: 62ch;
    margin: 22px 0 0;

    color: #69766e;

    font-size: 0.98rem;
    line-height: 1.75;
}

/* ==========================================================================
   PONTOS DE AUTORIDADE
   ========================================================================== */

.aut-authority-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;

    margin-top: 28px;
}

.aut-authority-points article {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    align-items: center;
    gap: 12px;

    padding: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(239, 246, 235, 0.94)
        );

    border: 1px solid rgba(12, 91, 48, 0.11);
    border-radius: 17px;

    box-shadow:
        0 10px 24px rgba(5, 42, 22, 0.06);

    transition:
        transform 230ms ease,
        border-color 230ms ease,
        box-shadow 230ms ease;
}

.aut-authority-points article:hover {
    transform: translateY(-4px);

    border-color: rgba(43, 151, 79, 0.25);

    box-shadow:
        0 17px 32px rgba(5, 42, 22, 0.11),
        0 0 16px rgba(156, 255, 99, 0.06);
}

.aut-authority-point__icon {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #118046;
    background: rgba(156, 255, 99, 0.12);

    border: 1px solid rgba(31, 145, 76, 0.13);
    border-radius: 14px;

    transform: none !important;
}

.aut-authority-point__icon svg {
    width: 21px;
    height: 21px;

    transform: none !important;
}

.aut-authority-points strong {
    display: block;

    color: #11251a;

    font-size: 0.82rem;
    line-height: 1.35;
}

.aut-authority-points article div > span {
    display: block;

    margin-top: 4px;

    color: #738078;

    font-size: 0.68rem;
    line-height: 1.45;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.aut-authority-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 27px;
}

.aut-authority-cta {
    position: relative;
    overflow: hidden;

    min-width: 340px;
    min-height: 66px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 13px;

    padding: 10px 16px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 16% 15%,
            rgba(156, 255, 99, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07502c,
            #0b773e
        );

    border: 1px solid rgba(156, 255, 99, 0.33);
    border-radius: 999px;

    box-shadow:
        0 15px 31px rgba(5, 65, 33, 0.21),
        0 0 18px rgba(156, 255, 99, 0.08);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.aut-authority-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.13) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 700ms ease;

    pointer-events: none;
}

.aut-authority-cta:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.58);

    box-shadow:
        0 21px 40px rgba(5, 65, 33, 0.27),
        0 0 27px rgba(156, 255, 99, 0.15);
}

.aut-authority-cta:hover::before {
    transform: translateX(135%);
}

.aut-authority-cta__icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background: linear-gradient(135deg, #f2d678, #ddb454);

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-authority-cta__icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
    transition: none !important;
}

.aut-authority-cta__copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-authority-cta__copy small {
    color: rgba(181, 255, 197, 0.79);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.aut-authority-cta__copy strong {
    color: #ffffff;

    font-size: 0.92rem;
    line-height: 1.2;
}

.aut-authority-cta__arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-authority-cta:hover .aut-authority-cta__arrow {
    transform: translateX(5px);
}

.aut-authority-security {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #6c7b72;

    font-size: 0.68rem;
    font-weight: 700;
}

.aut-authority-security svg {
    width: 16px;
    height: 16px;

    color: #138449;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1050px) {
    .aut-authority-section .aut-authority-grid {
        grid-template-columns: minmax(300px, 0.80fr) minmax(0, 1.20fr);
        gap: 45px;
    }

    .aut-authority-copy h2 {
        font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    }

    .aut-authority-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .aut-authority-section .aut-authority-grid {
        grid-template-columns: 1fr;
    }

    .aut-authority-photo {
        max-width: 520px;
    }

    .aut-authority-copy h2 {
        max-width: 14ch;
    }
}

@media (max-width: 600px) {
    .aut-authority-photo__frame {
        aspect-ratio: 4 / 5;
        border-radius: 24px;
    }

    .aut-authority-photo__frame > img {
        object-position: center 38%;
    }

    .aut-authority-photo__badge {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .aut-authority-photo__metrics {
        grid-template-columns: 1fr;
    }

    .aut-authority-points {
        gap: 10px;
    }

    .aut-authority-cta {
        width: 100%;
        min-width: 0;
    }

    .aut-authority-actions {
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-authority-photo,
    .aut-authority-copy {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .aut-authority-photo__glow {
        animation: none;
    }
}

/* ==========================================================================
   CTA INTERMEDIÁRIO — MÉTODO AUTONOMIA
   ========================================================================== */

.aut-method-offer {
    --method-mouse-x: 78%;
    --method-mouse-y: 22%;

    position: relative;
    overflow: hidden;

    padding-block: clamp(42px, 5vw, 68px);

    background:
        radial-gradient(
            circle at var(--method-mouse-x) var(--method-mouse-y),
            rgba(156, 255, 99, 0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 7% 90%,
            rgba(223, 184, 84, 0.09),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #032715 0%,
            #06391f 54%,
            #074626 100%
        );

    border-top: 1px solid rgba(156, 255, 99, 0.09);
    border-bottom: 1px solid rgba(156, 255, 99, 0.09);
}

.aut-method-offer::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(156, 255, 99, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-method-offer::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.025) 45%,
            transparent 70%
        );

    pointer-events: none;
}

.aut-method-offer__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(360px, 0.82fr);

    align-items: center;
    gap: clamp(42px, 6vw, 90px);
}

/* ==========================================================================
   CONTEÚDO
   ========================================================================== */

.aut-method-offer__content {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: flex-start;
    gap: 20px;

    opacity: 0;
    transform: translateX(-26px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.aut-method-offer.is-visible .aut-method-offer__content {
    opacity: 1;
    transform: translateX(0);
}

.aut-method-offer__main-icon {
    width: 66px;
    height: 66px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d778,
            #dcb14c
        );

    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 20px;

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        0 0 22px rgba(223, 184, 84, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.50);

    transform: none !important;
}

.aut-method-offer__main-icon svg {
    width: 30px;
    height: 30px;

    transform: none !important;
}

.aut-method-offer .aut-kicker {
    color: #dcb858;
}

.aut-method-offer__copy h3 {
    max-width: 25ch;
    margin: 10px 0 0;

    color: #ffffff;

    font-size: clamp(1.65rem, 2.7vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.aut-method-offer__copy > p {
    max-width: 58ch;
    margin: 15px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 0.90rem;
    line-height: 1.70;
}

/* ==========================================================================
   PILARES
   ========================================================================== */

.aut-method-offer__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 20px;
}

.aut-method-offer__pillars > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 11px 7px 7px;

    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(156, 255, 99, 0.12);
    border-radius: 999px;

    font-size: 0.66rem;
    font-weight: 750;

    transition:
        transform 220ms ease,
        background 220ms ease,
        border-color 220ms ease;
}

.aut-method-offer__pillars > span:hover {
    transform: translateY(-2px);

    background: rgba(156, 255, 99, 0.08);
    border-color: rgba(156, 255, 99, 0.24);
}

.aut-method-offer__pillars i {
    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #9cff63;
    background: rgba(156, 255, 99, 0.08);

    border-radius: 50%;

    font-style: normal;
    transform: none !important;
}

.aut-method-offer__pillars svg {
    width: 15px;
    height: 15px;

    transform: none !important;
}

/* ==========================================================================
   ÁREA DE AÇÃO
   ========================================================================== */

.aut-method-offer__action {
    position: relative;

    padding: 23px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(156, 255, 99, 0.11),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(156, 255, 99, 0.17);
    border-radius: 24px;

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    opacity: 0;
    transform: translateX(26px);

    transition:
        opacity 650ms ease 100ms,
        transform 650ms ease 100ms;
}

.aut-method-offer.is-visible .aut-method-offer__action {
    opacity: 1;
    transform: translateX(0);
}

.aut-method-offer__action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #dcb858,
            #9cff63,
            transparent
        );
}

/* Informativo superior */

.aut-method-offer__access {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;
}

.aut-method-offer__access > span {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #9cff63;
    background: rgba(156, 255, 99, 0.08);

    border: 1px solid rgba(156, 255, 99, 0.16);
    border-radius: 14px;

    transform: none !important;
}

.aut-method-offer__access svg {
    width: 20px;
    height: 20px;

    transform: none !important;
}

.aut-method-offer__access small {
    display: block;

    color: rgba(183, 255, 200, 0.72);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-method-offer__access strong {
    display: block;

    margin-top: 3px;

    color: #ffffff;

    font-size: 0.84rem;
    line-height: 1.35;
}

/* ==========================================================================
   BOTÃO
   ========================================================================== */

.aut-method-offer__button {
    position: relative;
    overflow: hidden;

    min-height: 68px;
    width: 100%;

    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;

    padding: 10px 16px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 15% 18%,
            rgba(156, 255, 99, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #086036 0%,
            #0b8245 55%,
            #08683a 100%
        );

    border: 1px solid rgba(156, 255, 99, 0.35);
    border-radius: 999px;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.25),
        0 0 19px rgba(156, 255, 99, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.aut-method-offer__button::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.14) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 720ms ease;

    pointer-events: none;
}

.aut-method-offer__button:hover {
    color: #ffffff;
    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.60);

    background:
        radial-gradient(
            circle at 15% 18%,
            rgba(156, 255, 99, 0.20),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #08713e,
            #0c914d,
            #087642
        );

    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.30),
        0 0 29px rgba(156, 255, 99, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.aut-method-offer__button:hover::before {
    transform: translateX(135%);
}

/* Ícone dourado fixo */

.aut-method-offer__button-icon {
    position: relative;
    z-index: 2;

    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f3d878,
            #ddb454
        );

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;

    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.50);

    transform: none !important;
    transition: none !important;
}

.aut-method-offer__button-icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
    transition: none !important;
}

.aut-method-offer__button-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-method-offer__button-copy small {
    color: rgba(185, 255, 201, 0.78);

    font-size: 0.56rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-method-offer__button-copy strong {
    color: #ffffff;

    font-size: 0.91rem;
    font-weight: 850;
    line-height: 1.2;
}

.aut-method-offer__button-arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-method-offer__button-arrow svg {
    width: 18px;
    height: 18px;
}

.aut-method-offer__button:hover
.aut-method-offer__button-arrow {
    transform: translateX(5px);
}

.aut-method-offer__button:hover
.aut-method-offer__button-icon,
.aut-method-offer__button:hover
.aut-method-offer__button-icon svg {
    transform: none !important;
}

/* ==========================================================================
   SEGURANÇA
   ========================================================================== */

.aut-method-offer__security {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;

    margin-top: 13px;
}

.aut-method-offer__security > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.61rem;
    font-weight: 700;
}

.aut-method-offer__security svg {
    width: 13px;
    height: 13px;

    color: #9cff63;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 950px) {
    .aut-method-offer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aut-method-offer__action {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    .aut-method-offer__content {
        grid-template-columns: 1fr;
    }

    .aut-method-offer__main-icon {
        width: 56px;
        height: 56px;

        border-radius: 17px;
    }

    .aut-method-offer__copy h3 {
        font-size: 1.55rem;
    }

    .aut-method-offer__pillars {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-method-offer__action {
        padding: 19px 16px;
    }

    .aut-method-offer__button {
        grid-template-columns: 42px minmax(0, 1fr) 20px;
        gap: 10px;

        padding-right: 12px;
    }

    .aut-method-offer__button-icon {
        width: 42px;
        height: 42px;
    }

    .aut-method-offer__button-copy strong {
        font-size: 0.82rem;
    }

    .aut-method-offer__security {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-method-offer__content,
    .aut-method-offer__action {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   AUTORIDADE EM CAMPO — CARROSSEL DE FOTOS
   ========================================================================== */

.aut-field-proof-section {
    --field-proof-x: 82%;
    --field-proof-y: 15%;

    position: relative;
    overflow: hidden;

    padding-top: clamp(68px, 8vw, 110px);

    background:
        radial-gradient(
            circle at var(--field-proof-x) var(--field-proof-y),
            rgba(156, 255, 99, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 7% 88%,
            rgba(223, 184, 84, 0.11),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #eff4e9 0%,
            #f8f4e9 52%,
            #edf3e8 100%
        );
}

.aut-field-proof-section::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -180px;

    width: 510px;
    height: 510px;

    border: 1px solid rgba(15, 111, 57, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.aut-field-proof-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;
    gap: clamp(48px, 7vw, 100px);

    margin-bottom: 44px;
}

.aut-field-proof-heading__copy {
    opacity: 0;
    transform: translateX(-28px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.aut-field-proof-section.is-visible
.aut-field-proof-heading__copy {
    opacity: 1;
    transform: translateX(0);
}

.aut-field-proof-heading__copy h2 {
    max-width: 15ch;
    margin: 0;

    color: #102319;

    font-size: clamp(2.25rem, 4.2vw, 4.15rem);
    line-height: 1.03;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.aut-field-proof-heading__copy h2 em {
    display: block;

    color: #148048;
    font-style: normal;

    text-shadow:
        0 0 20px rgba(156, 255, 99, 0.10);
}

.aut-field-proof-heading__copy > p {
    max-width: 60ch;
    margin: 21px 0 0;

    color: #68766e;

    font-size: 0.95rem;
    line-height: 1.72;
}

/* Benefícios */

.aut-field-proof-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 24px;
}

.aut-field-proof-benefits > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px 7px 7px;

    color: #16482c;
    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(15, 111, 57, 0.11);
    border-radius: 999px;

    font-size: 0.67rem;
    font-weight: 750;
}

.aut-field-proof-benefits i {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #128047;
    background: rgba(156, 255, 99, 0.13);

    border-radius: 50%;

    font-style: normal;
    transform: none !important;
}

.aut-field-proof-benefits svg {
    width: 15px;
    height: 15px;

    transform: none !important;
}

/* ==========================================================================
   PAINEL DE RESUMO
   ========================================================================== */

.aut-field-proof-summary {
    position: relative;
    overflow: hidden;

    padding: 27px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(156, 255, 99, 0.15),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #edf5e9
        );

    border: 1px solid rgba(13, 102, 54, 0.15);
    border-radius: 25px;

    box-shadow:
        0 24px 52px rgba(5, 55, 28, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    opacity: 0;
    transform: translateX(28px);

    transition:
        opacity 650ms ease 100ms,
        transform 650ms ease 100ms;
}

.aut-field-proof-section.is-visible
.aut-field-proof-summary {
    opacity: 1;
    transform: translateX(0);
}

.aut-field-proof-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #dcb858,
            #9cff63
        );

    border-radius: 0 0 999px 999px;
}

.aut-field-proof-summary__header {
    display: grid;
    grid-template-columns: 53px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.aut-field-proof-summary__icon {
    width: 53px;
    height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background:
        linear-gradient(
            135deg,
            #f1d477,
            #ddb454
        );

    border-radius: 17px;

    box-shadow:
        0 11px 22px rgba(70, 52, 8, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.aut-field-proof-summary__icon svg {
    width: 25px;
    height: 25px;
}

.aut-field-proof-summary__header small {
    color: #157744;

    font-size: 0.60rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-field-proof-summary__header strong {
    display: block;

    margin-top: 5px;

    color: #102319;

    font-size: 1.02rem;
    line-height: 1.42;
}

.aut-field-proof-summary__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    margin-top: 22px;
}

.aut-field-proof-summary__metrics span {
    padding: 13px 10px;

    color: #6d7971;
    background: rgba(7, 81, 42, 0.05);

    border: 1px solid rgba(7, 81, 42, 0.08);
    border-radius: 13px;

    font-size: 0.62rem;
    line-height: 1.35;
}

.aut-field-proof-summary__metrics b {
    display: block;

    color: #118047;

    font-size: 1.02rem;
}

.aut-field-proof-summary__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 17px;
    padding: 13px;

    color: #35604a;
    background: rgba(156, 255, 99, 0.08);

    border: 1px solid rgba(15, 111, 57, 0.10);
    border-radius: 14px;

    font-size: 0.64rem;
    font-weight: 800;
}

.aut-field-proof-summary__flow i {
    color: #d0a846;
    font-style: normal;
}

/* ==========================================================================
   CARROSSEL INFINITO
   ========================================================================== */

.aut-field-proof-marquee {
    position: relative;
    overflow: hidden;

    padding-block: 14px 30px;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 5%,
            #000 95%,
            transparent
        );

    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 5%,
            #000 95%,
            transparent
        );
}

.aut-field-proof-track {
    display: flex;
    width: max-content;

    animation:
        fieldProofMarquee 54s linear infinite;

    will-change: transform;
}

.aut-field-proof-group {
    display: flex;
    gap: 18px;

    padding-right: 18px;
}

.aut-field-proof-marquee:hover
.aut-field-proof-track {
    animation-play-state: paused;
}

@keyframes fieldProofMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Fotos */

.aut-field-proof-photo {
    position: relative;
    overflow: hidden;

    width: clamp(220px, 19vw, 305px);
    aspect-ratio: 4 / 5;

    flex: 0 0 auto;
    margin: 0;

    background: #0c3e24;

    border: 1px solid rgba(15, 111, 57, 0.14);
    border-radius: 24px;

    box-shadow:
        0 17px 36px rgba(5, 50, 26, 0.13);

    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease;
}

.aut-field-proof-photo:hover {
    transform: translateY(-7px) scale(1.01);

    border-color: rgba(156, 255, 99, 0.44);

    box-shadow:
        0 25px 48px rgba(5, 50, 26, 0.19),
        0 0 22px rgba(156, 255, 99, 0.09);
}

.aut-field-proof-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 500ms ease;
}

.aut-field-proof-photo:hover img {
    transform: scale(1.045);
}

.aut-field-proof-photo__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 52%,
            rgba(2, 30, 15, 0.82) 100%
        );

    pointer-events: none;
}

.aut-field-proof-photo figcaption {
    position: absolute;
    z-index: 2;

    left: 17px;
    right: 17px;
    bottom: 16px;

    display: grid;
    gap: 3px;
}

.aut-field-proof-photo figcaption small {
    color: #9cff63;

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-field-proof-photo figcaption strong {
    color: #ffffff;

    font-size: 0.83rem;
    line-height: 1.3;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.aut-field-proof-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 22px;
    padding: 24px 26px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.14),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #04351e,
            #08703b
        );

    border: 1px solid rgba(156, 255, 99, 0.20);
    border-radius: 24px;

    box-shadow:
        0 23px 48px rgba(5, 59, 30, 0.19);
}

.aut-field-proof-cta__copy {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.aut-field-proof-cta__icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f1d477,
            #ddb454
        );

    border-radius: 16px;

    transform: none !important;
}

.aut-field-proof-cta__icon svg {
    width: 24px;
    height: 24px;

    transform: none !important;
}

.aut-field-proof-cta__copy small {
    color: #9cff63;

    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-field-proof-cta__copy strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 1rem;
    line-height: 1.35;
}

.aut-field-proof-cta__copy p {
    margin: 5px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.72rem;
    line-height: 1.45;
}

/* Botão */

.aut-field-proof-cta__button {
    position: relative;
    overflow: hidden;

    min-width: 325px;
    min-height: 66px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 12px;

    padding: 10px 15px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #086037,
            #0b8245
        );

    border: 1px solid rgba(156, 255, 99, 0.35);
    border-radius: 999px;

    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.23),
        0 0 18px rgba(156, 255, 99, 0.09);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-field-proof-cta__button::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.13) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 720ms ease;

    pointer-events: none;
}

.aut-field-proof-cta__button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.60);

    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(156, 255, 99, 0.16);
}

.aut-field-proof-cta__button:hover::before {
    transform: translateX(135%);
}

.aut-field-proof-cta__button-icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-field-proof-cta__button-icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
    transition: none !important;
}

.aut-field-proof-cta__button-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-field-proof-cta__button-copy small {
    color: rgba(185, 255, 201, 0.78);

    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-field-proof-cta__button-copy strong {
    color: #ffffff;

    font-size: 0.88rem;
}

.aut-field-proof-cta__button-arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;

    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-field-proof-cta__button:hover
.aut-field-proof-cta__button-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1000px) {
    .aut-field-proof-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aut-field-proof-summary {
        max-width: 680px;
    }

    .aut-field-proof-cta {
        grid-template-columns: 1fr;
    }

    .aut-field-proof-cta__button {
        width: 100%;
        max-width: 390px;
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .aut-field-proof-heading__copy h2 {
        max-width: 12ch;
    }

    .aut-field-proof-benefits {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-field-proof-summary {
        padding: 22px 18px;
    }

    .aut-field-proof-summary__metrics {
        grid-template-columns: 1fr;
    }

    .aut-field-proof-summary__flow {
        flex-wrap: wrap;
    }

    .aut-field-proof-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .aut-field-proof-photo {
        width: 230px;
    }

    .aut-field-proof-track {
        animation-duration: 43s;
    }

    .aut-field-proof-cta {
        padding: 21px 17px;
    }

    .aut-field-proof-cta__copy {
        grid-template-columns: 1fr;
    }

    .aut-field-proof-cta__button {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-field-proof-heading__copy,
    .aut-field-proof-summary {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .aut-field-proof-track {
        animation-play-state: paused;
    }
}

/* ==========================================================================
   PARA QUEM É — AUTONOMIA NO CAMPO
   ========================================================================== */

.aut-audience-section {
    --audience-x: 85%;
    --audience-y: 12%;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at var(--audience-x) var(--audience-y),
            rgba(156, 255, 99, 0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(223, 184, 84, 0.09),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #032715 0%,
            #06371f 52%,
            #074426 100%
        );
}

.aut-audience-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;

    width: 510px;
    height: 510px;

    border: 1px solid rgba(156, 255, 99, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-audience-section::after {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -200px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(223, 184, 84, 0.08),
            transparent 68%
        );

    pointer-events: none;
}

.aut-audience-section > .aut-container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.aut-audience-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.76fr);

    align-items: center;
    gap: clamp(48px, 7vw, 100px);

    margin-bottom: 40px;
}

.aut-audience-heading__copy {
    opacity: 0;
    transform: translateX(-26px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.aut-audience-section.is-visible
.aut-audience-heading__copy {
    opacity: 1;
    transform: translateX(0);
}

.aut-audience-heading__copy h2 {
    max-width: 14ch;
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.25rem, 4vw, 4.05rem);
    line-height: 1.03;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.aut-audience-heading__copy h2 em {
    display: block;

    color: #9cff63;
    font-style: normal;

    text-shadow:
        0 0 22px rgba(156, 255, 99, 0.14);
}

.aut-audience-heading__copy > p {
    max-width: 60ch;
    margin: 21px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 0.94rem;
    line-height: 1.72;
}

.aut-audience-heading__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 22px;
}

.aut-audience-heading__tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 11px;

    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(156, 255, 99, 0.12);
    border-radius: 999px;

    font-size: 0.64rem;
    font-weight: 750;
}

.aut-audience-heading__tags svg {
    width: 13px;
    height: 13px;

    color: #9cff63;
}

/* ==========================================================================
   PAINEL LATERAL
   ========================================================================== */

.aut-audience-summary {
    position: relative;
    overflow: hidden;

    padding: 27px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(156, 255, 99, 0.12),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(156, 255, 99, 0.17);
    border-radius: 25px;

    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    opacity: 0;
    transform: translateX(26px);

    transition:
        opacity 650ms ease 100ms,
        transform 650ms ease 100ms;
}

.aut-audience-section.is-visible
.aut-audience-summary {
    opacity: 1;
    transform: translateX(0);
}

.aut-audience-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    right: 27px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #dcb858,
            #9cff63,
            transparent
        );
}

.aut-audience-summary__icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 17px;

    box-shadow:
        0 12px 23px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.aut-audience-summary__icon svg {
    width: 26px;
    height: 26px;
}

.aut-audience-summary__copy {
    margin-top: 17px;
}

.aut-audience-summary__copy small {
    color: #9cff63;

    font-size: 0.60rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-audience-summary__copy strong {
    display: block;

    margin-top: 6px;

    color: #ffffff;

    font-size: 1.01rem;
    line-height: 1.45;
}

.aut-audience-summary__flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    margin-top: 20px;
    padding: 14px;

    background: rgba(2, 31, 16, 0.34);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
}

.aut-audience-summary__flow span {
    display: grid;
    gap: 2px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 0.62rem;
    font-weight: 750;
    text-align: center;
}

.aut-audience-summary__flow i {
    color: #dcb858;

    font-size: 0.56rem;
    font-style: normal;
}

.aut-audience-summary__flow b {
    color: rgba(156, 255, 99, 0.48);

    font-size: 0.80rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.aut-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.aut-audience-card {
    --audience-accent: #9cff63;

    position: relative;
    overflow: hidden;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 23px;

    background:
        radial-gradient(
            circle at 90% 8%,
            color-mix(
                in srgb,
                var(--audience-accent) 10%,
                transparent
            ),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(156, 255, 99, 0.13);
    border-radius: 22px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 550ms ease,
        transform 550ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease;
}

.aut-audience-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aut-audience-card.is-visible:hover {
    transform: translateY(-6px);

    border-color: rgba(156, 255, 99, 0.31);

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.21),
        0 0 20px rgba(156, 255, 99, 0.06);
}

.aut-audience-card--producer {
    --audience-accent: #9cff63;
}

.aut-audience-card--technical {
    --audience-accent: #dcb858;
}

.aut-audience-card--student {
    --audience-accent: #69c6a1;
}

.aut-audience-card--manager {
    --audience-accent: #82b8e0;
}

.aut-audience-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 28px;
}

.aut-audience-card__icon {
    width: 49px;
    height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--audience-accent);
    background:
        color-mix(
            in srgb,
            var(--audience-accent) 10%,
            transparent
        );

    border: 1px solid
        color-mix(
            in srgb,
            var(--audience-accent) 20%,
            transparent
        );

    border-radius: 15px;

    transform: none !important;
}

.aut-audience-card__icon svg {
    width: 23px;
    height: 23px;

    transform: none !important;
}

.aut-audience-card__number {
    color: rgba(255, 255, 255, 0.29);

    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.10em;
}

.aut-audience-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.aut-audience-card__content > small {
    color: var(--audience-accent);

    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-audience-card__content h3 {
    margin: 8px 0 11px;

    color: #ffffff;

    font-size: 1.10rem;
    line-height: 1.32;
}

.aut-audience-card__content > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.59);

    font-size: 0.82rem;
    line-height: 1.64;
}

.aut-audience-card__result {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 22px;
}

.aut-audience-card__result > span {
    width: 26px;
    height: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--audience-accent);

    background:
        color-mix(
            in srgb,
            var(--audience-accent) 10%,
            transparent
        );

    border-radius: 50%;
}

.aut-audience-card__result svg {
    width: 13px;
    height: 13px;
}

.aut-audience-card__result strong {
    color: rgba(255, 255, 255, 0.79);

    font-size: 0.68rem;
    line-height: 1.4;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.aut-audience-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 22px;
    padding: 24px 26px;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.14),
            transparent 28%
        ),
        rgba(2, 31, 16, 0.48);

    border: 1px solid rgba(223, 184, 84, 0.20);
    border-radius: 23px;

    box-shadow:
        0 19px 42px rgba(0, 0, 0, 0.16);
}

.aut-audience-cta__qualification {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.aut-audience-cta__qualification-icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 16px;

    transform: none !important;
}

.aut-audience-cta__qualification-icon svg {
    width: 24px;
    height: 24px;

    transform: none !important;
}

.aut-audience-cta__qualification small {
    color: #9cff63;

    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-audience-cta__qualification strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 0.94rem;
    line-height: 1.4;
}

.aut-audience-cta__qualification p {
    margin: 5px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.69rem;
    line-height: 1.45;
}

/* Botão */

.aut-audience-cta__button {
    position: relative;
    overflow: hidden;

    min-width: 325px;
    min-height: 66px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 12px;

    padding: 10px 15px 10px 11px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #086037,
            #0b8245
        );

    border: 1px solid rgba(156, 255, 99, 0.35);
    border-radius: 999px;

    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.24),
        0 0 18px rgba(156, 255, 99, 0.09);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-audience-cta__button::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.13) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 720ms ease;

    pointer-events: none;
}

.aut-audience-cta__button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.60);

    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.29),
        0 0 28px rgba(156, 255, 99, 0.16);
}

.aut-audience-cta__button:hover::before {
    transform: translateX(135%);
}

.aut-audience-cta__button-icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 50%;

    transform: none !important;
    transition: none !important;
}

.aut-audience-cta__button-icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
    transition: none !important;
}

.aut-audience-cta__button-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-audience-cta__button-copy small {
    color: rgba(185, 255, 201, 0.78);

    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-audience-cta__button-copy strong {
    color: #ffffff;

    font-size: 0.88rem;
}

.aut-audience-cta__button-arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;

    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-audience-cta__button:hover
.aut-audience-cta__button-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1100px) {
    .aut-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 950px) {
    .aut-audience-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aut-audience-summary {
        max-width: 680px;
    }

    .aut-audience-cta {
        grid-template-columns: 1fr;
    }

    .aut-audience-cta__button {
        width: 100%;
        max-width: 390px;
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .aut-audience-heading__copy h2 {
        max-width: 12ch;
    }

    .aut-audience-heading__tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-audience-summary {
        padding: 22px 18px;
    }

    .aut-audience-summary__flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .aut-audience-summary__flow b {
        display: none;
    }

    .aut-audience-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .aut-audience-card {
        min-height: 285px;
        padding: 21px 19px;
    }

    .aut-audience-cta {
        padding: 21px 17px;
    }

    .aut-audience-cta__qualification {
        grid-template-columns: 1fr;
    }

    .aut-audience-cta__button {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-audience-heading__copy,
    .aut-audience-summary,
    .aut-audience-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   OFERTA FINAL — AUTONOMIA NO CAMPO
   ========================================================================== */

.aut-final-offer-section {
    --final-offer-x: 82%;
    --final-offer-y: 16%;

    position: relative;
    overflow: hidden;

    padding-block: clamp(76px, 9vw, 125px);

    background:
        radial-gradient(
            circle at var(--final-offer-x) var(--final-offer-y),
            rgba(156, 255, 99, 0.12),
            transparent 26%
        ),
        radial-gradient(
            circle at 6% 88%,
            rgba(223, 184, 84, 0.13),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #eef4e8 0%,
            #f8f3e8 50%,
            #edf3e8 100%
        );
}

.aut-final-offer-section::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -190px;

    width: 530px;
    height: 530px;

    border: 1px solid rgba(14, 110, 57, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-final-offer-glow {
    position: absolute;
    left: 4%;
    top: 18%;

    width: 260px;
    height: 260px;

    background:
        radial-gradient(
            circle,
            rgba(156, 255, 99, 0.10),
            transparent 68%
        );

    pointer-events: none;

    animation: finalOfferGlow 4.2s ease-in-out infinite;
}

@keyframes finalOfferGlow {
    0%,
    100% {
        opacity: 0.50;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.aut-final-offer {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, 0.82fr);

    align-items: center;
    gap: clamp(54px, 7vw, 105px);
}

/* ==========================================================================
   CONTEÚDO
   ========================================================================== */

.aut-final-offer__copy {
    opacity: 0;
    transform: translateX(-30px);

    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.aut-final-offer-section.is-visible
.aut-final-offer__copy {
    opacity: 1;
    transform: translateX(0);
}

.aut-final-offer__copy h2 {
    max-width: 13ch;
    margin: 0;

    color: #102319;

    font-size: clamp(2.45rem, 4.7vw, 4.9rem);
    line-height: 1.01;
    letter-spacing: -0.055em;

    text-wrap: balance;
}

.aut-final-offer__copy h2 em {
    display: block;

    color: #118047;
    font-style: normal;

    text-shadow:
        0 0 22px rgba(156, 255, 99, 0.11);
}

.aut-final-offer__lead {
    max-width: 61ch;
    margin: 22px 0 0;

    color: #68766e;

    font-size: 0.98rem;
    line-height: 1.75;
}

/* Benefícios */

.aut-final-offer__benefits {
    display: grid;
    gap: 12px;

    margin-top: 29px;
}

.aut-final-offer__benefits article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;

    padding: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(238, 246, 234, 0.94)
        );

    border: 1px solid rgba(13, 101, 53, 0.11);
    border-radius: 18px;

    box-shadow:
        0 11px 25px rgba(5, 46, 24, 0.06);

    transition:
        transform 230ms ease,
        border-color 230ms ease,
        box-shadow 230ms ease;
}

.aut-final-offer__benefits article:hover {
    transform: translateX(5px);

    border-color: rgba(26, 137, 70, 0.25);

    box-shadow:
        0 17px 32px rgba(5, 46, 24, 0.11),
        0 0 18px rgba(156, 255, 99, 0.06);
}

.aut-final-offer__benefit-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #118047;
    background: rgba(156, 255, 99, 0.13);

    border: 1px solid rgba(27, 142, 72, 0.13);
    border-radius: 15px;

    transform: none !important;
}

.aut-final-offer__benefit-icon svg {
    width: 22px;
    height: 22px;

    transform: none !important;
}

.aut-final-offer__benefits strong {
    display: block;

    color: #102319;

    font-size: 0.83rem;
    line-height: 1.35;
}

.aut-final-offer__benefits article div > span {
    display: block;

    margin-top: 4px;

    color: #718077;

    font-size: 0.70rem;
    line-height: 1.48;
}

/* Autoridade */

.aut-final-offer__authority {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;

    margin-top: 19px;
    padding: 16px;

    background:
        linear-gradient(
            135deg,
            #063b22,
            #08703b
        );

    border: 1px solid rgba(156, 255, 99, 0.18);
    border-radius: 18px;

    box-shadow:
        0 15px 31px rgba(5, 58, 30, 0.16);
}

.aut-final-offer__authority-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 15px;

    transform: none !important;
}

.aut-final-offer__authority-icon svg {
    width: 23px;
    height: 23px;

    transform: none !important;
}

.aut-final-offer__authority small {
    color: #9cff63;

    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-final-offer__authority strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 0.78rem;
    line-height: 1.4;
}

/* ==========================================================================
   BOX DA OFERTA
   ========================================================================== */

.aut-final-offer__box {
    position: relative;
    overflow: hidden;

    padding: 29px;

    background:
        radial-gradient(
            circle at 90% 7%,
            rgba(156, 255, 99, 0.15),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #edf5e9 100%
        );

    border: 1px solid rgba(14, 106, 56, 0.17);
    border-radius: 28px;

    box-shadow:
        0 31px 68px rgba(5, 57, 29, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    opacity: 0;
    transform: translateX(30px);

    transition:
        opacity 700ms ease 100ms,
        transform 700ms ease 100ms;
}

.aut-final-offer-section.is-visible
.aut-final-offer__box {
    opacity: 1;
    transform: translateX(0);
}

.aut-final-offer__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #dcb858,
            #9cff63,
            #178248
        );

    border-radius: 0 0 999px 999px;
}

.aut-final-offer__box-top {
    display: grid;
    grid-template-columns: 53px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.aut-final-offer__box-icon {
    width: 53px;
    height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 17px;

    box-shadow:
        0 11px 23px rgba(72, 53, 8, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.50);

    transform: none !important;
}

.aut-final-offer__box-icon svg {
    width: 25px;
    height: 25px;

    transform: none !important;
}

.aut-final-offer__box-top small {
    color: #177847;

    font-size: 0.60rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-final-offer__box-top strong {
    display: block;

    margin-top: 4px;

    color: #102319;

    font-size: 1.22rem;
    line-height: 1.2;
}

.aut-final-offer__box-title {
    margin-top: 22px;
}

.aut-final-offer__box-title > span {
    display: inline-flex;

    padding: 7px 10px;

    color: #116c3d;
    background: rgba(156, 255, 99, 0.13);

    border: 1px solid rgba(20, 127, 69, 0.11);
    border-radius: 999px;

    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-final-offer__box-title h3 {
    margin: 13px 0 0;

    color: #102319;

    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.aut-final-offer__box-title p {
    margin: 11px 0 0;

    color: #707d75;

    font-size: 0.78rem;
    line-height: 1.6;
}

/* Incluído */

.aut-final-offer__included {
    display: grid;
    gap: 10px;

    margin-top: 20px;
    padding: 16px;

    background: rgba(8, 86, 45, 0.045);

    border: 1px solid rgba(8, 86, 45, 0.08);
    border-radius: 16px;
}

.aut-final-offer__included span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #304e3d;

    font-size: 0.71rem;
    font-weight: 750;
}

.aut-final-offer__included svg {
    width: 14px;
    height: 14px;

    color: #138149;
}

/* ==========================================================================
   BOTÃO DE CHECKOUT
   ========================================================================== */

.aut-final-offer__checkout {
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 72px;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 23px;
    align-items: center;
    gap: 13px;

    margin-top: 19px;
    padding: 11px 16px 11px 12px;

    color: #ffffff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(156, 255, 99, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #075d34 0%,
            #0b8949 54%,
            #08713e 100%
        );

    border: 1px solid rgba(156, 255, 99, 0.42);
    border-radius: 999px;

    box-shadow:
        0 18px 36px rgba(5, 76, 38, 0.26),
        0 0 22px rgba(156, 255, 99, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-final-offer__checkout::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.15) 48%,
            transparent 74%
        );

    transform: translateX(-135%);
    transition: transform 750ms ease;

    pointer-events: none;
}

.aut-final-offer__checkout:hover {
    color: #ffffff;

    transform: translateY(-4px);

    border-color: rgba(156, 255, 99, 0.72);

    box-shadow:
        0 25px 48px rgba(5, 76, 38, 0.33),
        0 0 34px rgba(156, 255, 99, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.aut-final-offer__checkout:hover::before {
    transform: translateX(135%);
}

.aut-final-offer__checkout-icon {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f3d878,
            #ddb454
        );

    border: 1px solid rgba(255, 255, 255, 0.43);
    border-radius: 50%;

    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.53);

    transform: none !important;
    transition: none !important;
}

.aut-final-offer__checkout-icon svg {
    width: 21px;
    height: 21px;

    transform: none !important;
    transition: none !important;
}

.aut-final-offer__checkout-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.aut-final-offer__checkout-copy small {
    color: rgba(190, 255, 204, 0.82);

    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-final-offer__checkout-copy strong {
    color: #ffffff;

    font-size: 0.98rem;
    line-height: 1.2;
}

.aut-final-offer__checkout-arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;

    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-final-offer__checkout:hover
.aut-final-offer__checkout-arrow {
    transform: translateX(6px);
}

/* Segurança */

.aut-final-offer__security {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 17px;

    margin-top: 13px;
}

.aut-final-offer__security span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #6a776f;

    font-size: 0.61rem;
    font-weight: 700;
}

.aut-final-offer__security svg {
    width: 14px;
    height: 14px;

    color: #138149;
}

/* Divisor */

.aut-final-offer__divider {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 20px 0 13px;
}

.aut-final-offer__divider::before,
.aut-final-offer__divider::after {
    content: "";
    height: 1px;
    flex: 1;

    background: rgba(8, 81, 42, 0.11);
}

.aut-final-offer__divider span {
    color: #7a867f;

    font-size: 0.60rem;
    font-weight: 750;
}

/* ==========================================================================
   WHATSAPP
   ========================================================================== */

.aut-final-offer__whatsapp {
    width: 100%;
    min-height: 60px;

    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;

    padding: 9px 14px 9px 10px;

    color: #164a2d;
    text-decoration: none;

    background:
        rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(10, 100, 52, 0.14);
    border-radius: 999px;

    transition:
        transform 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-final-offer__whatsapp:hover {
    color: #164a2d;

    transform: translateY(-2px);

    background: #ffffff;
    border-color: rgba(10, 129, 65, 0.27);

    box-shadow:
        0 12px 25px rgba(5, 52, 27, 0.10);
}

.aut-final-offer__whatsapp-icon {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #16894c;

    border-radius: 50%;

    transform: none !important;
}

.aut-final-offer__whatsapp-icon svg {
    width: 20px;
    height: 20px;

    transform: none !important;
}

.aut-final-offer__whatsapp > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aut-final-offer__whatsapp small {
    color: #718078;

    font-size: 0.54rem;
    font-weight: 750;
    text-transform: uppercase;
}

.aut-final-offer__whatsapp strong {
    margin-top: 2px;

    color: #143d27;

    font-size: 0.80rem;
}

.aut-final-offer__whatsapp b {
    color: #16894c;

    transition: transform 220ms ease;
}

.aut-final-offer__whatsapp:hover b {
    transform: translateX(4px);
}

.aut-final-offer__microcopy {
    max-width: 43ch;
    margin: 12px auto 0;

    color: #869189;

    font-size: 0.58rem;
    line-height: 1.45;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1000px) {
    .aut-final-offer {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .aut-final-offer__copy {
        max-width: 760px;
    }

    .aut-final-offer__box {
        width: 100%;
        max-width: 620px;
    }
}

@media (max-width: 650px) {
    .aut-final-offer-section {
        padding-block: 66px;
    }

    .aut-final-offer__copy h2 {
        max-width: 12ch;

        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .aut-final-offer__box {
        padding: 24px 18px;

        border-radius: 23px;
    }

    .aut-final-offer__checkout {
        grid-template-columns: 44px minmax(0, 1fr) 19px;
        gap: 10px;

        padding-right: 12px;
    }

    .aut-final-offer__checkout-icon {
        width: 44px;
        height: 44px;
    }

    .aut-final-offer__checkout-copy strong {
        font-size: 0.88rem;
    }

    .aut-final-offer__security {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;

        padding-left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-final-offer__copy,
    .aut-final-offer__box {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .aut-final-offer-glow {
        animation: none;
    }
}

/* ==========================================================================
   FAQ — AUTONOMIA NO CAMPO
   ========================================================================== */

.aut-faq-section {
    --faq-x: 84%;
    --faq-y: 15%;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at var(--faq-x) var(--faq-y),
            rgba(156, 255, 99, 0.11),
            transparent 25%
        ),
        radial-gradient(
            circle at 5% 88%,
            rgba(223, 184, 84, 0.10),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #eef4e8 0%,
            #f8f3e8 52%,
            #edf3e8 100%
        );
}

.aut-faq-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(13, 105, 55, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.aut-faq-section > .aut-container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.aut-faq-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.72fr);

    align-items: center;
    gap: clamp(46px, 7vw, 96px);

    margin-bottom: 38px;
}

.aut-faq-heading__copy {
    opacity: 0;
    transform: translateX(-26px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.aut-faq-section.is-visible
.aut-faq-heading__copy {
    opacity: 1;
    transform: translateX(0);
}

.aut-faq-heading__copy h2 {
    max-width: 13ch;
    margin: 0;

    color: #102319;

    font-size: clamp(2.3rem, 4.2vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -0.05em;

    text-wrap: balance;
}

.aut-faq-heading__copy h2 em {
    display: block;

    color: #118047;
    font-style: normal;

    text-shadow:
        0 0 20px rgba(156, 255, 99, 0.10);
}

.aut-faq-heading__copy > p {
    max-width: 60ch;
    margin: 21px 0 0;

    color: #68766e;

    font-size: 0.94rem;
    line-height: 1.72;
}

.aut-faq-heading__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 22px;
}

.aut-faq-heading__tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 11px;

    color: #164b2e;
    background: rgba(255, 255, 255, 0.74);

    border: 1px solid rgba(14, 105, 55, 0.10);
    border-radius: 999px;

    font-size: 0.64rem;
    font-weight: 750;
}

.aut-faq-heading__tags svg {
    width: 13px;
    height: 13px;

    color: #128047;
}

/* ==========================================================================
   PAINEL LATERAL
   ========================================================================== */

.aut-faq-summary {
    position: relative;
    overflow: hidden;

    padding: 26px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(156, 255, 99, 0.14),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #edf5e9
        );

    border: 1px solid rgba(13, 102, 54, 0.14);
    border-radius: 25px;

    box-shadow:
        0 24px 52px rgba(5, 55, 28, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    opacity: 0;
    transform: translateX(26px);

    transition:
        opacity 650ms ease 100ms,
        transform 650ms ease 100ms;
}

.aut-faq-section.is-visible
.aut-faq-summary {
    opacity: 1;
    transform: translateX(0);
}

.aut-faq-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    right: 27px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #dcb858,
            #9cff63
        );

    border-radius: 0 0 999px 999px;
}

.aut-faq-summary__icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 17px;

    box-shadow:
        0 11px 22px rgba(72, 53, 8, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.aut-faq-summary__icon svg {
    width: 26px;
    height: 26px;
}

.aut-faq-summary > div:nth-child(2) {
    margin-top: 18px;
}

.aut-faq-summary small {
    color: #157744;

    font-size: 0.60rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-faq-summary strong {
    display: block;

    margin-top: 6px;

    color: #102319;

    font-size: 1rem;
    line-height: 1.45;
}

.aut-faq-summary__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    margin-top: 20px;
}

.aut-faq-summary__metrics span {
    padding: 13px 11px;

    color: #6b7870;
    background: rgba(7, 81, 42, 0.05);

    border: 1px solid rgba(7, 81, 42, 0.08);
    border-radius: 13px;

    font-size: 0.62rem;
    line-height: 1.35;
}

.aut-faq-summary__metrics b {
    display: block;

    color: #118047;

    font-size: 1.05rem;
}

.aut-faq-summary__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: 17px;
    padding: 12px 14px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #07582f,
            #0a7b40
        );

    border: 1px solid rgba(156, 255, 99, 0.25);
    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.aut-faq-summary__contact:hover {
    color: #ffffff;

    transform: translateY(-2px);

    border-color: rgba(156, 255, 99, 0.50);

    box-shadow:
        0 14px 28px rgba(5, 65, 33, 0.18),
        0 0 18px rgba(156, 255, 99, 0.10);
}

.aut-faq-summary__contact span {
    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-faq-summary__contact:hover span {
    transform: translateX(4px);
}

/* ==========================================================================
   LISTA DO FAQ
   ========================================================================== */

.aut-faq-list {
    max-width: 940px;
    margin-inline: auto;
}

.aut-faq-item {
    margin-bottom: 12px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(239, 246, 235, 0.96)
        );

    border: 1px solid rgba(13, 102, 54, 0.11);
    border-radius: 19px;

    box-shadow:
        0 11px 25px rgba(5, 46, 24, 0.06);

    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity 500ms ease,
        transform 500ms ease,
        border-color 230ms ease,
        box-shadow 230ms ease,
        background 230ms ease;
}

.aut-faq-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aut-faq-item[open] {
    border-color: rgba(26, 137, 70, 0.28);

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(156, 255, 99, 0.10),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #edf6e9
        );

    box-shadow:
        0 18px 38px rgba(5, 46, 24, 0.11),
        0 0 20px rgba(156, 255, 99, 0.05);
}

.aut-faq-item summary {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 14px;

    padding: 17px 18px;

    cursor: pointer;
    list-style: none;
}

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

.aut-faq-item__icon {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #118047;
    background: rgba(156, 255, 99, 0.13);

    border: 1px solid rgba(22, 134, 69, 0.12);
    border-radius: 14px;

    transform: none !important;
    transition: none !important;
}

.aut-faq-item[open]
.aut-faq-item__icon {
    color: #07341e;

    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );
}

.aut-faq-item__icon svg {
    width: 22px;
    height: 22px;

    transform: none !important;
    transition: none !important;
}

.aut-faq-item__question {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aut-faq-item__question small {
    color: #16804a;

    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.aut-faq-item__question strong {
    color: #102319;

    font-size: 0.94rem;
    line-height: 1.35;
}

.aut-faq-item__toggle {
    position: relative;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(7, 91, 47, 0.06);

    border: 1px solid rgba(7, 91, 47, 0.10);
    border-radius: 50%;

    transition:
        background 220ms ease,
        transform 220ms ease;
}

.aut-faq-item__toggle i,
.aut-faq-item__toggle b {
    position: absolute;

    width: 13px;
    height: 2px;

    background: #118047;
    border-radius: 999px;

    transition:
        transform 220ms ease,
        opacity 220ms ease;
}

.aut-faq-item__toggle b {
    transform: rotate(90deg);
}

.aut-faq-item[open]
.aut-faq-item__toggle {
    background: #118047;

    transform: rotate(180deg);
}

.aut-faq-item[open]
.aut-faq-item__toggle i,
.aut-faq-item[open]
.aut-faq-item__toggle b {
    background: #ffffff;
}

.aut-faq-item[open]
.aut-faq-item__toggle b {
    opacity: 0;
    transform: rotate(0deg);
}

/* Resposta */

.aut-faq-item__answer {
    overflow: hidden;
}

.aut-faq-item__answer p {
    max-width: 76ch;

    margin: 0;
    padding: 0 72px 20px 78px;

    color: #65736b;

    font-size: 0.82rem;
    line-height: 1.72;
}

/* ==========================================================================
   CTA DO FAQ
   ========================================================================== */

.aut-faq-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 28px;
    padding: 24px 26px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(156, 255, 99, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #04351e,
            #08703b
        );

    border: 1px solid rgba(156, 255, 99, 0.20);
    border-radius: 24px;

    box-shadow:
        0 22px 48px rgba(5, 59, 30, 0.18);
}

.aut-faq-cta__copy {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.aut-faq-cta__icon {
    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 16px;

    transform: none !important;
}

.aut-faq-cta__icon svg {
    width: 24px;
    height: 24px;

    transform: none !important;
}

.aut-faq-cta__copy small {
    color: #9cff63;

    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-faq-cta__copy strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 0.96rem;
    line-height: 1.42;
}

.aut-faq-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* Botão de checkout */

.aut-faq-cta__checkout {
    position: relative;
    overflow: hidden;

    min-width: 310px;
    min-height: 64px;

    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;

    padding: 9px 14px 9px 10px;

    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #086037,
            #0b8245
        );

    border: 1px solid rgba(156, 255, 99, 0.35);
    border-radius: 999px;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.22),
        0 0 17px rgba(156, 255, 99, 0.09);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.aut-faq-cta__checkout:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(156, 255, 99, 0.58);

    box-shadow:
        0 21px 40px rgba(0, 0, 0, 0.28),
        0 0 27px rgba(156, 255, 99, 0.15);
}

.aut-faq-cta__checkout-icon {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #07341e;
    background:
        linear-gradient(
            135deg,
            #f2d678,
            #ddb454
        );

    border-radius: 50%;

    transform: none !important;
}

.aut-faq-cta__checkout-icon svg {
    width: 19px;
    height: 19px;

    transform: none !important;
}

.aut-faq-cta__checkout > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aut-faq-cta__checkout small {
    color: rgba(185, 255, 201, 0.78);

    font-size: 0.54rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aut-faq-cta__checkout strong {
    color: #ffffff;

    font-size: 0.86rem;
}

.aut-faq-cta__checkout b {
    color: #9cff63;

    transition: transform 220ms ease;
}

.aut-faq-cta__checkout:hover b {
    transform: translateX(4px);
}

.aut-faq-cta__whatsapp {
    color: rgba(255, 255, 255, 0.69);

    font-size: 0.67rem;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
}

.aut-faq-cta__whatsapp:hover {
    color: #9cff63;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 950px) {
    .aut-faq-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aut-faq-summary {
        max-width: 650px;
    }

    .aut-faq-cta {
        grid-template-columns: 1fr;
    }

    .aut-faq-cta__actions {
        width: 100%;
        max-width: 390px;
    }

    .aut-faq-cta__checkout {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .aut-faq-heading__copy h2 {
        max-width: 12ch;
    }

    .aut-faq-heading__tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aut-faq-summary {
        padding: 22px 18px;
    }

    .aut-faq-summary__metrics {
        grid-template-columns: 1fr;
    }

    .aut-faq-item summary {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        gap: 11px;

        padding: 15px 14px;
    }

    .aut-faq-item__icon {
        width: 42px;
        height: 42px;
    }

    .aut-faq-item__question strong {
        font-size: 0.84rem;
    }

    .aut-faq-item__answer p {
        padding: 0 16px 18px 67px;

        font-size: 0.78rem;
    }

    .aut-faq-cta {
        padding: 21px 17px;
    }

    .aut-faq-cta__copy {
        grid-template-columns: 1fr;
    }

    .aut-faq-cta__actions {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-faq-heading__copy,
    .aut-faq-summary,
    .aut-faq-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   BARRA FIXA DE COMPRA — MOBILE
   ========================================================================== */

.aut-mobile-bar {
    display: none;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 96px;
    }

    .aut-mobile-bar {
        position: fixed;
        z-index: 9999;

        left: 0;
        right: 0;
        bottom: 0;

        display: block;

        padding:
            10px
            max(14px, env(safe-area-inset-right))
            calc(10px + env(safe-area-inset-bottom))
            max(14px, env(safe-area-inset-left));

        background:
            linear-gradient(
                180deg,
                rgba(2, 35, 19, 0),
                rgba(2, 35, 19, 0.90) 25%,
                rgba(2, 35, 19, 0.98) 100%
            );

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        pointer-events: none;
    }

    .aut-mobile-checkout {
        position: relative;
        overflow: hidden;

        width: 100%;
        min-height: 66px;

        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 22px;
        align-items: center;
        gap: 12px;

        padding: 10px 15px 10px 10px;

        color: #ffffff !important;
        text-decoration: none !important;

        background:
            radial-gradient(
                circle at 15% 15%,
                rgba(156, 255, 99, 0.18),
                transparent 30%
            ),
            linear-gradient(
                135deg,
                #08723f 0%,
                #0b944e 55%,
                #087740 100%
            ) !important;

        border: 1px solid rgba(156, 255, 99, 0.55) !important;
        border-radius: 999px;

        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.32),
            0 0 24px rgba(156, 255, 99, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.13);

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto;

        transition:
            transform 200ms ease,
            box-shadow 200ms ease,
            border-color 200ms ease;
    }

    .aut-mobile-checkout::before {
        content: "";
        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                110deg,
                transparent 20%,
                rgba(255, 255, 255, 0.15) 48%,
                transparent 75%
            );

        transform: translateX(-140%);
        transition: transform 700ms ease;

        pointer-events: none;
    }

    .aut-mobile-checkout:active {
        transform: scale(0.985);
    }

    .aut-mobile-checkout:active::before {
        transform: translateX(140%);
    }

    .aut-mobile-checkout__icon {
        position: relative;
        z-index: 2;

        width: 44px;
        height: 44px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        color: #07341e;

        background:
            linear-gradient(
                135deg,
                #f4da7d,
                #ddb454
            ) !important;

        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 50%;

        box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.52);

        transform: none !important;
        transition: none !important;
    }

    .aut-mobile-checkout__icon svg {
        width: 20px;
        height: 20px;

        transform: none !important;
        transition: none !important;
    }

    .aut-mobile-checkout__copy {
        position: relative;
        z-index: 2;

        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .aut-mobile-checkout__copy small {
        color: rgba(201, 255, 212, 0.82) !important;

        font-size: 0.55rem;
        font-weight: 850;
        line-height: 1;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .aut-mobile-checkout__copy strong {
        color: #ffffff !important;

        font-size: 0.91rem;
        font-weight: 850;
        line-height: 1.2;
    }

    .aut-mobile-checkout__arrow {
        position: relative;
        z-index: 2;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        color: #b1ff78 !important;

        animation: autMobileArrow 1.8s ease-in-out infinite;
    }

    .aut-mobile-checkout__arrow svg {
        width: 18px;
        height: 18px;
    }

    @keyframes autMobileArrow {
        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(4px);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .aut-mobile-checkout__arrow {
        animation: none;
    }
}