:root {
    --blue: #0075ff;
    --blue-deep: #004ff2;
    --navy: #001268;
    --heading: #002e8e;
    --ink: #000b4b;
    --muted: #596279;
    --soft: #f4f4f5;
    --pale-blue: #eef8ff;
    --yellow: #ffd12b;
    --red: #ed0912;
    --white: #fff;
    --line: #dce3eb;
    --shadow: 0 12px 28px rgba(0, 32, 95, .12);
    --container: 1260px;
}

* {
    box-sizing: border-box;
}

/* O atributo hidden precisa vencer qualquer display de componente.
   Sem isto, .contact-popup (display:grid) e .cookie-bar (display:flex)
   ignoram o hidden e ficam visíveis na tela o tempo todo. */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 28px;
    overflow-x: clip;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Sora", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.48;
    font-synthesis: none;
    font-optical-sizing: auto;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 44px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 99px;
    transform: translateY(-200%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 25px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 27, 87, .2);
}

.btn-yellow {
    color: #121936;
    background: var(--yellow);
}

.btn-red {
    color: var(--white);
    background: var(--red);
}

.btn-primary {
    color: var(--white);
    background: var(--blue);
}

.btn-outline-blue {
    color: var(--blue);
    background: var(--white);
    border: 2px solid var(--blue);
}

.site-header {
    position: relative;
    z-index: 20;
    padding: 44px 0 32px;
    color: var(--white);
    background: var(--blue);
}

.header-inner {
    width: min(1060px, calc(100% - 44px));
    display: grid;
    grid-template-columns: 132px 630px 198px;
    align-items: start;
    justify-content: space-between;
    gap: 0;
}

.brand {
    display: block;
    width: 132px;
    margin-top: 2px;
}

.brand img {
    width: 132px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 5px 28px 7px;
    gap: 23px;
    color: #111634;
    background: #f4f4f3;
    border-bottom: 3px solid var(--yellow);
    border-radius: 999px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
}

.site-nav a {
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--blue);
}

.header-actions {
    display: grid;
    width: 198px;
    justify-items: center;
    gap: 5px;
}

.btn-header {
    width: 100%;
    min-height: 37px;
    padding-block: 9px;
    font-size: 13px;
}

.login-link,
.language-link {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.language-link {
    gap: 9px;
    min-height: 30px;
}

.login-link {
    min-height: 35px;
}

.language-link span {
    font-size: 24px;
    line-height: 1;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    background: #ededed;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: 0;
    width: 55vw;
    height: 56vw;
    max-width: 760px;
    max-height: 760px;
    content: "";
    opacity: .27;
    background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0 16px, rgba(26, 34, 64, .12) 17px 18px, transparent 19px 28px);
    pointer-events: none;
}

.hero::before {
    top: -330px;
    left: -175px;
    transform: rotate(-24deg);
}

.hero::after {
    right: -285px;
    bottom: -440px;
    transform: rotate(40deg);
}

.hero-wave {
    position: absolute;
    z-index: 1;
    width: 250px;
    height: 18px;
    opacity: .2;
    border-top: 1px solid #283252;
    border-radius: 50%;
}

.hero-wave-top {
    top: 84px;
    right: 18%;
}

.hero-wave-bottom {
    bottom: 70px;
    left: 8%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1170px, calc(100% - 44px));
    grid-template-columns: minmax(545px, .92fr) minmax(505px, 1.08fr);
    align-items: center;
    min-height: 660px;
    gap: 60px;
}

.hero-copy {
    padding: 80px 0 42px;
}

.hero h1,
.section-title,
.certificate-highlight h2,
.app-copy h2,
.story-card h2,
.barcode-copy h2,
.partner-copy h2 {
    margin: 0;
    color: var(--heading);
    font-weight: 700;
    letter-spacing: normal;
}

.hero h1 {
    max-width: 545px;
    margin-bottom: 21px;
    font-size: clamp(48px, 5.234vw, 67px);
    line-height: 1.3;
}

html[lang="en"] .hero h1 {
    font-size: clamp(46px, 4.8vw, 62px);
}

.hero-lead {
    max-width: 545px;
    margin: 0 0 22px;
    color: #242424;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: normal;
}

.hero-text {
    max-width: 539px;
    margin: 0;
    color: #000b4b;
    font-size: 17px;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 34px;
}

.quick-support-form {
    width: min(430px, 100%);
    margin-top: 20px;
}

.quick-support-form > label {
    display: block;
    margin-bottom: 8px;
    color: #7a7e89;
    font-size: 10px;
    font-weight: 500;
}

.input-action {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.input-action input {
    min-width: 0;
    height: 34px;
    padding: 0 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #d4d8df;
    border-radius: 20px;
    outline: none;
    font-size: 11px;
}

.input-action input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 249, .14);
}

.input-action button {
    min-height: 32px;
    padding: 0 18px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
}

.form-message {
    min-height: 16px;
    margin: 5px 0 0;
    color: #176e2b;
    font-size: 11px;
}

.form-message.is-error {
    color: #c91b24;
}

/* --------------------------------------------------------------------------
   Arte do hero: painel azul + telas + celular.

   É uma COMPOSIÇÃO de tamanho próprio, não três elementos soltos. As três
   peças guardam posição fixa entre si, então tudo aqui é % de uma caixa de
   491x535 — a mesma medida do site oficial (painel 399x516, telas 488x219,
   celular 465x343). Assim a arte encolhe inteira, sem se desmontar.

   ⚠️ NÃO devolver align-self: stretch para o .hero-visual. A coluna de TEXTO
   é mais alta que a arte; com stretch o .hero-visual esticava para os 660px
   do hero e o celular, que estava ancorado por `bottom`, descia junto até
   ultrapassar o fim do hero — onde o overflow:hidden o CORTAVA (47px a 1440,
   42px a 950). Era o defeito de "celular baixo demais".
   -------------------------------------------------------------------------- */

.hero-visual {
    position: relative;
    align-self: center;
    justify-self: end;
    width: min(491px, 100%);
    aspect-ratio: 491 / 535;
}

.hero-blue-panel {
    position: absolute;
    top: 0;
    left: 15.5%;
    width: 81.3%;
    height: 96.4%;
    background: var(--blue);
    border-radius: 46px;
}

.dashboard-image {
    position: absolute;
    z-index: 2;
    top: 12%;
    left: 0;
    width: 99.4%;
    height: auto;
    filter: drop-shadow(0 18px 20px rgba(0, 24, 79, .15));
}

/* Sem rotate: a inclinação do aparelho já está desenhada dentro do PNG.
   O rotate(-4deg) que havia aqui inclinava o celular uma segunda vez. */
.phone-image {
    position: absolute;
    z-index: 3;
    top: 35.9%;
    left: 5.3%;
    width: 94.7%;
    height: auto;
    filter: drop-shadow(0 22px 16px rgba(0, 12, 44, .28));
}

.benefit-bar {
    color: var(--white);
    background: #373737;
}

