/* -----------------------------  DESIGN TOKENS */

:root {
  /* Brand / Purple palette */
  --color-primary:            #8E5BEE;  /* principal — loader, badges, navbar */
  --color-primary-dark:       #723DD6;  /* dark — bg-dark, menu hover */
  --color-primary-deeper:     #6c3be5;  /* progress value, link gradient */
  --color-primary-deep:       #5b39d6;  /* result-action gradient stop */
  --color-primary-darkest:    #4b2b8f;  /* support-form gradient start */
  --color-primary-mid:        #6b3fd8;  /* support-form gradient mid */
  --color-primary-light:      #7d5bff;  /* result-action--primary gradient start */
  --color-primary-subtle:     #D0B7FF;  /* .secondary text */

  /* Superfícies */
  --color-surface:            #FFFFFF;
  --color-surface-gray:       #F5F5F5;
  --color-surface-gray-hover: #E6E6E6;

  /* Texto */
  --color-text:               #15191C;
  --color-text-secondary:     #606B74;
  --color-text-muted:         #424547;

  /* Espaçamentos */
  --space-sm:   12px;
  --space-md:   24px;
  --space-lg:   32px;
  --space-xl:   48px;

  /* Border Radius */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-full: 999px;
}

/* -----------------------------  GENERAL */

html {
  -webkit-text-size-adjust: 100%;
}

/* Loader */
.loader {
    margin: auto;
    width: 50px;
    aspect-ratio: 1;
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: grid;
    background: 
      conic-gradient(from 90deg at 4px 4px,#0000 90deg,currentColor 0)
      -4px -4px/calc(50% + 2px) calc(50% + 2px),
      radial-gradient(farthest-side,currentColor 6px,#0000 7px calc(100% - 6px),currentColor calc(100% - 5px)) no-repeat;
    animation: l10 2s infinite linear;
    position: relative;
  }
  .loader:before {
    content: "";
    border-radius: inherit;
    background: inherit;
    transform: rotate(45deg);
  }
  @keyframes l10 {to{transform: rotate(.5turn)}}

.processing-progress-wrapper {
    max-width: 280px;
    margin: 20px auto 14px;
    text-align: center;
}

.processing-progress-value {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary-deeper);
    margin-bottom: 8px;
}

.processing-progress-track {
    width: 100%;
    height: 10px;
    background: #e9ddff;
    border-radius: 999px;
    overflow: hidden;
}

.processing-progress-bar {
    width: 1%;
    height: 100%;
    background: var(--color-primary);
    transition: width .6s ease;
}

.processing-delay-info {
    margin-top: 12px;
}

.support-card {
    background: linear-gradient(135deg, rgba(190,161,244,0.14), rgba(245,245,245,0.9));
    border: 1px solid rgba(190,161,244,0.35);
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 18px 42px rgba(66,69,71,0.12);
    color: #424547;
    box-sizing: border-box;
}

.support-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2f3239;
}

.support-card__body {
    font-size: 14px;
    line-height: 1.55;
    color: #606b74;
}

.support-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.support-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg,var(--color-primary),var(--color-primary-deeper));
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(142,91,238,0.28);
    transition: transform .15s ease, box-shadow .15s ease;
}

.support-card__link:hover,
.support-card__link:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(142,91,238,0.32);
}

.support-card__link.alt {
    background: rgba(255,255,255,0.92);
    color: #424547 !important;
    box-shadow: inset 0 0 0 1px rgba(96,107,116,0.22);
}

.support-card__link.alt:hover,
.support-card__link.alt:focus {
    box-shadow: inset 0 0 0 1px rgba(96,107,116,0.32), 0 6px 18px rgba(96,107,116,0.18);
}

