﻿/* win44 — consolidated stylesheet (used classes only) */

/* ========== Tokens ========== */
:root {
    /* Brazilian flag-inspired palette */
    --bg-0: #06140c;
    --bg-1: #0a1f12;
    --bg-2: #0f2a1a;
    --text: #f4f7f2;
    --text-muted: #a8b8a8;
    --text-soft: #b5c4b3;
    --line: rgba(255, 223, 0, 0.16);
    --line-soft: rgba(255, 255, 255, 0.1);
    --rail: rgba(0, 156, 59, 0.08);
    --gold: #ffdf00;
    --orange: #f4c430;
    --blue: #3d5afe;
    --flag-blue: #002776;
    --green: #009c3b;
    --green-bright: #00c853;
    --warn: #ffb300;
    --content-max: 1200px;
    --pad-x: 20px;
    --header-h: 85px;
    --radius-pill: 25px;
    --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* ========== Reset & base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: var(--font);
    background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 25%, var(--bg-2) 50%, var(--bg-1) 75%, var(--bg-0) 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 156, 59, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(255, 223, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 39, 118, 0.14) 0%, transparent 58%);
}

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

a {
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ========== Layout rail (header + body share this width) ========== */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    position: relative;
    z-index: 1;
}

.main {
    margin-top: var(--header-h);
    position: relative;
    z-index: 1;
}

/* Blocks inside .container never exceed the header rail */
.main > .container > .hero,
.main > .container > .section,
.main > .container > .cta-section,
.main > .container > .welcome-box {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* ========== Header / nav ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(6, 20, 12, 0.98), rgba(10, 31, 18, 0.98));
    border-bottom: 1px solid rgba(0, 156, 59, 0.35);
    box-shadow: 0 4px 20px rgba(0, 156, 59, 0.18);
    backdrop-filter: blur(15px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 12px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--flag-blue));
    box-shadow: 0 0 0 2px var(--gold);
}

.logo-circle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links-extended {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.nav-links-extended a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links-extended a:hover,
.nav-links-extended a.current {
    color: var(--gold);
    background: rgba(0, 156, 59, 0.22);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--gold);
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .menu-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    width: 22px;
}

