html,
body {
    height: 100%;
    background: #000;
    color: #fff;
}

:root {
    --color-black: #000000;
    --color-dark-blue: #1a1f3a;
    --color-navy: #2d3250;
    --color-neon-purple: #aa32eb;
    --color-neon-cyan: #0ff8ff;
    --color-white: #ffffff;
}


/* Cadastro */
#cadastro {
    background: black !important;
    color: #fff !important;
    padding: 32px 16px 48px;
}

#cadastro .cad-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}



@media (min-width:1000px) {
    #cadastro .cad-wrap {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
        column-gap: 36px;
    }
}

#cadastro .cad-title {
    font-size: 44px;
    line-height: 1.12;
    margin: 0 0 10px;
}

#cadastro .cad-sub {
    font-size: 22px;
    margin: 0 0 18px;
    color: #0ff8ff;
}

#cadastro .cad-badges {
    font-size: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 6px 0 18px;
}



#cadastro .badge {
    display: flex;
    align-items: center;

    gap: 10px;
    padding: 12px 14px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

#cadastro .badge:hover {
    border-color: var(--color-neon-cyan);
}

#cadastro .cad-wrap .cad-left .cad-pricing:hover {
    border-color: var(--color-neon-cyan);
}

#cadastro .badge i {
    font-size: 16px;
    color: #fff;
}

#cadastro .badge span {
    font-size: 16px;
    color: #e9e9ef;
    font-weight: 400;
    text-align: left;
}

#cadastro .cad-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 14px auto 0;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

#cadastro .pricing-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: #cbd0de;
}

#cadastro .pricing-old {
    margin: 6px 0;
    color: #9aa0a6;
    text-decoration: line-through;
    font-size: 14px;
}

#cadastro .pricing-now {
    margin: 6px 0;
    font-size: 26px;
    font-weight: 900;
    color: #22d3ee;
}

#cadastro .pricing-detail {
    margin: 0;
    color: #cdd3e0;
    font-size: 14px;
}

#cadastro .pricing-save {
    margin: 12px 0 0;
    color: #c084fc;
    font-weight: 800;
    font-size: 15px;
}

#cadastro .form-card {
    background: #1b1f3a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 0;
}



#cadastro .form-title {
    margin: 0;
    font-size: 22px !important;
    font-weight: 800;
    color: #9fe3ff;
}

#cadastro .form-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#cadastro .form-card input[type="text"],
#cadastro .form-card input[type="email"],
#cadastro .form-card input[type="password"],
#cadastro .form-card input[type="tel"],
#cadastro .form-card select {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #252a52;
    color: #fff;
    outline: none;
    text-align: center;
    font-size: 15px;
}

#cadastro .form-card .formBlack input::placeholder {
    color: #a0a8d8 !important;
    /* tom de cinza-azulado claro, mas visível */
    opacity: 1 !important;
    font-style: normal;
}

/* OPCIONAL: Foco deixa ainda mais claro */
#cadastro .form-card .formBlack input:focus::placeholder {
    color: #c8d0ff !important;
}

#cadastro .form-card label,
#cadastro .form-card .check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #d8dcf7;
}

#cadastro .form-card input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #22d3ee;
}


#cadastro .form-card .btn-primary,
#cadastro .form-card button[type="submit"] {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 24px;
    background: #22d3ee;
    color: #0b0b19;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

#cadastro .form-card .btn-primary:hover {
    filter: brightness(1.06);
}

#cadastro .form-card .btn-outline {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #fff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

#cadastro .form-card .btn-outline .gdot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ea4335;
    margin-right: 8px;
    vertical-align: middle;
}

#cadastro .form-card .form-foot {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

#cadastro .form-card .form-foot small {
    color: #cfd3ee;
}

#cadastro .form-card .form-foot a {
    color: #4dc9ff;
    text-decoration: none;
}

