/**
 * Page: LP - Adquirência (pg-adquirencia.php)
 *
 * Regras aqui restritas a markup que NÃO controlamos via template:
 *  - .newNavbar* (vem de inc/topbar.php — shared entre todas as páginas)
 *  - HubSpot form (gerado em runtime pelo embed JS)
 *  - Conteúdo ACF dinâmico (parágrafos/marks/spans)
 *  - .floating-icon (renderizado pelo tema global)
 *
 * Todo o resto está como classe Tailwind inline no PHP.
 */

/* ── Navbar overrides: LP esconde nav links, bg transparente ── */
html .newNavbar {
    background: transparent !important;
    top: 70px;
    position: absolute;
}
html .newNavbar__nav { display: none !important; }
.newNavbarMobile__logo svg path { fill: white !important; }

/* ── Sessão Formulário: força left-align no conteúdo ACF (exceto .text-right da seta) ── */
#formulario .lg\:w-5\/12 p,
#formulario .lg\:w-5\/12 div:not(.text-right),
#formulario .lg\:w-5\/12 div:not(.text-right) *,
#formulario .lg\:w-5\/12 span {
    text-align: left !important;
}

/* Tamanhos por parágrafo da descrição ACF */
#formulario .lg\:w-5\/12 .text-lg p:nth-of-type(1) { font-size: 24px !important; line-height: 1.4 !important; }
#formulario .lg\:w-5\/12 .text-lg p:nth-of-type(2) { font-size: 20px !important; line-height: 1.5 !important; }
#formulario .lg\:w-5\/12 .text-lg p:nth-of-type(3) { font-size: 18px !important; line-height: 1.5 !important; }

/* ── HubSpot form (markup gerado em runtime — não dá pra Tailwind inline) ── */
.form-container .hs-form-field { margin-bottom: 1.25rem; }

.form-container .hs-form-field label,
.form-container label {
    color: white !important;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-container .hs-form-booleancheckbox span {
    font-weight: 400 !important;
    line-height: 20px;
}

.legal-consent-container { margin: 0; }

.form-container input[type=text],
.form-container input[type=email],
.form-container input[type=tel],
.form-container input[type=url] {
    padding: 1rem !important;
    font-size: 0.95rem;
}

.form-container select.hs-input,
.form-container select {
    border: 1px solid rgba(111, 122, 121, 0.36);
    border-radius: 8px;
    height: unset;
    padding: 1rem !important;
    font-family: var(--font-sans) !important;
    font-size: 0.95rem;
    color: var(--color-dock-gray);
    background-color: #fff;
    width: 100%;
    appearance: auto;
}

.form-container .hs-button {
    background: #00d8d8 !important;
    color: #000 !important;
    border: none !important;
    font-family: var(--font-mono) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 1rem 1.75rem !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-top: 0.5rem;
}
.form-container .hs-button:hover { background: #eeff88 !important; }

/* ── ACF hero: neutraliza bg-dock-cyan em marks/spans do conteúdo ── */
.adquirencia-hero-row h1 mark,
.adquirencia-hero-row h1 span[class] {
    background: transparent !important;
    color: inherit !important;
}

/* ── Floating icon (hidden globally nesta LP) ── */
.floating-icon { display: none !important; }