.mobile-menu-toggle .menu-bars span {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: var(--gold);
    transition: width 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Top long, middle mid, bottom short */
.mobile-menu-toggle .menu-bars span:nth-child(1) {
    width: 100%;
}

.mobile-menu-toggle .menu-bars span:nth-child(2) {
    width: 72%;
}

.mobile-menu-toggle .menu-bars span:nth-child(3) {
    width: 48%;
}

.mobile-menu-toggle.is-open .menu-bars {
    gap: 0;
    position: relative;
    height: 18px;
}

.mobile-menu-toggle.is-open .menu-bars span {
    position: absolute;
    left: 0;
    width: 100%;
}

.mobile-menu-toggle.is-open .menu-bars span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-open .menu-bars span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open .menu-bars span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-actions .btn,
.nav > div:last-child > .btn {
    text-transform: none;
    letter-spacing: 0.02em;
}

.nav-mobile-cta {
    display: none;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    color: #06140c;
    background: linear-gradient(135deg, var(--gold), #e6c200);
    box-shadow: 0 4px 15px rgba(255, 223, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 223, 0, 0.4);
}

.btn-green {
    color: #fff;
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.35);
}

.btn-green:hover {
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: none;
    color: var(--text);
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-hero.btn-primary {
    background: var(--gold);
    color: var(--bg-0);
    border-color: var(--gold);
}

.btn-hero.btn-primary:hover {
    background: #fff59d;
    border-color: #fff59d;
    color: var(--bg-0);
}

.btn-hero.btn-secondary {
    background: rgba(0, 156, 59, 0.2);
    border-color: rgba(0, 156, 59, 0.55);
    color: #d7ffe6;
}

.btn-hero.btn-warning {
    background: rgba(0, 39, 118, 0.35);
    border-color: rgba(61, 90, 254, 0.55);
    color: #dce4ff;
}

.btn-hero:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== Hero ========== */
.hero {
    margin: 24px 0 0;
    border: 1px solid var(--line);
    overflow: hidden;
    text-align: left;
}

.hero-copy {
    padding: 40px 28px 32px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(2.2em, 5vw, 3.2em);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero-description {
    margin: 0 0 28px;
}

.hero-description p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98em;
    line-height: 1.75;
    text-align: left;
}

.hero-description strong {
    color: var(--text);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-buttons .btn-hero {
    flex: 1 1 auto;
    min-width: 180px;
}

.hero-banner {
    border-top: 1px solid var(--line);
    line-height: 0;
}

.banner-image {
    width: 100%;
    border: none;
}

/* ========== Sections ========== */
.section {
    margin: 64px 0;
}

.section-title {
    margin: 0 0 16px;
    font-size: 2em;
    font-weight: 700;
    color: var(--text);
    text-align: left;
}

.section > p {
    color: var(--text-muted);
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 28px;
}

.section-intro {
    margin-bottom: 28px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    background: rgba(0, 156, 59, 0.08);
}

.section-intro p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.98em;
}

.section-intro p:last-child {
    margin-bottom: 0;
}

.section-intro strong {
    color: #fff;
}

.figure-container {
    margin: 28px 0;
    text-align: left;
}

.figure-image {
    width: 100%;
    border: 1px solid var(--line);
}

.figure-caption {
    margin-top: 10px;
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    line-height: 1.6;
}

/* Inline centered image wrappers used in HTML */
.section > div[style*="text-align: center"],
.section > div[style*="text-align:center"] {
    width: 100%;
    max-width: 100%;
    margin: 28px 0 !important;
    text-align: left !important;
}

.section > div[style*="text-align"] img,
.section img:not(.figure-image) {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

/* ========== Welcome box ========== */
.welcome-box {
    margin: 0;
    border: none;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.4fr);
    grid-template-areas:
        "title title"
        "figure list"
        "notice notice";
    overflow: hidden;
}

.welcome-box h3 {
    grid-area: title;
    margin: 0;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
}

.welcome-box > .figure-container {
    grid-area: figure;
    margin: 0;
    padding: 20px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-box > ul {
    grid-area: list;
    margin: 0;
    padding: 8px 20px 16px;
}

.welcome-box li {
    border-bottom: 1px solid var(--line-soft);
    cursor: pointer;
}

.welcome-box li:last-child {
    border-bottom: none;
}

.welcome-box li strong {
    display: block;
    position: relative;
    padding: 14px 28px 14px 0;
    color: #fff;
    font-weight: 500;
}

.welcome-box li strong::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s ease;
}

.welcome-box li.expanded strong::after {
    transform: translateY(-50%) rotate(180deg);
}

.welcome-box li::after {
    content: attr(data-detail);
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.7;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.welcome-box li.expanded::after {
    max-height: 320px;
    opacity: 1;
    padding: 0 0 16px;
    border-top: 1px solid var(--line-soft);
    margin-top: 0;
    padding-top: 12px;
}

.welcome-box > .help-resources {
    grid-area: notice;
    margin: 0;
    border: none;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 16px 24px;
    background: var(--rail);
}

/* ========== Advantage ========== */
.advantage-grid {
    display: flex;
    flex-direction: column;
    margin: 28px 0;
    border: 1px solid var(--line);
    counter-reset: criterion;
}

.advantage-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.advantage-card:last-child {
    border-bottom: none;
}

.advantage-card::before {
    counter-increment: criterion;
    content: counter(criterion, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 88px;
    padding-top: 28px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    color: rgba(232, 238, 245, 0.55);
    font-size: 1.15em;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.advantage-icon {
    display: none;
}

.advantage-card h3 {
    grid-column: 2;
    margin: 0;
    padding: 24px 28px 8px;
    color: var(--text);
    font-size: 1.05em;
    font-weight: 600;
    text-align: left;
}

.advantage-card > p {
    grid-column: 2;
    margin: 0;
    padding: 0 28px 12px;
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.75;
}

.advantage-list {
    grid-column: 2;
    margin: 0;
    padding: 0 28px 24px;
}

.advantage-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
    font-size: 0.9em;
}

.advantage-list li:last-child {
    border-bottom: none;
}

.advantage-list strong {
    color: #fff;
}

/* ========== RTP table ========== */
.rtp-table {
    border: 1px solid var(--line);
    overflow-x: auto;
}

.rtp-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr;
    gap: 12px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rtp-row:last-child {
    border-bottom: none;
}

.rtp-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.rtp-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
    color: var(--text);
}

.rtp-header:hover {
    background: transparent;
}

.rtp-col {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95em;
}

.rtp-high {
    color: var(--green);
    font-weight: 700;
}

.rtp-medium {
    color: var(--gold);
    font-weight: 700;
}

.research-note {
    margin-top: 24px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-left: 4px solid rgba(255, 255, 255, 0.28);
}

.research-note p {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.research-note li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.7;
}

.research-note li:last-child {
    border-bottom: none;
}

.research-note li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.45);
}

.research-note strong {
    color: #fff;
}

/* ========== PIX ========== */
.pix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0;
}