#cadastro .form-card .form-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px !important;
    }
    
    #cadastro .cad-wrap .cad-right .free-trial-line {
   /* Menos margem */
        white-space: normal !important;   /* Permite quebra */
        font-size: 18px !important;       /* Texto menor */
        padding-right: 16px;              /* Evita corte à direita */
        word-wrap: break-word;
        
    }

    #cadastro .cad-wrap .cad-left .cad-pricing {
        gap: 5px !important;
    }

    .sticky-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        background: linear-gradient(90deg, #000000 0%, #0b004d 25%, #1d0132 50%, #0b004d 75%, #000000 100%);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        /* Safe area para iPhone */
        bottom: env(safe-area-inset-bottom, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .sticky-bottom-bar.visible {
        transform: translateY(0);
    }

    .sticky-bottom-bar.hidden {
        transform: translateY(100%);
    }

    .sticky-bar-container {
        padding: 14px 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .sticky-bar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        position: relative;
    }

    /* Texto */
    .sticky-bar-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .sticky-bar-highlight {
        color: #aa32eb;
        font-weight: 800;
        font-size: 15px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .sticky-bar-text {
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
    }

    /* Botão */
    .sticky-bar-right {
        width: 100%;
        margin-top: 4px;
    }

    .sticky-bar-button {
        display: block;
        width: 100%;
        padding: 12px 20px;
        background: #aa32eb;
        color: white;
        text-align: center;
        font-weight: 700;
        font-size: 15px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(170, 50, 235, 0.3);
    }

    .sticky-bar-button:hover,
    .sticky-bar-button:active {
        background: #c04efb;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(170, 50, 235, 0.4);
    }

    /* Botão fechar */
    .sticky-bar-close {
        position: absolute;
        top: 16px !important;                    /* Um pouco mais baixo */
        right: -100px !important;                  /* Canto direito */
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #ffffff;
        font-size: 22px;
        font-weight: bold;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        z-index: 20;
        /* Sombra sutil */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .sticky-bar-close:hover,
    .sticky-bar-close:active {
        background: rgba(255, 255, 255, 0.35);
        transform: scale(1.1);
        color: #ff4444;
    }
    
}


/* Cadastro Black */
#cadastro .form-card {
    background: #1e2242;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 0;
}

#cadastro .form-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 800;
    color: #0ff8ff;
    text-align: left
}

#cadastro .form-card .formBlack {
    display: flex;
    flex-direction: column;
    gap: 14px
}

#cadastro .form-card .formBlack .vh {
    position: absolute;
    left: -9999px
}

.card-right .form-card .formBlack .field {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.card-right .form-card .formBlack .field label {
    color: #ffffff !important;
}

#cadastro .form-card .formBlack input[type="text"],
#cadastro .form-card .formBlack input[type="email"],
#cadastro .form-card .formBlack input[type="password"] {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    outline: none;
    font-size: 15px
}

#cadastro .form-card .formBlack input::placeholder {
    color: #2d315f
}

#cadastro .form-card .formBlack input:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, .15)
}

#cadastro .form-card .formBlack .consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #d8dcf7
}

#cadastro .form-card .formBlack .consent a {
    color: #d8dcf7;
    text-decoration: underline
}

#cadastro .form-card .formBlack .btnBlackPrimary {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #22d3ee 0%, #8b5cf6 100%);
    color: #0b0b19;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer
}

#cadastro .form-card .formBlack .btnBlackPrimary:hover {
    filter: brightness(1.06)
}

#cadastro .form-card .formBlack .googleWrap {
    display: flex;
    justify-content: center;
    align-items: center
}

#cadastro .form-card .formBlack .footNotes {
    margin-top: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

#cadastro .form-card .formBlack .footNotes small {
    color: #cfd3ee
}

.consent span {
    font-size: 14px;
}

#cadastro .form-card .formBlack .footNotes a {
    color: #0ff8ff;
    text-decoration: none
}

#cadastro .form-card .formBlack .footNotes a:hover {
    text-decoration: underline
}

/* Checklist Planos */
#faixaVantagens {
    background-color: #0b004d;
    color: #f4f4f8;
    padding: 32px 16px;
}

#faixaVantagens .vantagens-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#faixaVantagens .vantagens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width:860px) {
    #faixaVantagens .vantagens-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#faixaVantagens .vantagem {
    position: relative;
    text-align: center;
    padding: 36px 24px 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

#faixaVantagens .vantagem:hover {
    border-color: var(--color-neon-cyan);
} 

#faixaVantagens .vantagem__icon {
    margin: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(15, 248, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, .12);
}

#faixaVantagens .vantagem__icon i {
    font-size: 22px;
    color: #74C0FC;
}

#faixaVantagens .vantagem__title {
    margin: 14px 0 6px;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.3;
}