.benefit-items {
    width: min(1170px, calc(100% - 44px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    gap: 0;
}

.benefit-items a {
    position: relative;
    padding: 11px 0;
    color: #f3f3f3;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.benefit-items a:not(:last-child)::after {
    display: none;
}

.feature-section {
    padding: 42px 0 64px;
    background: #ededed;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 3.125vw, 40px);
    line-height: 1.3;
}

.feature-section .section-title {
    font-size: clamp(36px, 3.75vw, 48px);
    line-height: 1.4;
}

.annual-title {
    font-size: clamp(30px, 2.97vw, 38px);
}

.certificates-section .section-title {
    font-size: clamp(34px, 3.36vw, 43px);
}

.numbers-section .section-title,
.faq-section .section-title {
    font-size: clamp(36px, 3.75vw, 48px);
    line-height: 1.4;
}

.testimonials-section .section-title {
    font-size: clamp(35px, 3.52vw, 45px);
}

.section-title span {
    color: var(--red);
}

.section-subtitle {
    margin: 6px 0 26px;
    color: #47516a;
    font-size: 12px;
    text-align: center;
}

.feature-carousel {
    position: relative;
    width: min(685px, 100%);
    margin: 20px auto 0;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(13, 32, 65, .12);
}

.carousel-slide {
    display: none;
    margin: 0;
    background: #e5e5e5;
}

.carousel-slide.is-active {
    display: block;
    animation: carousel-in .34s ease;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 2.42 / 1;
    object-fit: cover;
}

@keyframes carousel-in {
    from { opacity: .35; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.carousel-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    border: 1px solid #e0e4e9;
    border-radius: 50%;
    box-shadow: 0 5px 12px rgba(0, 20, 66, .12);
    transform: translateY(-50%);
}

.carousel-button:hover,
.carousel-button:focus-visible {
    color: var(--white);
    background: var(--blue);
}

.carousel-prev { left: -52px; }
.carousel-next { right: -52px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    background: #bfc8d4;
    border: 0;
    border-radius: 50%;
}

.carousel-dots button.is-active {
    width: 20px;
    background: var(--blue);
    border-radius: 8px;
}

.pricing-section {
    padding: 50px 0 62px;
    background: radial-gradient(circle at 50% 0, #d8f0ff 0, var(--pale-blue) 38%, #fff 76%);
}

.pricing-section .section-title {
    margin-bottom: 30px;
}

.plans-grid,
.annual-grid {
    width: min(1130px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.plans-grid + .plans-grid {
    margin-top: 24px;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 405px;
    padding: 29px 27px 23px;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(165deg, #007cf9, #0064e7);
    border-radius: 17px;
    box-shadow: 0 15px 26px rgba(0, 91, 211, .18);
}

.plan-card-free {
    color: #17346d;
    background: var(--white);
    border: 1px solid #fc4c52;
    box-shadow: 0 12px 24px rgba(76, 92, 120, .12);
}

.plan-card-negotiation {
    justify-content: center;
    text-align: center;
}

/* No site online os cards azuis usam texto escuro no titulo/descricao/preco
   e cinza claro apenas nos bullets. */
.plan-card-blue h3,
.plan-card-blue > p,
.plan-card-blue .plan-price {
    color: #242424;
}

.plan-card-blue ul {
    color: #e3e3e3;
}

.btn-plan-blue {
    color: var(--white);
    background: #1565c0;
}

.btn-plan-blue:hover {
    background: #0f56a8;
}

.plan-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 8px;
    color: var(--white);
    background: #fb1c2e;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-card-free .plan-kicker {
    color: var(--white);
    background: #fa3440;
}

.plan-card-negotiation .plan-kicker {
    align-self: center;
    color: var(--blue);
    background: #e7f4ff;
}

.plan-card h3 {
    margin: 0 0 9px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: normal;
}

.plan-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.plan-price {
    display: block;
    margin: 19px 0 14px;
    font-size: 44px;
    line-height: 1;
    letter-spacing: normal;
}

.plan-price small {
    margin-right: 3px;
    font-size: 16px;
    vertical-align: middle;
}

.plan-price sup {
    font-size: 18px;
    vertical-align: top;
}

.btn-plan {
    width: 100%;
    min-height: 40px;
    margin: 17px 0 14px;
    padding: 8px 13px;
    font-size: 11px;
}

.plan-card ul {
    display: grid;
    gap: 6px;
    margin: auto 0 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .32);
    font-size: 11px;
    line-height: 1.35;
    list-style: none;
}

.plan-card-free ul {
    border-color: #d9e3ed;
}

.plan-card li::before {
    margin-right: 6px;
    content: "✓";
    font-weight: 800;
}

.plan-card-negotiation .btn {
    margin-top: 28px;
}

.annual-title {
    margin: 48px 0 26px;
}

.annual-title span {
    color: var(--red);
}

.annual-card {
    display: flex;
    min-height: 405px;
    padding: 21px 25px 23px;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(160deg, #061856, #001145);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 17, 69, .19);
}

.annual-card > p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.45;
}

.annual-card ul {
    display: grid;
    gap: 6px;
    margin: auto 0 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .32);
    font-size: 11px;
    line-height: 1.35;
    list-style: none;
}

.annual-card li::before {
    margin-right: 6px;
    content: "✓";
    font-weight: 800;
}

.annual-card > span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 8px;
    color: #ff535a;
    background: var(--white);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

.annual-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
}

.annual-card strong {
    display: block;
    margin: 12px 0;
    font-size: 29px;
    letter-spacing: normal;
}

.annual-card sup {
    font-size: 13px;
}

/* O CTA do card anual usa o componente .btn .btn-yellow .btn-plan, igual aos mensais.
   Aqui fica só o que o componente não cobre. */
.annual-card .btn-plan {
    margin-bottom: 4px;
}

.certificates-section {
    padding: 47px 0 60px;
    background: #f5f5f6;
}

.certificate-grid {
    display: grid;
    width: min(1130px, 100%);
    margin: 26px auto 42px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.certificate-card {
    min-height: 145px;
    padding: 22px 20px;
    background: var(--white);
    border-radius: 13px;
    box-shadow: var(--shadow);
}

.certificate-card h3 {
    margin: 0 0 10px;
    color: var(--blue-deep);
    font-size: 15px;
    letter-spacing: normal;
}

.certificate-card p {
    min-height: 38px;
    margin: 0 0 12px;
    color: #6b7484;
    font-size: 11px;
}

.certificate-card a {
    color: #2e2e2e;
    font-size: 10px;
    font-weight: 800;
}

.certificate-card i {
    margin-left: 8px;
    color: var(--blue);
}

.certificate-highlight {
    display: grid;
    width: min(1130px, 100%);
    min-height: 330px;
    margin: 0 auto;
    padding: 28px 45px 26px 30px;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 34px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.certificate-image {
    position: relative;
    align-self: stretch;
}

.certificate-image img {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 96%;
    max-height: 239px;
    object-fit: contain;
    object-position: bottom left;
}

.certificate-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 7px 13px;
    color: var(--yellow);
    background: var(--navy);
    border-radius: 14px;
    font-size: 10px;
    font-weight: 800;
}

.certificate-highlight h2 {
    font-size: 31px;
    line-height: 1.15;
}

.certificate-highlight p,
.certificate-highlight li {
    color: #3a4359;
    font-size: 13px;
    line-height: 1.55;
}

.certificate-highlight p {
    margin: 13px 0 8px;
}

.certificate-highlight ul {
    margin: 0 0 16px;
    padding-left: 16px;
}

.certificate-highlight .btn {
    min-height: 34px;
    padding: 8px 16px;
    font-size: 10px;
}

.numbers-section {
    padding: 63px 0;
    background: #f1f1f2;
}

.numbers-section .section-title {
    margin-bottom: 24px;
}

.numbers-grid {
    display: grid;
    width: min(1130px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.numbers-grid article {
    display: flex;
    min-height: 175px;
    padding: 28px 30px;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(145deg, #00154e, #092e89);
    border-radius: 12px;
}

.numbers-grid article:nth-child(2) {
    background: linear-gradient(145deg, #537fb2, #2a5b95);
}

.numbers-grid article:nth-child(3) {
    background: linear-gradient(145deg, #0054de, #1646db);
}

.numbers-grid strong {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: normal;
}

.numbers-grid span {
    display: block;
    margin: 7px 0 auto;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.numbers-grid a {
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
}

.app-section {
    padding: 74px 0 78px;
    background: #eeeeef;
}

.app-grid {
    display: grid;
    width: min(1190px, 100%);
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 76px;
}

.app-visual {
    position: relative;
    min-height: 490px;
}

.app-swoosh {
    position: absolute;
    z-index: 0;
    top: 36px;
    right: -42px;
    width: 510px;
    height: 384px;
    border: 36px solid rgba(255, 255, 255, .92);
    border-radius: 46% 57% 46% 51%;
    transform: rotate(-31deg);
}

.app-main-image {
    position: absolute;
    z-index: 1;
    right: -6px;
    bottom: -8px;
    width: min(558px, 103%);
    filter: drop-shadow(0 19px 22px rgba(0, 15, 49, .17));
}

.app-chip {
    position: absolute;
    z-index: 2;
    padding: 15px 21px;
    color: var(--yellow);
    background: var(--navy);
    border-radius: 20px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.app-chip small {
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
}

.app-chip-left {
    bottom: 43px;
    left: 7px;
}

.app-chip-right {
    bottom: 43px;
    left: 175px;
}

.app-copy h2 {
    font-size: 39px;
    line-height: 1.15;
}

.app-copy p {
    max-width: 500px;
    margin: 17px 0;
    color: #353f56;
    font-size: 16px;
    line-height: 1.52;
}

.app-copy .app-numbers-text {
    margin: 15px 0 27px;
    color: #171b28;
    font-size: 18px;
    line-height: 1.62;
}

.app-copy .btn {
    min-height: 48px;
    margin: 0;
    padding: 11px 22px;
    font-size: 13px;
}

.app-downloads {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-top: 26px;
}

.store-links {
    display: flex;
    gap: 12px;
    margin-top: 13px;
}

.store-links img {
    width: auto;
    height: 40px;
}

.app-qr {
    width: 111px;
    flex: 0 0 auto;
}

.story-section,
.media-section {
    padding: 70px 0 0;
    background: var(--white);
}

.media-section {
    padding-top: 25px;
    padding-bottom: 44px;
}

.story-grid,
.media-grid {
    display: grid;
    width: min(1190px, 100%);
    margin-inline: auto;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

.story-card {
    min-height: 295px;
    overflow: hidden;
    padding: 40px 45px;
    border-radius: 18px;
}

.story-dark {
    color: var(--white);
    background: linear-gradient(135deg, #001350, #00277e);
}

.story-card h2 {
    color: inherit;
    font-size: 32px;
    line-height: 1.18;
}

.story-card p {
    max-width: 485px;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.58;
}

.story-card a {
    display: inline-block;
    margin-top: 25px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.story-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    color: var(--blue-deep);
    background: #f0f0f1;
    flex-direction: column;
    text-align: center;
}

.story-visual strong,
.story-visual p {
    position: relative;
    z-index: 2;
}

.story-visual strong {
    margin: 11px 0;
    font-size: 25px;
    letter-spacing: normal;
}

.story-visual p {
    margin: 0 auto;
    color: #53617f;
    font-size: 12px;
}

.people-stack {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 50%;
    display: flex;
    justify-content: center;
    width: 210px;
    transform: translateX(-50%);
}

.people-stack img {
    width: 78px;
    height: 78px;
    margin-left: -18px;
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 17px rgba(0, 23, 77, .22);
    object-fit: cover;
    object-position: center 30%;
}

.people-stack img:first-child {
    margin-left: 0;
}

.story-arrow {
    position: absolute;
    z-index: 3;
    top: 54px;
    right: 42px;
    color: #59606d;
    font-size: 48px;
    transform: rotate(10deg);
}

.startup-logo {
    position: absolute;
    right: 32px;
    bottom: 25px;
    left: 32px;
    width: calc(100% - 64px);
    max-height: 112px;
    object-fit: contain;
    object-position: center;
}

.media-heading {
    color: var(--white);
    font-size: 17px !important;
    font-weight: 700;
}

.story-media-visual {
    background: linear-gradient(145deg, #fff, #e5e5e6);
}

.story-media-visual strong {
    font-size: 24px;
    line-height: 1.2;
}

.media-people-stack {
    top: 29px;
}

.media-people-stack img {
    width: 74px;
    height: 74px;
    object-position: center 20%;
}

.barcode-section {
    padding: 64px 0;
    background: #f2f2f3;
}

.barcode-grid {
    display: grid;
    width: min(1190px, 100%);
    margin-inline: auto;
    grid-template-columns: .96fr 1.04fr;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.barcode-copy {
    padding: 44px 46px;
    color: var(--white);
    background: linear-gradient(150deg, #001751, #001d72);
}

.barcode-copy h2 {
    color: var(--white);
    font-size: 38px;
    line-height: 1.05;
}

.barcode-copy h2 span {
    color: var(--yellow);
}

.barcode-copy h3 {
    margin: 16px 0 9px;
    font-size: 19px;
}

.barcode-copy p {
    margin: 9px 0;
    color: #e0e8ff;
    font-size: 13px;
}

.barcode-copy .btn {
    margin-top: 11px;
    padding: 9px 15px;
    font-size: 11px;
}

.video-frame {
    position: relative;
    min-height: 358px;
    background: #101010;
}

.video-frame iframe,
.testimonial-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
}

.youtube-fallback {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 8px 11px;
    color: var(--white);
    background: rgba(0, 0, 0, .78);
    border-radius: 7px;
    font-size: 10px;
    font-weight: 700;
}

.testimonials-section {
    padding: 68px 0;
    background: #fff url("../img/testimonials-bg.png") center / cover no-repeat;
}

.testimonials-section .section-title {
    margin-bottom: 25px;
}

.testimonial-top {
    display: grid;
    width: min(1190px, 100%);
    margin-inline: auto;
    grid-template-columns: 1.15fr .925fr .925fr;
    gap: 20px;
}

.testimonial-video {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    background: #101010;
    border-radius: 10px;
}

.testimonial-card {
    display: flex;
    min-height: 240px;
    padding: 28px;
    background: var(--white);
    border: 1px solid #e1e5e9;
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(0, 28, 82, .07);
    flex-direction: column;
}

.testimonial-card h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 17px;
    line-height: 1.25;
}

.testimonial-card p {
    margin: 0;
    color: #4c566c;
    font-size: 12px;
    line-height: 1.55;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 13px;
}

.testimonial-card footer strong,
.testimonial-card footer small {
    display: block;
}

.testimonial-card footer strong {
    color: #25304d;
    font-size: 11px;
}

.testimonial-card footer small {
    color: #7c8495;
    font-size: 10px;
}

.avatar {
    display: block;
    width: 39px;
    height: 39px;
    background: linear-gradient(135deg, #f3c39f, #273f70);
    border-radius: 50%;
}

.avatar-two { background: linear-gradient(135deg, #ddab83, #563626); }
.avatar-three { background: linear-gradient(135deg, #875e4a, #ce9c78); }
.avatar-four { background: linear-gradient(135deg, #273d59, #dfa581); }
.avatar-five { background: linear-gradient(135deg, #b27e54, #222d55); }

.testimonial-bottom {
    display: grid;
    width: min(1190px, 100%);
    margin: 14px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-bottom .testimonial-card {
    min-height: 205px;
}

.partner-section {
    padding: 66px 0;
    background: #f7f7f8;
}

.partner-card {
    display: grid;
    width: min(1190px, 100%);
    min-height: 360px;
    overflow: hidden;
    grid-template-columns: 280px .9fr 1.2fr;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.partner-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #10a3fc, #0069e8);
}

.partner-visual::before {
    position: absolute;
    top: 22px;
    left: 18px;
    width: 90px;
    height: 90px;
    content: "";
    border: 17px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.partner-visual img {
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 112%;
}

.partner-copy {
    padding: 38px 29px;
}

.partner-copy h2 {
    font-size: 30px;
    line-height: 1.05;
}

.partner-copy > p {
    margin: 9px 0;
    color: #53617a;
    font-size: 12px;
}

.partner-copy h3 {
    margin: 19px 0 8px;
    color: #193b92;
    font-size: 15px;
    line-height: 1.28;
}

.partner-form {
    display: grid;
    padding: 31px 33px;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 9px 10px;
    background: #f7f8fa;
}

.partner-form label {
    color: #43506c;
    font-size: 11px;
    font-weight: 700;
}

.partner-form input,
.partner-form select {
    display: block;
    width: 100%;
    height: 36px;
    margin-top: 4px;
    padding: 0 9px;
    color: #1e2b49;
    background: var(--white);
    border: 1px solid #dce2ea;
    border-radius: 5px;
    font-size: 11px;
    outline: none;
}

.partner-form input:focus,
.partner-form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(8, 120, 249, .14);
}

.partner-form .consent,
.partner-form .btn,
.partner-form .form-message {
    grid-column: 1 / -1;
}

.partner-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 500;
}

.partner-form .consent input {
    width: 12px;
    height: 12px;
    margin: 0;
    flex: 0 0 auto;
}

.partner-form .btn {
    min-height: 39px;
    padding: 7px 12px;
    font-size: 10px;
}

.partner-form .form-message {
    margin-top: -2px;
    font-size: 9px;
}

.faq-section {
    padding: 65px 0 48px;
    background: var(--white);
}

.faq-section .section-title {
    margin-bottom: 25px;
}

.faq-grid {
    display: grid;
    width: min(1190px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-grid > div {
    display: grid;
    align-content: start;
    gap: 8px;
}

.faq-item {
    overflow: hidden;
    border-radius: 5px;
}

.faq-item button {
    display: flex;
    width: 100%;
    padding: 13px 15px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
}

.faq-item button i {
    transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 8px 11px;
    color: #4b566e;
    background: #f2f7ff;
    font-size: 12px;
}

.faq-answer p {
    margin: 0;
}

.faq-answer p + p,
.faq-answer ul + p {
    margin-top: 9px;
}

.faq-answer ul {
    display: grid;
    gap: 4px;
    margin: 6px 0 0;
    padding-left: 16px;
    line-height: 1.45;
}

.faq-answer li::marker {
    color: var(--blue);
}

.faq-answer strong {
    color: var(--navy);
}

.specialist-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 28px auto 0;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.specialist-link i {
    color: #1d1d1d;
    font-size: 21px;
}

.site-footer {
    padding: 20px 0;
    color: #7d8492;
    background: #f7f7f7;
    border-top: 1px solid #e6e8ec;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner img {
    width: 70px;
    height: auto;
    filter: brightness(.66);
}

.footer-inner span,
.footer-inner a {
    font-size: 14px;
    color: var(--heading);
}

.footer-inner nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-inner nav a {
    font-weight: 700;
}

.footer-inner nav a:hover {
    text-decoration: underline;
}

.footer-sep {
    color: var(--heading);
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    font-size: 20px;
    color: var(--heading);
    border-radius: 50%;
    transition: background .2s ease, color .2s ease;
}

.footer-social a:hover {
    color: var(--white);
    background: var(--heading);
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 132px minmax(430px, 1fr) 170px;
        gap: 20px;
    }

    .header-actions {
        width: 170px;
    }

    .site-nav {
        padding-inline: 18px;
        gap: 16px;
    }

    .site-nav a {
        padding: 0;
        font-size: 13px;
    }

    .hero-grid {
        grid-template-columns: minmax(410px, .95fr) minmax(360px, 1.05fr);
    }

    .hero-lead {
        font-size: 20px;
    }

    .carousel-prev { left: -42px; }
    .carousel-next { right: -42px; }
}

@media (max-width: 880px) {
    .site-header {
        padding: 18px 0;
    }

    .header-inner {
        width: min(1060px, calc(100% - 44px));
        position: relative;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 12px;
    }

    .brand,
    .brand img {
        width: 104px;
    }

    .menu-toggle {
        display: grid;
        width: 39px;
        height: 36px;
        place-items: center;
        color: var(--white);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, .62);
        border-radius: 8px;
        font-size: 21px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 13px);
        right: 0;
        left: 0;
        display: none;
        min-height: 0;
        padding: 9px;
        gap: 0;
        border-radius: 13px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 11px 14px;
        font-size: 12px;
        text-align: center;
    }

    .header-actions {
        display: flex;
        width: auto;
        align-items: center;
        gap: 10px;
    }

    .btn-header {
        width: auto;
        min-height: 34px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .login-link,
    .language-link {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: 0;
        padding: 38px 0 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        padding: 0;
    }

    /* Empilhado: a arte só precisa centralizar. Como a composição é toda em %,
       ela encolhe sozinha — não há mais posição em pixel para recalcular aqui. */
    .hero-visual {
        justify-self: center;
        margin-top: 10px;
    }

    .benefit-items {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 32px;
        padding: 0 22px;
        scrollbar-width: none;
    }

    .benefit-items::-webkit-scrollbar {
        display: none;
    }

    .benefit-items a:not(:last-child)::after {
        display: none;
    }

    .plans-grid,
    .annual-grid,
    .numbers-grid,
    .certificate-grid {
        gap: 13px;
    }

    .plan-card {
        min-height: 390px;
        padding: 20px 17px;
    }

    .app-grid {
        width: min(720px, 100%);
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .app-visual {
        width: min(580px, 100%);
        min-height: 450px;
        margin-inline: auto;
    }

    .app-copy {
        width: min(580px, 100%);
        margin-inline: auto;
    }

    .story-grid,
    .media-grid,
    .barcode-grid,
    .testimonial-top,
    .testimonial-bottom,
    .partner-card,
    .faq-grid {
        width: min(720px, 100%);
    }

    .partner-card {
        grid-template-columns: 160px 1fr;
    }

    .partner-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .container {
        width: min(var(--container), calc(100% - 30px));
    }

    .header-inner,
    .hero-grid,
    .benefit-items {
        width: min(1170px, calc(100% - 30px));
    }

    .hero::before {
        top: -235px;
        left: -205px;
        width: 630px;
        height: 630px;
    }

    .hero::after {
        right: -330px;
        bottom: -420px;
        width: 650px;
        height: 650px;
    }

    .hero h1 {
        margin-bottom: 18px;
        font-size: clamp(42px, 12vw, 50px);
        line-height: 1.16;
    }

    html[lang="en"] .hero h1 {
        font-size: clamp(37px, 10.2vw, 43px);
    }

    .hero-lead {
        font-size: 19px;
        line-height: 1.35;
    }

    .hero-lead br {
        display: none;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.42;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 25px;
    }

    .hero-actions .btn {
        min-width: 0;
        flex: 1 1 145px;
        padding-inline: 14px;
        font-size: 11px;
    }

    /* No celular só o raio precisa acompanhar a escala; o resto é proporcional. */
    .hero-blue-panel {
        border-radius: 30px;
    }

    .section-title {
        font-size: 29px;
        line-height: 1.3;
    }

    .feature-section .section-title,
    .numbers-section .section-title,
    .faq-section .section-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .certificates-section .section-title,
    .testimonials-section .section-title {
        font-size: 30px;
    }

    .feature-section,
    .pricing-section,
    .certificates-section,
    .numbers-section,
    .app-section,
    .barcode-section,
    .testimonials-section,
    .partner-section,
    .faq-section {
        padding-block: 37px;
    }

    .carousel-button {
        top: auto;
        bottom: -2px;
        width: 29px;
        height: 29px;
        transform: none;
    }

    .carousel-prev { left: 28%; }
    .carousel-next { right: 28%; }
    .carousel-dots { margin-top: 18px; }

    .plans-grid,
    .annual-grid,
    .certificate-grid,
    .numbers-grid,
    .testimonial-bottom,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        width: min(360px, 100%);
    }

    .plan-card {
        min-height: 0;
    }

    .annual-grid,
    .numbers-grid,
    .certificate-grid {
        width: min(370px, 100%);
    }

    .certificate-highlight {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* No celular a arte SAI do posicionamento absoluto e volta para o fluxo:
       badges em cima, notebook embaixo, empilhados.

       ⚠️ O QUE QUEBRAVA: a imagem é position:absolute com bottom:2px e
       width:78%. Em 305px de largura isso dá 238px de largura e, com a arte
       sendo 510x452, 211px de ALTURA — dentro de um bloco de 195px que ainda
       tem 68px de badges no topo. A imagem começava 18px ACIMA do topo do
       bloco e, como elemento posicionado pinta por cima de elemento estático,
       o notebook cobria o texto "e-CNPJ / Pessoa jurídica".

       O 'order' inverte na tela sem mexer no HTML: lá o <img> vem antes dos
       badges, porque no desktop ele fica ancorado ao rodapé do bloco. */
    .certificate-image {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .certificate-image img {
        position: static;
        width: min(260px, 82%);
        max-height: none;
        order: 2;
    }

    .certificate-badges {
        order: 1;
    }

    .numbers-grid article {
        min-height: 116px;
    }

    .app-grid,
    .story-grid,
    .media-grid,
    .barcode-grid,
    .testimonial-top {
        grid-template-columns: 1fr;
    }

    .app-grid {
        gap: 27px;
    }

    .app-visual {
        min-height: 340px;
        overflow: hidden;
    }

    .app-swoosh {
        top: 30px;
        right: 0;
        width: min(330px, 94%);
        height: 245px;
        border-width: 25px;
    }

    .app-main-image {
        right: 0;
        bottom: -5px;
        width: min(390px, 105%);
    }

    .app-chip {
        padding: 9px 12px;
        border-radius: 13px;
        font-size: 12px;
    }

    .app-chip small {
        font-size: 8px;
    }

    .app-chip-left {
        bottom: 22px;
        left: 0;
    }

    .app-chip-right {
        bottom: 22px;
        left: 115px;
    }

    .app-copy h2 {
        font-size: 30px;
    }

    .app-copy p {
        font-size: 14px;
    }

    .app-copy .app-numbers-text {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .app-downloads {
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
    }

    .app-copy .btn {
        min-height: 41px;
        padding-inline: 14px;
        font-size: 10px;
    }

    .store-links {
        gap: 7px;
        margin-top: 10px;
    }

    .store-links img {
        height: 30px;
    }

    .app-qr {
        width: 82px;
    }

    .story-section {
        padding-top: 37px;
    }

    .story-card {
        min-height: 250px;
        padding: 29px 25px;
    }

    .story-card h2 {
        font-size: 26px;
    }

    .story-card p {
        font-size: 12px;
    }

    .story-visual {
        min-height: 260px;
    }

    .startup-logo {
        right: 25px;
        bottom: 20px;
        left: 25px;
        width: calc(100% - 50px);
        max-height: 98px;
    }

    .people-stack {
        top: 24px;
    }

    .story-arrow {
        top: 43px;
        right: 29px;
        font-size: 38px;
    }

    .barcode-grid {
        width: min(370px, 100%);
    }

    .video-frame {
        min-height: 224px;
    }

    .testimonial-top {
        width: min(370px, 100%);
    }

    .testimonial-video {
        min-height: 224px;
    }

    .partner-card {
        width: min(370px, 100%);
        grid-template-columns: 1fr;
    }

    .partner-visual {
        min-height: 210px;
    }

    .partner-visual img {
        left: 50%;
        width: 270px;
        transform: translateX(-50%);
    }

    .partner-copy {
        padding-bottom: 10px;
    }

    .partner-form {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .header-actions .btn-header {
        max-width: 126px;
    }

    .input-action {
        grid-template-columns: 1fr;
    }

    .input-action button {
        width: 100%;
    }
}

/* ==========================================================================
   Ajustes de fidelidade ao site online (easygestor.com.br)
   Valores medidos no DOM do site publicado.
   ========================================================================== */

/* --- Barra escura de soluções: dois itens são texto puro e as cores alternam --- */
.benefit-items span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.benefit-items .is-azul {
    color: #1983ff;
}

.benefit-items .is-branco {
    color: #fff;
}

/* --- Carrossel: no online ocupa 1157px, imagem inteira e setas por dentro --- */
.feature-carousel {
    width: min(1157px, 100%);
    margin: 10px auto 0;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: contain;
}

.carousel-button {
    width: 33px;
    height: 42px;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.carousel-prev {
    left: 0;
    border-radius: 0 6px 6px 0;
}

.carousel-next {
    right: 0;
    border-radius: 6px 0 0 6px;
}

.feature-section .section-title {
    width: min(1157px, 100%);
    margin-inline: auto;
    padding-left: 110px;
    text-align: left;
}

/* --- Planos --- */
.plan-card-free h3 {
    color: #f00000;
    font-size: 16px;
}

.plan-card-emphasis .plan-kicker {
    color: var(--ink);
    background: #eec307;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

/* --- Certificados: o online codifica PF em azul e PJ em âmbar --- */
.certificates-section,
.certificate-info-section {
    background: #ededed;
}

.certificate-info-section {
    padding: 0 0 60px;
}

.certificate-card h3 {
    color: #001c56;
    font-size: 28px;
    line-height: 1.15;
}

.certificate-card p {
    min-height: auto;
    margin: 0 0 18px;
    color: #91999d;
    font-size: 17px;
    font-weight: 700;
}

.certificate-card .is-pf {
    color: #1b5ee8;
}

.certificate-card .is-pj {
    color: #f5a811;
}

.certificate-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 10px 24px;
    color: #fff;
    background: #464646;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.certificate-card a:hover {
    background: #2e2e2e;
}

/* --- Bloco "Mais informações sobre Certificados" --- */
.certificate-badges {
    display: flex;
    gap: 26px;
    padding: 14px 26px;
    background: #000b4b;
    border-radius: 30px;
}

.certificate-badges div {
    display: grid;
    justify-items: center;
}

.certificate-badges strong {
    color: #ffdd33;
    font-size: 25px;
    line-height: 1.1;
}

.certificate-badges small {
    color: #fff;
    font-size: 11px;
}

.certificate-info-copy h2 {
    margin: 0 0 22px;
    color: #002e8e;
    font-size: 39px;
    line-height: 1.2;
}

.certificate-info-copy h2 span {
    color: #001446;
}

.certificate-info-group {
    margin-bottom: 14px;
}

.certificate-info-group h3 {
    margin: 0 0 4px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
}

.certificate-info-group ul {
    margin: 0;
    padding-left: 19px;
    color: #000;
    font-size: 13px;
    line-height: 1.55;
}

.certificate-info-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 59px;
    margin-top: 10px;
    padding: 12px 30px;
    color: #fff;
    background: #002e8e;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 700;
}

.certificate-info-cta:hover {
    background: #001f66;
}

/* --- Números: fundo branco e um par de cores por card --- */
.numbers-section {
    background: #fff;
}

.numbers-grid article {
    background: #000b4b;
}

.numbers-grid article:nth-child(1) strong,
.numbers-grid article:nth-child(1) span {
    color: #0075ff;
}

.numbers-grid article:nth-child(2) {
    background: #373737;
}

.numbers-grid article:nth-child(2) strong,
.numbers-grid article:nth-child(2) span {
    color: #91999d;
}

.numbers-grid article:nth-child(3) {
    background: #1041d6;
}

.numbers-grid article:nth-child(3) strong,
.numbers-grid article:nth-child(3) span {
    color: #fff;
}

.numbers-grid a {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    margin-top: 22px;
    padding: 10px 22px;
    color: #fff;
    background: #464646;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.numbers-grid article:nth-child(2) a {
    background: #102fd6;
}

/* --- App, depoimentos, código de barras e parceria: fundos lisos como no online --- */
.app-section {
    background: #ededed;
}

.testimonials-section {
    background: #ededed;
}

.barcode-section {
    background: #fff;
}

.partner-section {
    background: #fafafa;
}

.barcode-cta {
    text-transform: uppercase;
}

/* --- Selo do bloco Startup Summit --- */
.story-tag {
    position: absolute;
    right: 24px;
    bottom: 26px;
    padding: 6px 14px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: .02em;
}

/* --- Aviso de imagens geradas por IA nos depoimentos --- */
.testimonials-note {
    margin: 22px 0 0;
    color: #6a7382;
    font-size: 11px;
    text-align: center;
}

/* --- Botão flutuante do WhatsApp --- */
.wpp-float-btn {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    font-size: 31px;
    transition: transform .2s ease;
}

.wpp-float-btn:hover {
    transform: scale(1.06);
}

/* --- Banner de cookies --- */
.cookie-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 96px 14px 22px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 -4px 18px rgba(0, 20, 66, .14);
}

.cookie-bar p {
    margin: 0;
    font-size: 13px;
}

.cookie-bar button {
    padding: 9px 22px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

/* --- Popup de contato --- */
.contact-popup {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
}

.contact-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 11, 75, .55);
}

.contact-popup-box {
    position: relative;
    width: min(420px, 100%);
    padding: 34px 30px 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-popup-box h2 {
    margin: 0 0 10px;
    color: var(--heading);
    font-size: 24px;
}

.contact-popup-box p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.contact-popup-box .btn {
    width: 100%;
}

.contact-popup-alt {
    display: block;
    margin-top: 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.contact-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    padding: 6px;
    color: var(--muted);
    background: none;
    border: 0;
    font-size: 16px;
}

body.has-popup {
    overflow: hidden;
}

@media (max-width: 900px) {
    .feature-section .section-title {
        padding-left: 0;
        text-align: center;
    }

    .certificate-info-copy h2 {
        font-size: 28px;
    }

    .certificate-card h3 {
        font-size: 22px;
    }

    .certificate-card p {
        font-size: 15px;
    }
}

/* Bandeira do seletor de idioma: SVG no lugar do emoji, que no Windows
   cai para as letras "US"/"BR" por falta de glifo. */
.flag-icon {
    display: block;
    width: 26px;
    height: auto;
    border-radius: 2px;
    flex: none;
}

@media (max-width: 640px) {
    .carousel-slide img {
        height: 210px;
    }

    /* O card anual passou a ter min-height de desktop; no celular ele empilha
       e a altura fixa deixaria sobra vazia embaixo. */
    .annual-card {
        min-height: 0;
    }

    .cookie-bar {
        flex-direction: column;
        gap: 10px;
        padding: 14px 18px 18px;
        text-align: center;
    }

    .certificate-badges {
        gap: 16px;
        padding: 12px 18px;
    }

    .certificate-info-cta {
        width: 100%;
        font-size: 15px;
    }
}

/* ==========================================================================
   Seção "Ferramentas grátis" (/ferramenta-gratis/)
   Usa os mesmos tokens do site: --blue, --heading, --ink, --yellow.
   ========================================================================== */

.tools-hero {
    padding: 62px 0 46px;
    background: #ededed;
}

.tools-kicker {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tools-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.tools-hero h1 span {
    color: var(--blue);
}

.tools-lead {
    max-width: 620px;
    margin: 0;
    color: #37415a;
    font-size: 17px;
    line-height: 1.5;
}

.tools-lead + .tools-lead {
    margin-top: 22px;
}

.tools-section {
    padding: 54px 0 62px;
    background: var(--white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 24px;
}

.tool-card {
    display: flex;
    padding: 28px 26px 24px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 19px;
    box-shadow: 0 10px 24px rgba(0, 32, 95, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: #b9d5ff;
    box-shadow: 0 18px 34px rgba(0, 32, 95, .14);
}

.tool-card-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(150deg, #0d84ff, #0056d6);
    border-radius: 16px;
    font-size: 27px;
}

.tool-card h2,
.tool-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.28;
}

.tool-card p {
    margin: 0 0 20px;
    color: #5a6480;
    font-size: 14px;
    line-height: 1.5;
}

.tool-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.tool-card:hover .tool-card-link i {
    transform: translateX(3px);
}

.tool-card-link i {
    transition: transform .2s ease;
}

.tools-vazio {
    margin: 0;
    color: var(--muted);
    text-align: center;
}

.tools-cta {
    padding: 0 0 66px;
    background: var(--white);
}

.tools-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 38px;
    background: linear-gradient(140deg, #001a63, #0047c4);
    border-radius: 19px;
}

.tools-cta-inner h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.tools-cta-inner p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    line-height: 1.5;
}

.tools-cta-inner .btn {
    flex: none;
}

/* --- Página de uma ferramenta --- */

.tool-breadcrumb {
    padding: 18px 0;
    background: #ededed;
    font-size: 13px;
}

.tool-breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #5a6480;
}

.tool-breadcrumb a {
    color: var(--heading);
    font-weight: 700;
}

.tool-breadcrumb a:hover {
    text-decoration: underline;
}

.tool-breadcrumb i {
    font-size: 11px;
}

.tool-hero {
    padding: 44px 0 50px;
    background: #ededed;
}

.tool-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: center;
    gap: 34px;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 6px 14px;
    color: var(--blue);
    background: #e2effe;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.tool-hero h1 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.22;
}

.tool-hero-lead {
    max-width: 640px;
    margin: 0 0 26px;
    color: #37415a;
    font-size: 17px;
    line-height: 1.5;
}

.tool-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.tool-hero-icon {
    display: grid;
    width: 180px;
    height: 180px;
    margin-inline: auto;
    place-items: center;
    color: var(--white);
    background: linear-gradient(150deg, #0d84ff, #0038a8);
    border-radius: 34px;
    box-shadow: 0 18px 38px rgba(0, 52, 160, .28);
    font-size: 78px;
}

.tool-body {
    padding: 54px 0 60px;
    background: var(--white);
}

.tool-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 44px;
}

.tool-body-main h2 {
    margin: 0 0 14px;
    color: var(--heading);
    font-size: 24px;
    font-weight: 700;
}

.tool-body-main h2 + h2,
.tool-body-main p + h2 {
    margin-top: 34px;
}

.tool-body-main p {
    margin: 0 0 14px;
    color: #37415a;
    font-size: 16px;
    line-height: 1.62;
}

.tool-recursos {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tool-recursos li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #37415a;
    font-size: 15px;
    line-height: 1.5;
}

.tool-recursos i {
    display: grid;
    width: 22px;
    height: 22px;
    flex: none;
    margin-top: 2px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-size: 12px;
}

.tool-observacao {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 28px !important;
    padding: 14px 17px;
    color: #6b5a12 !important;
    background: #fff8e1;
    border-left: 3px solid var(--yellow);
    border-radius: 9px;
    font-size: 14px !important;
}

.tool-body-side {
    display: grid;
    gap: 18px;
}

.tool-side-card {
    padding: 26px 24px;
    background: #f5f8fd;
    border: 1px solid var(--line);
    border-radius: 17px;
}

.tool-side-card h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
}

.tool-side-card p {
    margin: 0 0 18px;
    color: #5a6480;
    font-size: 14px;
    line-height: 1.5;
}

.tool-side-card .btn {
    width: 100%;
}

.tool-side-card-dark {
    color: var(--white);
    background: linear-gradient(150deg, #001a63, #0047c4);
    border-color: transparent;
}

.tool-side-card-dark h3 {
    color: var(--white);
}

.tool-side-card-dark p {
    color: rgba(255, 255, 255, .82);
}

.tools-outras {
    padding-top: 0;
    background: var(--white);
}

.tools-outras .section-title {
    margin-bottom: 26px;
    text-align: left;
}

@media (max-width: 900px) {
    .tool-hero-grid,
    .tool-body-grid {
        grid-template-columns: 1fr;
    }

    .tool-hero-icon {
        width: 128px;
        height: 128px;
        margin-inline: 0;
        border-radius: 26px;
        font-size: 56px;
    }

    .tools-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .tools-outras .section-title {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .tools-hero {
        padding: 44px 0 34px;
    }

    .tools-section {
        padding: 38px 0 44px;
    }

    .tool-card {
        padding: 24px 20px 22px;
    }
}

.tools-ver-todas {
    margin: 34px 0 0;
    text-align: center;
}

/* O menu ganhou um sexto item (Ferramentas). A pilula de 630px foi desenhada
   para cinco, entao aqui ela passa a acompanhar o conteudo. Escopado acima de
   880px porque abaixo disso o .site-nav vira dropdown e nao pode virar inline. */
@media (min-width: 881px) {
    .header-inner {
        grid-template-columns: 132px minmax(0, 1fr) 198px;
    }

    .site-nav {
        width: fit-content;
        max-width: 100%;
        margin-inline: auto;
        gap: 19px;
        padding-inline: 24px;
    }

    .site-nav a {
        font-size: 15px;
    }
}

/* ==========================================================================
   Área de Educação Empreendedora (/educacao-empreendedora/)
   Reaproveita .tools-grid / .tool-card da seção de ferramentas.
   ========================================================================== */

.edu-hero {
    padding: 62px 0 48px;
    background: linear-gradient(160deg, #001a63, #0047c4);
}

.edu-hero .tools-kicker {
    color: #7db4ff;
}

.edu-hero h1 {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 700;
    line-height: 1.2;
}

.edu-hero h1 span {
    color: var(--yellow);
}

.edu-hero .tools-lead {
    max-width: 660px;
    color: rgba(255, 255, 255, .86);
}

.edu-numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 32px;
}

.edu-numeros div {
    display: grid;
    gap: 2px;
}

.edu-numeros strong {
    color: var(--yellow);
    font-size: 31px;
    font-weight: 700;
    line-height: 1.1;
}

.edu-numeros span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.edu-trilha {
    padding: 44px 0 10px;
    background: var(--white);
}

.edu-trilha:nth-of-type(even) {
    background: #f7f9fc;
}

.edu-trilha-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.edu-trilha-icone {
    display: grid;
    width: 52px;
    height: 52px;
    flex: none;
    place-items: center;
    color: var(--white);
    background: linear-gradient(150deg, #0d84ff, #0038a8);
    border-radius: 15px;
    font-size: 24px;
}

.edu-trilha-head h2 {
    margin: 0 0 3px;
    color: var(--ink);
    font-size: 25px;
    font-weight: 700;
}

.edu-trilha-head p {
    margin: 0;
    color: #5a6480;
    font-size: 14px;
}

.edu-card-meta {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px !important;
    font-size: 12px !important;
}

.edu-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5a6480;
}

.edu-nivel {
    padding: 3px 10px;
    color: var(--blue) !important;
    background: #e2effe;
    border-radius: 100px;
    font-weight: 700;
}

/* --- Player em destaque --- */

.edu-player-section {
    padding: 48px 0 10px;
    background: var(--white);
}

.edu-player-section .section-title,
.edu-aulas .section-title {
    margin-bottom: 20px;
    text-align: left;
}

.edu-player {
    position: relative;
    width: min(860px, 100%);
    margin-inline: auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000b4b;
    border-radius: 17px;
    box-shadow: 0 16px 34px rgba(0, 32, 95, .2);
}

.edu-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.edu-player-titulo {
    width: min(860px, 100%);
    margin: 14px auto 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

/* --- Lista de aulas --- */

.edu-aulas {
    padding: 46px 0 60px;
    background: var(--white);
}

.edu-lista {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: aula;
}

.edu-lista a {
    display: grid;
    grid-template-columns: 34px 160px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.edu-lista a:hover {
    transform: translateY(-2px);
    border-color: #b9d5ff;
    box-shadow: 0 12px 24px rgba(0, 32, 95, .1);
}

.edu-lista-num {
    color: #98a2b8;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.edu-lista-thumb {
    width: 160px;
    height: 90px;
    object-fit: cover;
    border-radius: 9px;
    background: #eef2f8;
}

.edu-lista-texto {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.edu-lista-texto strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.edu-lista-texto small {
    color: #7a849b;
    font-size: 12px;
}

.edu-lista-play {
    color: var(--blue);
    font-size: 25px;
    text-align: center;
}

@media (max-width: 700px) {
    .edu-lista a {
        grid-template-columns: 26px 108px minmax(0, 1fr);
        gap: 11px;
        padding: 10px 12px;
    }

    .edu-lista-thumb {
        width: 108px;
        height: 61px;
    }

    .edu-lista-texto strong {
        font-size: 14px;
    }

    .edu-lista-play {
        display: none;
    }

    .edu-numeros {
        gap: 24px;
    }

    .edu-numeros strong {
        font-size: 25px;
    }

    .edu-trilha-head {
        align-items: flex-start;
    }
}

/* O menu chegou a 7 itens (Ferramentas + Educacao). A faixa do cabecalho
   ganha folga e os itens ficam um pouco mais compactos, para tudo caber
   sem quebrar linha nem colidir com o botao amarelo. */
@media (min-width: 881px) {
    .header-inner {
        width: min(1180px, calc(100% - 40px));
        grid-template-columns: 124px minmax(0, 1fr) 190px;
    }

    .site-nav {
        gap: 15px;
        padding-inline: 20px;
    }

    .site-nav a {
        font-size: 14px;
    }
}

/* ==========================================================================
   Páginas de público (/para/{slug})
   Reaproveita .tool-card, .tools-grid, .tool-recursos e .faq-item.
   ========================================================================== */

.pub-hero {
    padding: 44px 0 52px;
    background: linear-gradient(160deg, #eef4ff, #dfeaff);
}

.pub-hero h1 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(28px, 3.3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
}

.pub-resumo {
    padding: 40px 0 6px;
    background: var(--white);
}

.pub-resumo p {
    width: min(820px, 100%);
    margin: 0 auto;
    color: #37415a;
    font-size: 19px;
    line-height: 1.6;
    text-align: center;
}

.pub-dores {
    padding: 46px 0 52px;
    background: var(--white);
}

.pub-dores-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 13px;
    width: min(940px, 100%);
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.pub-dores-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    color: #37415a;
    background: #fff5f5;
    border: 1px solid #ffd9d9;
    border-radius: 13px;
    font-size: 15px;
    line-height: 1.45;
}

.pub-dores-lista i {
    display: grid;
    width: 21px;
    height: 21px;
    flex: none;
    margin-top: 2px;
    place-items: center;
    color: var(--white);
    background: #e2464f;
    border-radius: 50%;
    font-size: 10px;
}

.pub-solucoes {
    padding: 52px 0 58px;
    background: #f7f9fc;
}

.pub-recursos {
    padding: 54px 0 58px;
    background: var(--white);
}

.pub-recursos-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 44px;
}

.pub-recursos-grid h2 {
    margin: 0 0 20px;
    color: var(--heading);
    font-size: 26px;
    font-weight: 700;
}

.pub-recursos-grid .tool-side-card .btn {
    width: 100%;
}

.pub-conteudo,
.pub-ferramentas {
    padding: 50px 0 56px;
    background: #f7f9fc;
}

.pub-ferramentas {
    background: var(--white);
}

.pub-conteudo .section-title,
.pub-ferramentas .section-title,
.pub-solucoes .section-title,
.pub-dores .section-title,
.pub-faq .section-title {
    text-align: center;
}

.pub-conteudo .section-subtitle {
    margin-bottom: 26px;
    text-align: center;
}

.pub-faq {
    padding: 52px 0 58px;
    background: #f7f9fc;
}

.pub-faq-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 0 34px;
    width: min(1000px, 100%);
    margin: 0 auto;
}

/* Bloco de públicos na home */
.home-publicos {
    padding: 54px 0 60px;
    background: #f7f9fc;
}

.home-publicos .section-subtitle {
    margin-bottom: 28px;
    text-align: center;
}

@media (max-width: 900px) {
    .pub-recursos-grid {
        grid-template-columns: 1fr;
    }

    .pub-resumo p {
        font-size: 17px;
        text-align: left;
    }
}

/* Faixa de publicos no rodape: ajuda o Google a achar as paginas de /para/
   sem precisar de mais um item no menu, que ja esta cheio com 7. */
.footer-publicos {
    padding: 18px 0;
    background: #f0f3f8;
    border-top: 1px solid #e4e8ef;
}

.footer-publicos .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
}

.footer-publicos span {
    color: #7a849b;
    font-weight: 700;
}

.footer-publicos a {
    color: var(--heading);
    font-weight: 700;
}

.footer-publicos a:hover {
    text-decoration: underline;
}

.footer-publicos-todos {
    color: var(--blue) !important;
}

/* ==========================================================================
   Índice agrupado de segmentos e página de segmento
   ========================================================================== */

.indice-numeros {
    margin-top: 28px;
}

.indice-numeros strong {
    color: var(--blue);
}

.indice-numeros span {
    color: #5a6480;
}

.seg-indice {
    padding: 54px 0 62px;
    background: #f7f9fc;
}

.seg-indice .section-title,
.seg-indice .section-subtitle {
    text-align: center;
}

.seg-indice .section-title span {
    color: var(--blue);
}

.seg-indice .section-subtitle {
    margin-bottom: 34px;
}

.seg-grupos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    align-items: start;
}

.seg-grupo {
    padding: 26px 24px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 8px 20px rgba(0, 32, 95, .05);
}

.seg-grupo h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
}

.seg-grupo-icone {
    display: grid;
    width: 36px;
    height: 36px;
    flex: none;
    place-items: center;
    color: var(--white);
    background: linear-gradient(150deg, #0d84ff, #0038a8);
    border-radius: 11px;
    font-size: 17px;
}

.seg-grupo-desc {
    margin: 0 0 16px;
    color: #7a849b;
    font-size: 13px;
    line-height: 1.45;
}

.seg-grupo ul {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seg-grupo li a {
    display: block;
    padding: 7px 10px;
    margin-inline: -10px;
    color: var(--heading);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s ease, color .15s ease;
}

.seg-grupo li a:hover {
    color: var(--blue);
    background: #eef5ff;
}

/* --- Página do segmento --- */

.seg-atributos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.seg-atributos span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    color: var(--heading);
    background: rgba(255, 255, 255, .72);
    border: 1px solid #cfe0fb;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.seg-corpo {
    padding: 52px 0 58px;
    background: var(--white);
}

.seg-corpo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 44px;
}

.seg-corpo-grid h2 {
    margin: 0 0 18px;
    color: var(--heading);
    font-size: 25px;
    font-weight: 700;
}

.seg-corpo-grid h2 + * + h2,
.seg-corpo-grid ul + h2 {
    margin-top: 38px;
}

.seg-dores {
    grid-template-columns: 1fr;
    width: 100%;
}

@media (max-width: 900px) {
    .seg-corpo-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Área de Recursos (/recursos/)
   Reaproveita .tools-grid, .tool-card, .tool-recursos e .edu-trilha-head.
   ========================================================================== */

.rec-hero {
    padding: 62px 0 48px;
    background: linear-gradient(160deg, #002a86, #0064e6);
}

.rec-hero .tools-kicker {
    color: #9ec8ff;
}

.rec-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 700;
    line-height: 1.2;
}

.rec-hero h1 span {
    color: var(--yellow);
}

.rec-hero .tools-lead {
    max-width: 640px;
    color: rgba(255, 255, 255, .87);
}

.rec-numeros strong {
    color: var(--yellow);
}

.rec-numeros span {
    color: rgba(255, 255, 255, .78);
}

.rec-grupo {
    padding: 44px 0 12px;
    background: var(--white);
}

.rec-grupo:nth-of-type(even) {
    background: #f7f9fc;
}

.rec-tem-ressalva {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin: -8px 0 16px !important;
    color: #96751a !important;
    font-size: 12px !important;
}

/* --- Página de um recurso --- */

.rec-detalhe-hero {
    padding: 44px 0 52px;
    background: linear-gradient(160deg, #eef4ff, #dce8ff);
}

.rec-detalhe-hero h1 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(27px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.22;
}

.rec-corpo {
    padding: 54px 0 58px;
    background: var(--white);
}

.rec-corpo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 44px;
}

.rec-corpo-main h2 {
    margin: 0 0 14px;
    color: var(--heading);
    font-size: 25px;
    font-weight: 700;
}

.rec-corpo-main h2 + * + h2,
.rec-corpo-main ol + h2,
.rec-corpo-main ul + h2,
.rec-corpo-main p + h2 {
    margin-top: 38px;
}

.rec-resumo {
    margin: 0;
    color: #37415a;
    font-size: 17px;
    line-height: 1.62;
}

.rec-passos {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: passo;
}

.rec-passos li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    counter-increment: passo;
    color: #37415a;
    font-size: 15px;
    line-height: 1.5;
}

.rec-passos li::before {
    display: grid;
    width: 27px;
    height: 27px;
    flex: none;
    place-items: center;
    content: counter(passo);
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.rec-ressalva {
    align-items: flex-start;
    background: #fff4e5 !important;
    border-left-color: #f0a500 !important;
}

.rec-inclui ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rec-inclui li {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: #37415a;
    font-size: 14px;
    line-height: 1.45;
}

.rec-inclui li i {
    flex: none;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.2;
}

/* Bloco de recursos na home */
.home-recursos {
    padding: 54px 0 58px;
    background: var(--white);
}

.home-recursos .section-subtitle {
    margin-bottom: 28px;
    text-align: center;
}

@media (max-width: 900px) {
    .rec-corpo-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Página longa da Reforma Tributária (/recursos/reforma-tributaria)
   Otimizada para LEITURA: medida de linha curta, hierarquia clara,
   índice fixo na lateral e blocos que quebram o texto corrido.
   ========================================================================== */

.rt-hero {
    padding: 64px 0 52px;
    background: linear-gradient(155deg, #001a63 0%, #0047c4 55%, #0069e0 100%);
}

.rt-hero .tools-kicker {
    color: #9ec8ff;
}

.rt-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(31px, 4.2vw, 50px);
    font-weight: 700;
    line-height: 1.16;
}

.rt-hero h1 span {
    color: var(--yellow);
}

.rt-lead {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.6;
}

.rt-selos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.rt-selos span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.rt-atualizado {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

/* --- Resumo em destaque --- */

.rt-resumo {
    padding: 0;
    background: linear-gradient(180deg, #0069e0 0 60px, var(--white) 60px);
}

.rt-resumo-caixa {
    padding: 30px 34px 32px;
    background: var(--white);
    border: 1px solid #cfe0fb;
    border-radius: 19px;
    box-shadow: 0 18px 38px rgba(0, 32, 95, .13);
}

.rt-resumo-caixa h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--heading);
    font-size: 21px;
    font-weight: 700;
}

.rt-resumo-caixa h2 i {
    color: var(--yellow);
}

.rt-resumo-caixa ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: #37415a;
    font-size: 16px;
    line-height: 1.6;
}

.rt-resumo-caixa li::marker {
    color: var(--blue);
}

/* --- Layout de duas colunas com índice fixo --- */

.rt-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 52px;
    padding-block: 56px 24px;
}

.rt-indice {
    position: sticky;
    top: 24px;
    padding: 22px 20px;
    background: #f5f8fd;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.rt-indice-titulo {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rt-indice ol {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: idx;
}

.rt-indice li {
    counter-increment: idx;
}

.rt-indice a {
    display: block;
    padding: 7px 9px;
    margin-inline: -9px;
    color: #46506b;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.35;
    transition: background .15s ease, color .15s ease;
}

.rt-indice a::before {
    margin-right: 7px;
    content: counter(idx) ".";
    color: var(--blue);
    font-weight: 700;
}

.rt-indice a:hover {
    color: var(--blue);
    background: #e6f0ff;
}

/* --- Corpo do texto --- */

.rt-corpo {
    max-width: 760px;
}

.rt-secao {
    padding-bottom: 46px;
    scroll-margin-top: 22px;
}

.rt-secao + .rt-secao {
    border-top: 1px solid var(--line);
    padding-top: 46px;
}

.rt-corpo h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(25px, 2.6vw, 31px);
    font-weight: 700;
    line-height: 1.25;
}

.rt-corpo h3 {
    margin: 34px 0 12px;
    color: var(--heading);
    font-size: 20px;
    font-weight: 700;
}

.rt-corpo p {
    margin: 0 0 17px;
    color: #37415a;
    font-size: 17px;
    line-height: 1.72;
}

.rt-linha-fina {
    margin: 0 0 24px !important;
    color: #7a849b !important;
    font-size: 15px !important;
    font-style: italic;
}

.rt-lista {
    display: grid;
    gap: 11px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.rt-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #37415a;
    font-size: 16px;
    line-height: 1.6;
}

.rt-lista i {
    display: grid;
    width: 22px;
    height: 22px;
    flex: none;
    margin-top: 3px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    font-size: 12px;
}

/* --- Callouts --- */

.rt-destaque {
    margin: 0 0 24px;
    padding: 20px 22px;
    background: #eef5ff;
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
}

.rt-destaque strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 16px;
}

.rt-destaque p {
    margin: 0 !important;
    font-size: 16px !important;
}

.rt-destaque.atencao {
    background: #fff6e5;
    border-left-color: #f0a500;
}

.rt-destaque.atencao strong {
    color: #7a5800;
}

.rt-destaque.easygestor {
    background: #eafaf0;
    border-left-color: #17a34a;
}

.rt-destaque.easygestor strong {
    color: #0f6b31;
}

/* --- Tabela --- */

.rt-tabela-wrap {
    margin: 0 0 26px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.rt-tabela {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.rt-tabela th {
    padding: 13px 16px;
    color: var(--white);
    background: var(--ink);
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.rt-tabela td {
    padding: 13px 16px;
    color: #37415a;
    border-top: 1px solid var(--line);
    line-height: 1.5;
    vertical-align: top;
}

.rt-tabela tbody tr:nth-child(even) {
    background: #f7f9fc;
}

/* --- Linha do tempo --- */

.rt-timeline {
    display: grid;
    gap: 0;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.rt-timeline li {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
    padding: 0 0 26px 0;
    position: relative;
}

.rt-timeline li::before {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 36px;
    width: 2px;
    content: "";
    background: var(--line);
}

.rt-timeline li:last-child::before {
    display: none;
}

.rt-ano {
    display: grid;
    width: 74px;
    height: 30px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.rt-timeline strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 17px;
}

.rt-timeline p {
    margin: 0 !important;
    font-size: 16px !important;
}

/* estados: o que já passou fica apagado, o ano corrente fica em destaque */
.rt-timeline-passado .rt-ano {
    color: #6b7488;
    background: #e4e8ef;
}

.rt-timeline-passado strong,
.rt-timeline-passado p {
    color: #7a849b !important;
}

.rt-timeline-agora .rt-ano {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255, 209, 43, .3);
}

/* --- FAQ e glossário --- */

.rt-faq .faq-item {
    border-bottom: 1px solid var(--line);
}

.rt-glossario {
    display: grid;
    gap: 0;
    margin: 0;
}

.rt-glossario dt {
    padding: 14px 0 5px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 16px;
    font-weight: 700;
}

.rt-glossario dt:first-child {
    border-top: 0;
    padding-top: 0;
}

.rt-glossario dd {
    margin: 0 0 12px;
    color: #37415a;
    font-size: 16px;
    line-height: 1.6;
}

.rt-fontes-lista {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
}

.rt-fontes-lista a {
    color: var(--blue);
    font-weight: 600;
}

.rt-fontes-lista a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .rt-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rt-indice {
        position: static;
    }

    .rt-corpo {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .rt-hero {
        padding: 44px 0 38px;
    }

    .rt-resumo-caixa {
        padding: 24px 20px 26px;
    }

    .rt-corpo p,
    .rt-lista li {
        font-size: 16px;
    }

    .rt-timeline li {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 14px;
    }

    .rt-ano {
        width: 62px;
        font-size: 13px;
    }

    .rt-timeline li::before {
        left: 30px;
    }
}

/* Correcao: no mobile o grid virava "1fr", que nao encolhe abaixo do conteudo
   minimo — a tabela empurrava .rt-corpo para 384px dentro de um container de
   360px, e o overflow-x:hidden do site CORTAVA o texto na borda direita.
   minmax(0, 1fr) permite a coluna encolher e devolve a tabela para o seu
   proprio scroll horizontal. */
@media (max-width: 980px) {
    .rt-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rt-corpo {
        min-width: 0;
    }
}

/* --------------------------------------------------------------------------
   Formulário de suporte do hero, agora com WhatsApp + e-mail.

   O .input-action original é "1fr auto" — um campo e um botão. Com dois
   campos nessa mesma grade, o e-mail espremia até virar ilegível. Aqui a
   grade passa a ter as duas colunas de texto explícitas, e abaixo de 560px
   empilha: dois campos em cima, botão em linha própria.
   -------------------------------------------------------------------------- */

.input-action-duplo {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

/* Confirmação do envio (modal). Reaproveita .contact-popup; só o
   selo verde e o botão de fechar são próprios daqui. */
.suporte-popup-icone {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    place-items: center;
    color: var(--white);
    background: #17a34a;
    border-radius: 50%;
    font-size: 22px;
}

.contact-popup-box .contact-popup-alt {
    background: none;
    border: 0;
    cursor: pointer;
}

@media (max-width: 560px) {
    .input-action-duplo {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .input-action-duplo button {
        min-height: 38px;
    }
}