@media (min-width: 900px) {
    .pix-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border: 1px solid var(--line);
    }

    .pix-grid .pix-card {
        border: none;
        border-right: 1px solid var(--line);
    }

    .pix-grid .pix-card:last-child {
        border-right: none;
    }
}

.pix-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    border: 1px solid var(--line);
    overflow: hidden;
}

.pix-icon {
    grid-column: 1;
    grid-row: 1 / span 20;
    margin: 0;
    padding: 28px 0 0;
    border-right: 1px solid var(--line);
    background: var(--rail);
    text-align: center;
    font-size: 1.5em;
}

.pix-card h3,
.pix-card .pix-feature,
.pix-card .pix-steps,
.pix-card > .btn,
.pix-card > a.btn {
    grid-column: 2;
    margin-left: 24px;
    margin-right: 24px;
}

.pix-card h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.15em;
    font-weight: 600;
    text-align: left;
}

.pix-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pix-label {
    color: var(--text-muted);
    font-size: 0.9em;
}

.pix-value {
    color: #fff;
    font-weight: 600;
}

.pix-value.highlight {
    color: var(--green);
    font-weight: 700;
}

.pix-steps {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pix-steps h4 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.05em;
    font-weight: 600;
}

.pix-steps ol {
    list-style: decimal;
    padding-left: 20px;
    color: var(--text-muted);
}

.pix-steps li {
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.6;
}

.pix-card > .btn,
.pix-card > a.btn {
    width: calc(100% - 48px);
    margin-top: 16px;
    margin-bottom: 24px;
}

.pix-info-box {
    margin-top: 12px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.pix-info-box h4 {
    margin: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 1.05em;
    font-weight: 600;
}

.pix-info-box p {
    margin: 0;
    padding: 18px 24px 22px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== App ========== */
.app-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 16px;
    align-items: start;
    margin: 28px 0;
}

.app-info,
.app-specs-table {
    min-width: 0;
}

.app-info h3,
.app-specs-table h3 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 1.25em;
    font-weight: 600;
}

.app-info > p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.app-features-list {
    border: 1px solid var(--line);
}

.app-feature-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.app-feature-item:last-child {
    border-bottom: none;
}

.app-feature-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    font-size: 1.3em;
}

.app-feature-text {
    padding: 16px 20px;
}

.app-feature-text h4 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 1.05em;
    font-weight: 600;
}

.app-feature-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.6;
}

.app-specs-table {
    border: 1px solid var(--line);
    overflow: hidden;
}

.app-specs-table h3 {
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1em;
    text-align: left;
}