#faixaVantagens .vantagem__sub {
    margin: 0;
    font-size: 16px;
    color: #cfc6e6;
}

@media (max-width:380px) {
    #faixaVantagens .vantagem {
        padding: 32px 18px 18px;
    }

    #faixaVantagens .vantagem__title {
        font-size: 20px;
    }
}

/* Checklist Planos */
:root {
    --bg: #220826;
    --bg-elev: #2a0b30;
    --card: #2f0d38;
    --card-2: #2b0b33;
    --text: #f2e7ff;
    --muted: #cdb7f2;
    --accent: #8b5cf6;
    --accent-2: #06b6d4;
    --ok: #5eead4;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius: 18px;
}

#checklistPlano .plano-wrapper h2 {
    font-size: 36px;
    text-align: center;
}

#checklistPlano {
    background: #220826;
    color: white;
    padding: 56px 16px 72px;
}

#checklistPlano .plano-wrapper {
    max-width: 1200px;
    margin-inline: auto;
}

#checklistPlano .plano-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 880px) {
    #checklistPlano .plano-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

#checklistPlano .plano-card {
    background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 22px 22px 18px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#checklistPlano .plano-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
    border-color: rgba(139, 92, 246, .35);
}

#checklistPlano .plano-card__header {
    background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

#checklistPlano .plano-card__icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(139, 92, 246, .35);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
    flex: 0 0 44px;
         /* Mantém proporção */
   
}

#checklistPlano .plano-card__icon img {
    width: 25px !important;        /* Tamanho pequeno */
    height: 25px !important; 
    object-fit: contain;
    display: block;
}


#checklistPlano .plano-card__title {
    font-size: 24px;
    margin: 0;
}

#checklistPlano .plano-list {
    list-style: none;
    padding: 6px 0 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

#checklistPlano .plano-list p {
    font-size: 16px;
}

#checklistPlano .plano-cta {
    display: grid;
    place-items: center;
    margin-top: 26px;
}

#checklistPlano .btn-black {
    display: inline-block;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    color: #0b0b19;
    background: linear-gradient(90deg, #22d3ee 0%, #60a5fa 50%, #8b5cf6 100%);
    box-shadow: 0 8px 24px rgba(34, 211, 238, .25), 0 6px 18px rgba(139, 92, 246, .25);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

#checklistPlano .btn-black:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 10px 28px rgba(34, 211, 238, .34), 0 10px 28px rgba(139, 92, 246, .34);
}

#checklistPlano .btn-black:active {
    transform: translateY(0);
}

@media (max-width: 380px) {
    #checklistPlano .plano-card {
        padding: 18px;
    }

    #checklistPlano .plano-card__icon {
        width: 40px;
        height: 40px;
    }

    #checklistPlano .plano-card__title {
        font-size: 1.02rem;
    }
}


.container #faq h2 {
    font-size: 36px !important;
    color: #0ea5e9 !important;
}

.container #faq h3 {
    font-size: 22px !important;
    color: #0ea5e9 !important;
}

.container #faq label {
    background: black !important;
    color: white !important;
}

.container #faq label h3 {
    font-size: 18px !important;
    color: white !important;
}

.container #faqAcc .content {
    font-size: 16px !important;
    color: white !important;
}