@media (max-width: 640px) {
    .support-card {
        padding: 24px 22px !important;
    }
    body.pay .support-card {
        background: linear-gradient(135deg, rgba(190,161,244,0.16), rgba(245,245,245,0.95));
        border: 1px solid rgba(190,161,244,0.33);
        box-shadow: 0 18px 36px rgba(66,69,71,0.16);
        text-align: left;
        margin: 0 0 28px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        border-radius: 22px;
        padding: 26px 24px !important;
    }
    body.pay .support-card__title {
        text-align: left;
        margin-bottom: 12px;
    }
    body.pay .support-card__body {
        line-height: 1.65;
        margin-bottom: 20px;
        font-size: 13px;
    }
    body.pay .support-card__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 12px;
    }
    body.pay .support-card__link,
    body.pay .support-card__link.alt {
        width: 100%;
        justify-content: center;
    }
}

.result-actions {
    width: 100%;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    min-height: 46px;
    text-decoration: none !important;
    line-height: 1.3;
    background: #f7f3ff;
    color: #3b2f63 !important;
    border: 1px solid rgba(123,97,255,0.25);
    box-shadow: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.result-action img {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.result-action span {
    color: inherit;
}

.result-action--primary {
    background: linear-gradient(135deg,var(--color-primary-light),var(--color-primary-deep));
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 20px rgba(93,57,214,0.25);
}

.result-action--ghost {
    background: #f5f0ff;
    color: #3c3360 !important;
    border: 1px solid rgba(125,90,242,0.4);
}

.result-action:hover,
.result-action:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(52,44,96,0.18);
}

@media (max-width: 768px) {
    .result-action {
        font-size: 15px;
        padding: 12px 16px;
        min-height: 48px;
    }
}

@media (min-width: 769px) {
    .result-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .result-action {
        flex: 1;
    }
}

.mod-bg {
    background-color: #00000050 !important;
}

body.result table td {
    padding: 1rem;
    border: 2px solid #b7b7b7;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.mod-card {
    background-color: #FFFFFF !important;
    border-radius: 12px !important;
    filter: drop-shadow(0px 4px 4px #00000050) !important;
    padding: 24px !important;
}

.mod-p {
    font-size: 16px !important;
    color: #15191C !important;
    font-weight: bold !important;
    margin-top: 12px !important;
}


div .bg-container .loading .box .p {
    font-size: 16px !important;
    color: #15191C !important;
    font-weight: normal !important;
    margin-top: 12px !important;
}

html {
    scroll-behavior: smooth !important;
    font-family: "Roboto", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 100% !important;
}

body {
    width: 100% !important;
    margin: 0 !important;
    background-color: #F5F5F5 !important;
    overflow-x: hidden;
}

/* Container full-width para seções ocuparem toda a tela.
   Aplica em body.index (home) e body.pay (privacidade, termos, checkout, paid, etc.) —
   garante que footer/header com full-bleed (100vw + margin calc) funcione simetrico
   independente de scrollbar (sem isso, container fica menor que 100vw e o offset
   ficava assimetrico criando gap a direita no footer roxo CNPJ). */
body.index .container,
body.pay .container {
    max-width: none;
    width: 100%;
}

h1 {
    margin: 0 !important;
}

h2 {
    margin: 0 !important;
}

h3 {
    margin: 0 !important;
}

p {
    margin: 0 !important;
}

a {
    text-decoration: none !important;
    cursor: pointer !important;
}

li {
    list-style: none !important;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
}

table {
    border-collapse: unset !important;
    width: 100% !important;
    border-radius: 12px !important;
    filter: drop-shadow(0px 4px 4px #00000050) !important;
    border-spacing: 0px !important;
}

th {
    width: 100% !important;    
    background-color: var(--color-primary) !important;
    border-radius: 12px 12px 0px 0px !important;
    padding: 24px !important;
    font-size: 16px !important;
    color: #FFFFFF !important;
}

tr {
    width: 100% !important;
}

td {
    width: 50% !important;
    padding: 24px !important;
    color: #606B74 !important;
    background: none !important;
    border: 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.td-end {
    border-bottom: 0px !important;
}

footer {
    background-image: none !important;
    padding: 0 !important;
    padding-top: 48px !important;
    /* Full-bleed global: footer escapa do .container max-width (1900) e vai
       borda a borda da viewport em todas as paginas. Substitui o truque que
       existia em pay.css:325 (body.pay footer) — agora vale para todos os bodies. */
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
}

/* -----------------------------  WHATSAPP NOTICE (temporário - na seção contato) */

.whatsapp-notice-card {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(46, 213, 115, 0.08);
    border: 1px solid rgba(46, 213, 115, 0.2);
    border-radius: 12px;
    font-size: 14px;
    color: #424547;
    line-height: 1.5;
}

.whatsapp-notice-card__text {
    margin: 0 0 10px 0;
}

.whatsapp-notice-card__text strong {
    color: #2d3436;
}

.whatsapp-notice-card__link {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #25D366 !important;
    transition: color 0.2s ease;
}

.whatsapp-notice-card__link:hover {
    color: #20bd5a !important;
}

/* -----------------------------  NAVBAR */

.navbar {
    position: absolute;
    width: 100%;
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: #fff;
}

.altnavbar {
    color: var(--color-primary) !important;
    place-content: center;
}

.nav-links a {
    color: #fff;
}

.menu {
    display: flex;
    margin-right: 24px !important;
}

.menu li:hover {
    background-color: var(--color-primary-dark);
    border-radius: 12px;
    transition: 0.3s ease;
}

.menu li {
    padding: 12px 24px;
}

.altmenu li:hover {
    background-color: #E6E6E6;
}

.altlink {
    color: #15191C !important;
}

.nav-links input[type=checkbox]{
    display: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    font-weight: bold;
    user-select: none;
    margin-right: 24px !important;
}

/* Navbar Responsiva */

@media (max-width: 768px) {
    /* Menu — full-screen dark overlay */
    .menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(18,10,46,0.97);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 48px 24px;
        text-align: center;
        margin-top: 0 !important;
        border-radius: 0 !important;
        filter: none !important;
        right: auto;
    }

    input[type=checkbox]:checked ~ .menu {
        display: flex;
        animation: nav-open .2s ease;
    }

    @keyframes nav-open {
        from { opacity: 0; transform: scale(.98); }
        to   { opacity: 1; transform: scale(1); }
    }

    .nav-links a {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: .3px;
        display: block;
        padding: 0;
        transition: color .15s;
    }

    .nav-links a:hover { color: #c4a8ff; }

    .menu li {
        padding: 18px 48px;
        border-radius: 16px;
        width: 100%;
        list-style: none;
        transition: background .15s;
    }

    .menu li:hover {
        background-color: rgba(255,255,255,.08) !important;
        display: block;
        border-radius: 16px;
        transition: 0.3s ease;
    }

    .menu li + li {
        margin-top: 4px;
    }

    /* Hamburger — sempre visível acima do overlay */
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
        color: #fff;
        cursor: pointer;
        transition: color .15s;
    }

    /* Menu aberto: hamburger torna-se botão × fixo */
    input[type=checkbox]:checked ~ label.hamburger {
        position: fixed;
        top: 18px;
        right: 20px;
        z-index: 1001;
        font-size: 0;
        margin: 0;
    }

    input[type=checkbox]:checked ~ label.hamburger::after {
        content: "✕";
        font-size: 28px;
        color: rgba(255,255,255,.9);
        display: block;
        line-height: 1;
        font-weight: normal;
    }
}

/* -----------------------------  FAQ */

#contato input[type='checkbox'] { 
    display: none; 
}

.wrap-collabsible {
    margin: 0;
}

.lbl-toggle { 
    display: flex; 
    flex-direction: row;
    text-align: left; 
    padding: 24px; 
    background: #F5F5F5; 
    cursor: pointer; 
    border-radius: 12px; 
    transition: all 0.25s ease-out;
} 

.lbl-toggle::after { 
    content: url('../imgs/arrow.png'); 
    display: inline-block; 
    vertical-align: middle; 
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    transform: translateY(-2px); 
    transition: transform .2s ease-out;
} 

.toggle:checked+.lbl-toggle::after { 
    transform: rotate(180deg) translateX(0px); 
} 

.collapsible-content { 
    max-height: 0px; 
    overflow: hidden; 
    transition: max-height .25s ease-in-out;
} 

.toggle:checked + .lbl-toggle + .collapsible-content { 
    max-height: 100%; 
} 

.toggle:checked+.lbl-toggle { 
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; 
} 

.collapsible-content .content-inner { 
    background: #F5F5F5; 
    border-bottom: 0px; 
    border-bottom-left-radius: 12px; 
    border-bottom-right-radius: 12px; 
    padding: 0px 24px 24px 24px; 
}

/* -----------------------------  ELEMENTS */

button, .btn {
    padding: 0 !important;
    border: 0;
    display: inline-block;
}

.cond input[type=checkbox] {
    margin: 0 !important;
    margin-right: 12px !important;
    cursor: pointer !important;
    border-radius: 3px !important;
}

.unlock-block {
    margin: 0 !important;
    font-size: 16px !important;
}

section, header, footer {
    padding: 0 !important;
}

#landing div div .search input {
    max-width: 100% !important;
}

.main {
    background-image: url(../imgs/bg.png) !important;
    background-size: cover !important;
}

.card {
    border-radius: 12px;
    filter: drop-shadow(0px 4px 4px #00000050) !important;
}

.support-shell {
    background: linear-gradient(140deg, rgba(190,161,244,.12), rgba(245,245,245,.95));
    border: 1px solid rgba(190,161,244,.28);
    border-radius: 32px;
    padding: 40px 36px;
    box-shadow: 0 32px 64px rgba(66,69,71,.16);
    margin-top: 24px;
}

.support-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: stretch;
}

.support-col {
    flex: 1;
    min-width: 280px;
}

.support-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.support-panel-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 30px;
    box-shadow: 0 32px 58px rgba(96,107,116,.14);
    border: 1px solid rgba(190,161,244,.26);
    height: 100%;
}