.specs-table {
    width: calc(100% - 44px);
    margin: 0 22px 16px;
    border-collapse: collapse;
    table-layout: fixed;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label,
.spec-value {
    padding: 12px 0;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.spec-label {
    width: 42%;
    color: var(--text-muted);
    font-size: 0.9em;
    padding-right: 10px;
}

.spec-value {
    width: 58%;
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.app-download-buttons {
    padding: 16px 22px 22px;
    border-top: 1px solid var(--line);
}

.app-download-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
    box-sizing: border-box;
    white-space: normal;
}

.app-download-buttons .btn:last-child {
    margin-bottom: 0;
}

/* ========== FAQ ========== */
.faq-container {
    border: 1px solid var(--line);
    counter-reset: faq;
}

.faq-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
        "num q"
        "num a";
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    counter-increment: faq;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item::before {
    content: counter(faq, decimal-leading-zero);
    grid-area: num;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    color: rgba(232, 238, 245, 0.5);
    font-size: 0.85em;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.faq-question {
    grid-area: q;
    position: relative;
    padding: 16px 44px 16px 20px;
}

.faq-question strong {
    display: block;
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item::after {
    content: attr(data-answer);
    grid-area: a;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 20px 0 0;
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.8;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.expanded::after {
    max-height: 680px;
    opacity: 1;
    padding: 0 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.related-grid a {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    line-height: 1.55;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.related-grid a:hover {
    border-color: rgba(0, 156, 59, 0.55);
    background: rgba(0, 156, 59, 0.08);
}

.related-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.02em;
}

.related-grid span {
    color: var(--text-muted);
    font-size: 0.92em;
}

.safer-box {
    margin-top: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 223, 0, 0.28);
    background: rgba(0, 39, 118, 0.18);
    color: var(--text-muted);
    line-height: 1.75;
}

.safer-box strong {
    color: #fff;
}

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

/* ========== Reviews ========== */
.reviews-grid {
    display: flex;
    flex-direction: column;
    margin: 28px 0;
    border: 1px solid var(--line);
}

.review-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
        "rail header"
        "rail text"
        "rail footer";
    border-bottom: 1px solid var(--line);
}

.review-card:last-child {
    border-bottom: none;
}

.review-card::before {
    content: attr(data-initials);
    grid-area: rail;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    color: #cfd8e3;
    font-weight: 600;
}

.review-header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 22px 8px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    display: none;
}

.review-name {
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-location {
    color: var(--text-muted);
    font-size: 0.85em;
}

.review-rating {
    color: var(--gold);
    white-space: nowrap;
}

.review-text {
    grid-area: text;
    margin: 0;
    padding: 0 22px 12px;
    color: var(--text-soft);
    font-size: 0.95em;
    line-height: 1.8;
}

.review-footer {
    grid-area: footer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 22px;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line-soft);
    font-size: 0.85em;
}

.review-date {
    color: var(--text-muted);
}

.review-helpful {
    color: var(--green);
    font-weight: 600;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 12px;
    border: 1px solid var(--line);
}

.review-stat {
    padding: 22px 12px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.review-stat:last-child {
    border-right: none;
}

.review-stat-number {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.6em;
    font-weight: 800;
}

.review-stat-label {
    color: var(--text-muted);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== KPI ========== */
.kpi-banner {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}

@media (min-width: 900px) {
    .kpi-banner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .kpi-item:nth-child(odd) {
        border-right: 1px solid var(--line);
    }
}

.kpi-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.kpi-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    font-size: 1.35em;
}

.kpi-data {
    padding: 16px 20px;
}

.kpi-number {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1.35em;
    font-weight: 700;
}

.kpi-label {
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.kpi-trend {
    color: var(--text-muted);
    font-size: 0.85em;
}

.kpi-trend.positive {
    color: var(--green);
    font-weight: 600;
}

/* ========== Responsible gambling ========== */
.responsible-gambling {
    margin: 64px 0;
    padding: 36px 28px;
    border: 1px solid rgba(255, 223, 0, 0.35);
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.1), rgba(0, 39, 118, 0.14));
}

.responsible-gambling h2 {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 1.8em;
    font-weight: 700;
    text-align: left;
}

.responsible-gambling h3 {
    margin: 28px 0 12px;
    color: #d4f5df;
    font-size: 1.25em;
    font-weight: 700;
}

.responsible-gambling p,
.responsible-gambling li {
    color: var(--text-muted);
    line-height: 1.8;
}

.responsible-gambling ul {
    list-style: disc;
    padding-left: 22px;
    margin: 12px 0;
}

.responsible-gambling li {
    margin-bottom: 8px;
}

.responsible-gambling strong {
    color: #fff;
}

.help-resources {
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 223, 0, 0.28);
    background: rgba(0, 39, 118, 0.22);
}

.help-resources h4 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 1.1em;
}

.help-resources ul {
    list-style: none;
    padding: 0;
}

.help-resources li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.help-resources li:last-child {
    border-bottom: none;
}

.help-resources p {
    margin: 0;
    color: #ffe98a;
    line-height: 1.7;
}

/* ========== CTA ========== */
.cta-section {
    margin: 64px 0 40px;
    padding: 36px 28px;
    border: 1px solid var(--line);
    text-align: left;
}

.cta-section h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 1.8em;
    font-weight: 700;
}