/* Tutorial Gifs */
.tituloTutorial {
    color: white !important;
    font-size: 44px;
    margin-left: 10px;
    font-weight: bold;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tutorial-container {
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.secaoContainer h2 {
    font-size: 28px;
}

.secaoContainer {
    flex-direction: column;
    display: flex;
    position: relative;
    padding: 10px;
    height: auto;
    justify-content: center;
    width: 100%;
    align-items: center;
    background-color: black !important;
    transition: background-color 0.3s ease;
}

.secaoContainer.selecionada {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.barrinha {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #0053b8;
    display: none;
}

.tituloSecao {
    color: white !important;
    display: flex;
    align-items: left;
    justify-content: left;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
}

.tituloSecao h2 {
    font-size: 22px !important;
    color: white;
}

.subSecoes .subsecaoTitulo {
    font-size: 18px;
    color: white !important;
}

.tituloSecao:hover {
    background-color: rgba(0, 0, 0, 0.08) !important;
}

.tituloSecao h2 {
    color: white !important;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 8px;
    text-align: left;
    flex-grow: 1;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.secaoContainer.selecionada .dropdown-arrow {
    transform: rotate(180deg);
}

.secoes {
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.subSecoes {
    display: none;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.secaoContainer.selecionada .subSecoes {
    display: flex;
}

.subsecaoTitulo {
    color: white !important;
    cursor: pointer;
    margin-bottom: 5px;
    position: relative;
    margin-left: 10px;
    text-align: left;
    width: 100%;
    font-size: 18px;
}

.subsecaoTitulo:hover {
    color: #000000;
    font-weight: bold;
}
.secaoContainer {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.tituloSecao:hover {
    background-color:  rgba(0, 0, 0, 0.05) !important; /* Subtle hover effect */
}

.dropdown-arrow {
    filter: brightness(0) saturate(100%) invert(100%);
}

.gif-container {
    margin-left: 20px;
    background-color: #f2f4f5;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 800px;
    height: 475px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
}

.gif {
    width: 787px;
    height: 444px;
    object-fit: cover;
    border-radius: 8px;
}

.orientation-popup {
    display: none;
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .tutorial-container {
        width: 100% !important;
    }

    .gif-container {
        width: 68%;
        height: fit-content;
    }

    .gif {
        width: 95%;
        height: 100%;
        object-fit: contain;
    }

    .tituloTutorial {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .gif-container {
        height: fit-content;
    }

    .gif {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 930px) {
    .tituloTutorial {
        font-size: 24px;
        text-align: center;
        color: #000000;
    }

    .tutorial-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        width: 90vw;
        max-width: 90vw;
        box-sizing: border-box;
        padding: 10px;
    }

    .secoes {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .secao {
        width: 100%;
        box-sizing: border-box;
    }

    .barrinha {
        width: 3px;
        position: absolute;
        left: -5px;
    }

    .secaoContainer {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;
        width: 100%;
        box-sizing: border-box;
    }

    .tituloSecao {
        display: flex;
        justify-content: left !important;
        text-align: left;
        width: 100%;
    }

    .subSecoes {
        width: 100%;
        text-align: left;
        margin-left: 0;
    }

    .gif-container {
        display: none !important;
    }

    .subsecaoTitulo {
        font-size: 20px;
        text-align: left;
    }

    #modalGif {
        max-height: 80vh;
        object-fit: contain;
        width: auto;
    }

    .modal-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        background: white;
        border-radius: 8px;
        max-height: 100%;
        width: 90%;
        text-align: center;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content video {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .close {
        position: absolute;
        top: 5px;
        right: 10px;
        color: #aaa;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .secaoContainer h2 {
        font-size: 24px;
    }

    .subsecaoTitulo {
        font-size: 20px;
    }
}

section#tutorialGifs .container h2 {
    font-size: 36px !important;
}

/* LINHA 1: "Ficou na dúvida?" */
#cadastro .form-card .free-trial-line {
    margin-left: 50px !important;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0ff8ff !important;
    white-space: nowrap !important;
    /* ← FORÇA UMA LINHA */
    text-align: left !important;
    line-height: 1.4 !important;
    width: 100%;
}


/* CENTRALIZAÇÃO TOTAL DO FORM-CARD */
#cadastro .form-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    /*padding: 28px 20px !important;*/
    gap: 0 !important;
}

#cadastro .form-card .formBlack {
    width: 90% !important;
    padding: 0;
    margin: 10px;
}

/* RESPONSIVO: Mobile */
@media (max-width: 480px) {
    #cadastro .form-card .free-trial-line1 {
        font-size: 17px !important;
    }

    #cadastro .form-card .free-trial-line2 {
        font-size: 18px !important;
    }
}

/* Barra Sticky Inferior */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    /* Safe area para iPhone */
    background: linear-gradient(90deg, #000000 0%, #0b004d 25%, #1d0132 50%, #0b004d 75%, #000000 100%) !important;
    bottom: env(safe-area-inset-bottom, 0);
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-bottom-bar.hidden {
    transform: translateY(100%);
}

.sticky-bar-container {
    color: white;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    width: 100%;
    box-sizing: border-box;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
    position: relative;
}

.sticky-bar-close {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 100px;
}

.sticky-bar-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sticky-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sticky-bar-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-bar-text {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 600;
}

.sticky-bar-button {
    background: var(--color-white);
    color: #1e3a8a !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    margin-right: 100px                                                                                              ;
}

.sticky-bar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}