.support-panel-card h2 {
    margin-bottom: 8px !important;
}

.support-panel-card p {
    line-height: 1.62;
}

.support-form-card {
    background: linear-gradient(140deg,var(--color-primary-darkest) 0%,var(--color-primary-mid) 55%,var(--color-primary) 100%);
    border-radius: 26px;
    padding: 32px 28px;
    box-shadow: 0 32px 62px rgba(47,22,96,.34);
}

.support-form-card label {
    color: rgba(255,255,255,.85) !important;
}

.support-form-card input,
.support-form-card textarea {
    border: 1px solid rgba(255,255,255,.35) !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 12px 28px rgba(9,2,32,.15);
}

.support-form-card .submit {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.support-cta-card {
    border-radius: 22px !important;
    box-shadow: 0 22px 48px rgba(18,140,126,.25) !important;
}

.support-cta-card .bg-whatsapp {
    border-radius: 22px 0 0 22px !important;
}

.support-panel--single {
    max-width: 640px;
    margin: 0 auto;
}

.input-plate {
    border-radius: 12px 0px 0px 12px !important;
    border-right: 0px !important;
}

.input-consult {
    border-radius: 0px 12px 12px 0px !important;
    cursor: pointer !important;
}

.divider {
    width: 48px !important;
    height: 6px !important;
    border-radius: 3px !important;
}

.card-head {
    padding: 12px 24px 12px 24px !important;
    border-radius: 12px 12px 0px 0px !important;
}

input {
    border: 0px !important;
    border-radius: 12px !important;
    background-color: #FFFFFF !important;
    font-size: 16px !important;
    color: #15191C !important;
    padding: 24px !important;
}

textarea {
    border: 0px !important;
    border-radius: 12px !important;
    background-color: #FFFFFF !important;
    font-size: 16px !important;
    color: #15191C !important;
    padding: 24px !important;
    font-family: "Roboto", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    resize: none !important;
}

.sendmail { 
    cursor: pointer !important;
}

.whatsapp {
    cursor: pointer !important;
}

.whats-head {
    padding: 24px !important;
    border-radius: 12px 0px 0px 12px !important;
}

.btn {
    z-index: 99 !important;
    cursor: pointer !important;
    padding: 12px 24px !important;
}

.cta {
    background-color: red !important;
    cursor: pointer !important;
}

/* -----------------------------  DESKTOP */

/* Colors and Backgrounds */
.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-dark {
    background-color: var(--color-primary-dark) !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-gray {
    background-color: #F5F5F5 !important;
}

.bg-hgray {
    background-color: #E6E6E6 !important;
}

.bg-alternate {
    background-color: #606B74 !important;
}

.bg-green {
    background-color: #128C7E !important;
}

.bg-whatsapp {
    background-color: #25D366 !important;
}

.primary {
    color: var(--color-primary) !important;
}

.white {
    color: #FFFFFF !important;
}

.secondary {
    color: var(--color-primary-subtle) !important;
}

.darkgray {
    color: #606B74 !important;
}

.black {
    color: #15191C !important;
}

/* Width and Height */

.max832 {
    max-width: 832px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.max1140 {
    max-width: 1140px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.max600 {
    max-width: 600px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.maxw416 {
    max-width: 416px !important;
}

.w100 {
    width: 100% !important;
}

.w50 {
    width: 50% !important;
}

.h100 {
    height: 100% !important;
}

.vw100 {
    width: 100vw !important;
}

.vw50 {
    width: 50vw !important;
}

footer.bg-gray {
	min-height: 0;
	padding-bottom: 0;
}

footer .bg-dark {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 12px;
	box-sizing: border-box;
	/* Full-bleed robusto via translate (independe do parent) */
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 640px) {
	footer.bg-gray .row {
		padding-bottom: 24px;
		padding-top: 32px;
	}
	footer .bg-dark {
		padding: 16px 10px;
	}
	footer .bg-dark p {
		font-size: 12px;
		line-height: 1.4;
		margin: 0;
	}
}

@media (max-width: 768px) {
	body.result .m-pb144 {
		padding-bottom: 32px !important;
	}
}

@media (max-width: 640px) {
	body.pay .processing-inline-card,
	body.pay .debits-processing-alert,
	body.result .debits-processing-card {
		padding: 22px 18px !important;
	}
	body.pay .processing-inline-card,
	body.pay .debits-processing-alert,
	body.result .debits-processing-card,
	body.pay .support-card {
		border-radius: 20px !important;
	}
}

.vh100 {
    height: 100vh !important;
}

.mincontent {
    width: min-content !important;
}

/* Columns and Rows */

.grid {
    display: grid !important;
    grid-template-columns: auto auto auto auto !important;
}

.row {
    display: flex;
    flex-direction: row;
    margin: 0 !important;
    justify-content: center;
}

.col {
    display: flex;
    flex-direction: column;
}

/* Padding and Margins */

.p24 {
    padding: 24px !important;
}

.p12 {
    padding: 12px !important;
}

.hp24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.vp24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.vp12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.pt96 {
    padding-top: 96px !important;
}

.pt48 {
    padding-top: 48px !important;
}

.pt24 {
    padding-top: 24px !important;
}

.pb48 {
    padding-bottom: 48px !important;
}

.mt24 {
    margin-top: 24px !important;
}

.mt12 {
    margin-top: 12px !important;
}

.mr24 {
    margin-right: 24px !important;
}

.mr12 {
    margin-right: 12px !important;
}

.ml24 {
    margin-left: 24px !important;
}

.ml12 {
    margin-left: 12px !important;
}

.ml0 {
    margin-left: 0 !important;
}

.mb24 {
    margin-bottom: 24px !important;
}

.mb12 {
    margin-bottom: 12px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mh24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
}

.mauto {
    margin: auto;
}

.mv24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.mvauto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mhauto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Font Size, Text Align and Weight */

.just-center {
    justify-content: center !important;
}

.alcontent {
    align-content: center !important;
}

.aicenter {
    align-items: center !important;
}

.regular {
    font-weight: 400 !important;
}

.bold {
    font-weight: 700 !important;
}

.taleft {
    text-align: left !important;
}

.tacenter {
    text-align: center !important;
}

.taright {
    text-align: right !important;
}

.fs32 {
    font-size: 32px !important;
}

.fs24 {
    font-size: 24px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs14 {
    font-size: 14px !important;
}

/* Borders */

.border-transparent {
    border: 0px !important;
    border-radius: 12px;
}

.border-light {
    border: 1px solid #E6E6E6 !important;
    border-radius: 12px;
}

.border-secondary {
    border: 1px solid var(--color-primary-subtle) !important;
}

/* -----------------------------  MOBILE */

@media screen and (max-width: 1024px) {

    /* Elements */
    .input-plate {
        border-radius: 12px !important;
        padding: 12px 0px 12px 0px !important;
    }
    
    .input-consult {
        border-radius: 12px !important;
    }

    .support-shell {
        padding: 28px 24px;
        border-radius: 26px;
    }

    .support-grid {
        gap: 24px;
    }

    .support-panel-card {
        padding: 24px;
    }

    .support-panel--single {
        max-width: 100%;
    }

    /* Visibility */
    .m-invisible {
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Width and Height */
    .m-w100 {
        width: 100% !important;
    }

    .m-w50 {
        width: 50% !important;
    }

    .m-h100 {
        height: 100% !important;
    }

    /* Columns and Rows */

    .grid {
        grid-template-columns: 50% 50% !important;
    }

    .m-row {
        display: flex !important;
        flex-direction: row !important;
    }

    .m-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .m-rcol {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .content .max600,
    .content .max832 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .content .max600 table,
    .content .max832 table,
    .content table,
    .content .card {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Padding and Margins */
    .m-hp24 {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .m-vp24 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .m-pb24 {
        padding-bottom: 24px !important;
    }

    .m-p0 {
        padding: 0 !important;
    }

    .m-p24 {
        padding: 24px !important;
    }

    .m-m24 {
        margin: 24px !important;
    }
    
    .m-mt24 {
        margin-top: 24px !important;
    }

    .m-mt12 {
        margin-top: 12px !important;
    }

    .m-mt6 {
        margin-top: 6px !important;
    }

    .m-mt0 {
        margin-top: 0px !important;
    }

    .m-mr12 {
        margin-right: 12px !important;
    }

    .m-mr0 {
        margin-right: 0px !important;
    }

    .m-mrauto {
        margin-right: auto !important;
    }

    .m-ml0 {
        margin-left: 0px !important;
    }

    .m-mlauto {
        margin-left: auto !important;
    }

    .m-ml12 {
        margin-left: 12px !important;
    }

    .m-pb144 {
        padding-bottom: 144px !important;
    }

    .m-mauto {
        margin: auto !important;
    }

    .m-m0 {
        margin: 0 !important;
    }

    /* Text Align */

    .m-tacenter {
        text-align: center !important;
    }

    .m-taleft {
        text-align: left !important;
    }

    /* CTA */
    .m-cta {
        max-width: 100% !important;
        width: 100% !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        border-radius: 12px 12px 0 0 !important;
    }

}

/* -----------------------------  Scrollbar and Scroll */

/* Invisible */

::-webkit-scrollbar {
    display: none;
}

/* modal */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(360deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.5) 100%);
    display: none; /* Oculto por padrão */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Certificando que o modal esteja na frente */
}

#modal-content {
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-align: center !important;
}

#modal-content img {
    width: 64px; /* Defina o tamanho da imagem conforme necessário */
    height: auto;
    margin-bottom: 12px;
}

/* Exibir o modal apenas em dispositivos móveis */
@media (max-width: 768px) {
    #modal-overlay {
        display: flex;
    }
}

/* Professional error styling for alreadypaid form */
.field-error {
    color: #ffffff;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 6px 10px;
    background-color: #dc3545;
    border-left: 3px solid #c82333;
    border-radius: 4px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.field-error:before {
    content: "⚠️";
    font-size: 14px;
}

#alreadypaid-form input.has-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

#alreadypaid-form input.has-error:focus {
    border-color: #c82333 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.35);
}

/* ----------------------------- LEGACY UTILITIES (migrated from custom.min.css — AC-4) */

* {
    box-sizing: border-box;
}

.container {
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
}

.mobile {
    display: none;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.d-flex .col {
    flex: 1;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.b {
    font-weight: bold;
}

.clear {
    clear: both;
}

.pre-line {
    white-space: pre-line;
}

.text-muted {
    color: #5b5e60;
}

.ic {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ic-menu {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAUVBMVEX///////////////////////////9HcEz////////////////////////////////////////////////////////////////////////////XbrrsAAAAGnRSTlOZKvEBLPZ5ADOQ3twrAqdF+RaM8qT1d6Up3XvXmnoAAABnSURBVDjLY2AnABjoqICXkQMLYGSGK+CTwgrE4QqEsStggitgY8UmLyrGMJjCgXwFLJwMeAAnDwOXFF7AzSBJSAFBK4ZHSKJyWdDCjZUNTYEQ7iQHAfwCaApE0N0giJrsJZgHQzgAAGlQJ7VkLlhOAAAAAElFTkSuQmCC');
}

input.has-error, textarea.has-error {
    border: 1px solid #c64a4a !important;
}

.error-info {
    color: #c64a4a;
    margin-top: -1rem;
}

/* Migrated from custom.min.css (AC-4) */
#copytext {
    display: none;
}

/* ═══════════════════════════════════════════════════════
   COMPONENTS — migrado de custom.css (AC-4, 2026-03-16)
   ═══════════════════════════════════════════════════════ */

/* --- Mobile nav overlay --- */
#navContent {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 10;
    font-size: 1rem;
}
#navContent .navToggle {
    position: absolute;
    right: 5%;
    z-index: 1;
    top: 2%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: normal;
    cursor: pointer;
}
#navContent .navToggle:hover { color: #8e5bee; }
#navContent .navToggle:active { opacity: .7; }
#navContent > div {
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    transition: top 300ms cubic-bezier(0.17,0.04,0.03,0.94) 0s;
}
#navContent .bgLeft  { background: #000; left: 0; top: 100%; opacity: .8; }
#navContent .bgRight {
    background: #111;
    left: unset; right: 0; top: -100%;
    display: flex; align-items: flex-start; justify-content: flex-start;
    padding-top: 10%; padding-left: 4%;
}
#navContent.active .bgLeft,
#navContent.active .bgRight { top: 0; }
#navContent ul { margin: 0; padding-left: 1.6rem; }
#navContent ul li { list-style: none; margin-top: 1.2rem; padding-bottom: .9em; }
#navContent ul a {
    color: #fff;
    padding: 0 .9em .2em 0;
    display: inline-block;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
}
#navContent ul.submenu a { text-transform: none; }
#navContent li a:hover,
#navContent li.active > a { color: #8e5bee; }
#navContent ul.submenu li { display: none; }

/* --- Modal / overlay genérico (.bg-container) --- */
/* Usado por modalShow() em script.js. NÃO é o loading spinner (que agora usa inline CSS). */
.bg-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.bg-container .box {
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: .5rem;
    padding: 2rem;
    min-width: 250px;
    max-width: 100vw;
    width: 800px;
    max-height: 100vh;
    overflow-y: scroll;
}
.bg-container .close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
    opacity: .7;
}
.bg-container .close:hover { opacity: 1; }
.bg-container.loading p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
}

/* --- Spinner de carregamento — usado por paid.php processing overlay ---
   TODO: substituir pelo overlay moderno inline na próxima branch (CSS modularização) */
.cssload-container {
    width: 100%;
    height: 49px;
    text-align: center;
}
.cssload-speeding-wheel {
    width: 49px; height: 49px;
    margin: 0 auto;
    border: 4px solid rgba(142,91,238,0.97);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 575ms infinite linear;
    -webkit-animation: cssload-spin 575ms infinite linear;
}
@keyframes cssload-spin         { 100% { transform: rotate(360deg); } }
@-webkit-keyframes cssload-spin { 100% { -webkit-transform: rotate(360deg); } }

/* --- Estilos de impressão --- */
@media print {
    header, footer { display: none; }
    body.result .btns,
    body.result .unlock-block .btn { display: none; }
    body.result .content { padding: 0; }
}