.cta-section > p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.05em;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
    border: 1px solid var(--line);
}

.trust-badge {
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.trust-badge:last-child {
    border-right: none;
}

.badge-icon {
    margin-bottom: 6px;
    font-size: 2em;
}

.badge-text {
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 600;
}

/* ========== Footer ========== */
.footer {
    margin-top: 48px;
    padding: 36px 0;
    border-top: 1px solid rgba(0, 156, 59, 0.35);
    background: linear-gradient(135deg, rgba(6, 20, 12, 0.96), rgba(0, 39, 118, 0.35));
    text-align: center;
}

.footer p {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9em;
}

/* ========== Inner pages (no .home-flat): body blocks = header width ========== */
body:not(.home-flat) .section,
body:not(.home-flat) .hero,
body:not(.home-flat) .cta-section {
    width: 100%;
    max-width: 100%;
}

body:not(.home-flat) .section-title,
body:not(.home-flat) .hero h1,
body:not(.home-flat) .cta-section h2 {
    text-align: left;
}

body:not(.home-flat) .section > p[style*="text-align"] {
    text-align: left !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Homepage: neutralize residual inline centering that fights rail layout */
body.home-flat .section > p[style*="text-align"] {
    text-align: left !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    color: var(--text-muted) !important;
}

/* ========== Responsive ========== */
@media (max-width: 899px) {
    .welcome-box {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "figure"
            "list"
            "notice";
    }

    .welcome-box > .figure-container {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

    .trust-badge:nth-child(2n) {
        border-right: none;
    }

    .trust-badge:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .review-summary {
        grid-template-columns: 1fr 1fr;
    }

    .review-stat:nth-child(2n) {
        border-right: none;
    }

    .review-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 66px;
        --pad-x: 14px;
    }

    .header {
        box-shadow: 0 2px 10px rgba(0, 156, 59, 0.12);
    }

    .nav {
        padding: 10px 0;
        gap: 10px;
        min-height: 46px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 0;
        width: 44px;
        height: 44px;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .logo {
        gap: 0;
        order: 1;
    }

    .logo-circle {
        width: 46px;
        height: 46px;
        box-shadow: 0 0 0 2px var(--gold);
    }

    .logo-circle img,
    .logo-circle img[style] {
        width: 36px !important;
        height: 36px !important;
    }

    .nav-actions {
        order: 2;
        gap: 0;
        margin-left: auto;
    }

    /* Top bar: keep Sign up only */
    .nav-actions .btn:not(.btn-green),
    .nav > div:last-child > .btn:not(.btn-green) {
        display: none;
    }

    .nav-actions .btn-green,
    .nav > div:last-child > .btn-green {
        padding: 10px 16px;
        font-size: 0.82em;
        letter-spacing: 0.02em;
        border-radius: 8px;
        box-shadow: none;
        white-space: nowrap;
    }

    .nav > div:last-child {
        display: flex !important;
        gap: 0 !important;
        margin-left: auto;
    }

    .nav-links-extended {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        margin: 0;
        padding: 8px;
        background: rgba(6, 20, 12, 0.98);
        border: 1px solid rgba(0, 156, 59, 0.35);
        border-radius: 0 0 8px 8px;
        z-index: 1001;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        max-height: min(70vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links-extended.active {
        display: grid;
    }

    .nav-links-extended a {
        padding: 12px 10px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        white-space: nowrap;
        font-size: 0.88em;
        line-height: 1.25;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links-extended a.current {
        border-color: rgba(255, 223, 0, 0.4);
    }

    .nav-links-extended .nav-mobile-cta {
        display: block;
        grid-column: 1 / -1;
        margin-top: 2px;
        padding: 12px 10px;
        color: #06140c;
        background: linear-gradient(135deg, var(--gold), #e6c200);
        border-color: transparent;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .nav-links-extended .nav-mobile-cta:hover {
        color: #06140c;
        background: #fff59d;
    }

    .hero-copy {
        padding: 28px 18px 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-hero {
        width: 100%;
        min-width: 0;
    }

    .section-title {
        font-size: 1.55em;
    }

    .advantage-card,
    .pix-card,
    .kpi-item,
    .review-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .advantage-card::before {
        width: 56px;
        font-size: 0.95em;
        padding-top: 22px;
    }

    .advantage-card h3,
    .advantage-card > p,
    .advantage-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pix-card h3,
    .pix-card .pix-feature,
    .pix-card .pix-steps,
    .pix-card > .btn,
    .pix-card > a.btn {
        margin-left: 16px;
        margin-right: 16px;
    }

    .pix-card > .btn,
    .pix-card > a.btn {
        width: calc(100% - 32px);
    }

    .review-header,
    .review-text {
        padding-left: 16px;
        padding-right: 16px;
    }

    .review-footer {
        margin-left: 16px;
        margin-right: 16px;
    }

    .rtp-row {
        grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr 1fr;
        gap: 8px;
        padding: 12px;
    }

    .rtp-col {
        font-size: 0.82em;
    }

    .cta-section,
    .responsible-gambling {
        padding: 28px 18px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 62px;
        --pad-x: 12px;
    }

    .nav {
        padding: 9px 0;
        gap: 8px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        border: none;
        background: transparent;
    }

    .logo-circle {
        width: 44px;
        height: 44px;
    }

    .logo-circle img,
    .logo-circle img[style] {
        width: 34px !important;
        height: 34px !important;
    }

    .nav-actions .btn-green,
    .nav > div:last-child > .btn-green {
        padding: 9px 14px;
        font-size: 0.78em;
    }

    .nav-links-extended {
        grid-template-columns: 1fr 1fr;
        padding: 7px;
        gap: 5px;
    }

    .nav-links-extended a {
        padding: 11px 8px;
        font-size: 0.84em;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.8em;
    }

    .nav-actions .btn,
    .nav > div:last-child > .btn {
        padding: 9px 14px;
        font-size: 0.78em;
        border-radius: 8px;
        box-shadow: none;
    }

    .hero h1 {
        font-size: 1.85em;
    }

    .rtp-header {
        display: none;
    }

    .rtp-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .review-summary,
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .review-stat,
    .trust-badge {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .review-stat:last-child,
    .trust-badge:last-child {
        border-bottom: none;
    }

    .app-feature-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .faq-item {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .review-header {
        flex-direction: column;
    }
}

/* ========== Inner pages (shared layout rail) ========== */
.page-inner .main > .container > section {
    width: 100%;
    max-width: 100%;
}

.page-hero {
    margin: 24px 0 0;
    border: 1px solid var(--line);
    overflow: hidden;
}

.page-hero-media img {
    width: 100%;
    display: block;
}

.page-hero-copy {
    padding: 28px 24px;
}

.page-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(1.8em, 4vw, 2.6em);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.page-hero-lead {
    margin: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.02em;
}

.page-points {
    margin: 0 0 18px;
    padding-left: 18px;
    list-style: disc;
    color: var(--text-soft);
}

.page-points li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-points strong {
    color: var(--text);
}

.page-desc {
    margin: 0 0 22px;
    border-top: 1px solid var(--line-soft);
    padding-top: 14px;
}

.page-desc li {
    position: relative;
    padding: 8px 0 8px 18px;
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.65;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-desc li:last-child {
    border-bottom: none;
}

.page-desc li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Hero layouts */
.hero-img-left,
.hero-img-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero-img-right .page-hero-media {
    order: 2;
}

.hero-img-right .page-hero-copy {
    order: 1;
}

.hero-img-left .page-hero-media {
    border-right: 1px solid var(--line);
}

.hero-img-right .page-hero-media {
    border-left: 1px solid var(--line);
}

.hero-text-top .page-hero-media,
.hero-img-top .page-hero-copy {
    border-top: 1px solid var(--line);
}

.hero-img-top {
    display: flex;
    flex-direction: column;
}

.hero-img-top .page-hero-media {
    order: 0;
}

.hero-img-top .page-hero-copy {
    order: 1;
    border-top: 1px solid var(--line);
}

.hero-text-top {
    display: flex;
    flex-direction: column;
}

.page-section {
    margin: 48px 0;
    border: 1px solid var(--line);
    padding: 28px 24px;
}

.page-section h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 1.55em;
    font-weight: 700;
}

.page-section h3 {
    margin: 22px 0 10px;
    color: var(--gold);
    font-size: 1.15em;
    font-weight: 600;
}

.page-section p {
    margin: 0 0 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1em;
}

.page-section p:last-child {
    margin-bottom: 0;
}

/* Card layout A: equal grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    margin-top: 20px;
}

.cards-grid .page-card {
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cards-grid .page-card:nth-child(3n) {
    border-right: none;
}

/* Card layout B: stacked rows with left label */
.cards-rows {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    margin-top: 20px;
}

.cards-rows .page-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    border-bottom: 1px solid var(--line);
}

.cards-rows .page-card:last-child {
    border-bottom: none;
}

.cards-rows .page-card-mark {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    border-right: 1px solid var(--line);
    background: var(--rail);
    font-size: 1.3em;
}

.cards-rows .page-card-body {
    padding: 18px 20px;
}

/* Card layout C: featured + list */
.cards-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    margin-top: 20px;
}

.cards-featured .page-card-feature {
    padding: 24px;
    border-right: 1px solid var(--line);
    background: var(--rail);
}

.cards-featured .page-card-list {
    display: flex;
    flex-direction: column;
}

.cards-featured .page-card-list .page-card {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
}

.cards-featured .page-card-list .page-card:last-child {
    border-bottom: none;
}

/* Card layout D: two-column checklist */
.cards-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    margin-top: 20px;
}

.cards-duo .page-card {
    padding: 22px;
    border-right: 1px solid var(--line);
}

.cards-duo .page-card:last-child {
    border-right: none;
}

.page-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 1.05em;
    font-weight: 600;
}

.page-card p,
.page-card li {
    color: var(--text-muted);
    font-size: 0.94em;
    line-height: 1.65;
}

.page-card ul {
    list-style: disc;
    padding-left: 18px;
    margin-top: 8px;
}

.page-card li {
    margin-bottom: 4px;
}

.page-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.page-table th,
.page-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    color: var(--text-muted);
    font-size: 0.92em;
    vertical-align: top;
}

.page-table th {
    color: var(--text);
    font-weight: 600;
    border-bottom-color: var(--line);
}

.page-note {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 223, 0, 0.28);
    background: rgba(0, 156, 59, 0.08);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95em;
}

.page-cta-bar {
    margin: 48px 0 24px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    text-align: left;
}

.page-cta-bar h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.45em;
}

.page-cta-bar p {
    margin: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 899px) {
    .hero-img-left,
    .hero-img-right,
    .cards-featured,
    .cards-duo {
        grid-template-columns: 1fr;
    }

    .hero-img-left .page-hero-media,
    .hero-img-right .page-hero-media {
        border: none;
        border-bottom: 1px solid var(--line);
    }

    .hero-img-right .page-hero-media,
    .hero-img-right .page-hero-copy {
        order: unset;
    }

    .cards-featured .page-card-feature {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .cards-duo .page-card {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .cards-duo .page-card:last-child {
        border-bottom: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid .page-card {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .cards-rows .page-card {
        grid-template-columns: 56px 1fr;
    }
}

/* ========== Fixed bottom CTA bar ========== */
body {
    padding-bottom: 92px;
}

.fixed-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
    background:
        linear-gradient(180deg, rgba(6, 20, 12, 0.55) 0%, rgba(6, 20, 12, 0.97) 38%),
        rgba(6, 20, 12, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 223, 0, 0.22);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
}

.fixed-cta-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.fixed-cta-ico {
    display: inline-flex;
    flex-shrink: 0;
    opacity: 0.95;
}

.fixed-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    min-width: 0;
}

.fixed-cta-copy strong {
    font-size: 0.98em;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.fixed-cta-copy small {
    margin-top: 2px;
    font-size: 0.68em;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0.88;
    white-space: nowrap;
}

.fixed-cta-entrar {
    color: var(--gold);
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.12) 0%, rgba(255, 223, 0, 0.05) 100%);
    border: 1.5px solid rgba(255, 223, 0, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 223, 0, 0.18);
}

.fixed-cta-cadastrar {
    color: #06140c;
    background: linear-gradient(135deg, #ffe84a 0%, var(--gold) 42%, #f0c400 100%);
    border: 1.5px solid rgba(255, 248, 180, 0.85);
    box-shadow:
        0 8px 22px rgba(255, 223, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.fixed-cta-cadastrar .fixed-cta-copy small {
    color: #4a3800;
    opacity: 1;
    font-weight: 700;
}

.fixed-cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-120%);
    animation: fixedCtaShine 2.6s ease-in-out infinite;
}

.fixed-cta-cadastrar::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    border: 2px solid rgba(255, 223, 0, 0.55);
    opacity: 0;
    animation: fixedCtaRing 2.6s ease-out infinite;
    pointer-events: none;
}

.fixed-cta-btn:hover {
    transform: translateY(-1px);
}

.fixed-cta-btn:active {
    transform: scale(0.98);
    filter: brightness(0.96);
}

@keyframes fixedCtaShine {
    0%,
    55% {
        transform: translateX(-120%);
    }
    80%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes fixedCtaRing {
    0%,
    55% {
        opacity: 0;
        transform: scale(0.96);
    }
    70% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

@media (min-width: 769px) {
    body {
        padding-bottom: 100px;
    }

    .fixed-cta-bar {
        grid-template-columns: minmax(0, 420px) minmax(0, 500px);
        justify-content: center;
        gap: 14px;
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0));
    }

    .fixed-cta-btn {
        min-height: 64px;
        border-radius: 16px;
        gap: 12px;
    }

    .fixed-cta-copy strong {
        font-size: 1.08em;
    }

    .fixed-cta-copy small {
        font-size: 0.74em;
    }
}

@media (max-width: 380px) {
    .fixed-cta-bar {
        gap: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .fixed-cta-btn {
        gap: 7px;
        padding: 9px 10px;
    }

    .fixed-cta-copy strong {
        font-size: 0.88em;
    }

    .fixed-cta-copy small {
        font-size: 0.62em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fixed-cta-pulse,
    .fixed-cta-cadastrar::after {
        animation: none;
    }
}
