/* Cabeçalho e rodapé nativos da Robooster (saída do Elementor, 10/09/2026).
   Cores do kit original: preto #111 no topo, laranja #FF7F00 nos links e botões, cinza #292929 no rodapé,
   texto #D9D9D9. Sem dependência de Font Awesome (ícones SVG inline) nem de fonte externa. */

:root {
	--rb-orange: #FF7F00;
	--rb-orange-dark: #d86a00;
	--rb-black: #111111;
	--rb-foot: #292929;
	--rb-foot-text: #D9D9D9;
	--rb-font: "Montserrat", "Archivo", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: #111; padding: 8px 12px; z-index: 1000; }
.skip-link:focus { left: 8px; top: 8px; }

/* ===== Cabeçalho ===== */
.rb-head { background: var(--rb-black); color: #fff; border-bottom: 1px solid rgba(255,255,255,.18); position: relative; z-index: 60; font-family: var(--rb-font); }
.rb-head__wrap { max-width: 1320px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 22px; }
.rb-head__logo { display: block; flex: 0 0 auto; line-height: 0; }
.rb-head__logo img { height: 46px; width: auto; max-width: 300px; }
.rb-head__nav { display: flex; align-items: center; gap: 22px; flex: 1 1 auto; justify-content: space-between; }
.rb-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; }
.rb-menu li { position: relative; }
.rb-menu a { color: var(--rb-orange); text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: .02em; padding: 8px 0; display: block; transition: color .2s; }
.rb-menu a:hover, .rb-menu .current-menu-item > a, .rb-menu .current_page_item > a { color: #fff; }
.rb-menu .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--rb-black); min-width: 200px; padding: 6px 0; list-style: none; margin: 0; border: 1px solid rgba(255,255,255,.12); }
.rb-menu li:hover > .sub-menu, .rb-menu li:focus-within > .sub-menu { display: block; }
.rb-menu .sub-menu a { padding: 10px 16px; font-size: 14px; }
.rb-head__extras { display: flex; align-items: center; gap: 12px; }
.rb-head__ic { color: #fff; display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; transition: color .2s; position: relative; }
.rb-head__ic svg { width: 19px; height: 19px; }
.rb-head__ic:hover { color: var(--rb-orange); }
.rb-head__badge { position: absolute; top: -4px; right: -4px; background: var(--rb-orange); color: #111; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }
.rb-head__search { display: flex; align-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; overflow: hidden; height: 34px; }
.rb-head__search input { background: transparent; border: 0; color: #fff; padding: 0 12px; width: 120px; font-size: 14px; outline: none; }
.rb-head__search input::placeholder { color: rgba(255,255,255,.55); }
.rb-head__search button { background: transparent; border: 0; color: #fff; padding: 0 10px 0 4px; cursor: pointer; display: inline-flex; }
.rb-head__search button svg { width: 18px; height: 18px; }
.rb-head__cta { flex: 0 0 auto; background: var(--rb-orange); color: #fff !important; font-weight: 700; font-size: 14px; letter-spacing: .12em; text-decoration: none; padding: 12px 22px; border-radius: 6px; transition: background .2s, transform .2s; white-space: nowrap; }
.rb-head__cta:hover { background: var(--rb-orange-dark); transform: translateY(-1px); }
.rb-head__toggle { display: none; background: transparent; border: 0; width: 44px; height: 40px; cursor: pointer; padding: 6px; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; }
.rb-head__toggle span { display: block; height: 3px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.rb-head__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rb-head__toggle.is-open span:nth-child(2) { opacity: 0; }
.rb-head__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
	.rb-menu { gap: 16px; }
	.rb-menu a { font-size: 14px; }
	.rb-head__search input { width: 90px; }
}
@media (max-width: 900px) {
	.rb-head__wrap { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
	.rb-head__logo img { height: 40px; }
	.rb-head__toggle { display: flex; }
	.rb-head__nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 12px; padding: 8px 0 4px; border-top: 1px solid rgba(255,255,255,.12); }
	.rb-head__nav.is-open { display: flex; }
	.rb-menu { flex-direction: column; gap: 0; }
	.rb-menu a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
	.rb-menu .sub-menu { position: static; border: 0; display: block; padding-left: 14px; }
	.rb-head__extras { justify-content: space-between; flex-wrap: wrap; }
	.rb-head__search { flex: 1 1 100%; order: 10; }
	.rb-head__search input { width: 100%; flex: 1; }
	.rb-head__cta { width: 100%; text-align: center; order: 20; }
}

/* ===== Rodapé ===== */
.rb-foot { background: var(--rb-foot); color: var(--rb-foot-text); font-family: var(--rb-font); font-size: 15px; line-height: 1.6; }
.rb-foot a { color: inherit; text-decoration: none; transition: color .2s; }
.rb-foot a:hover { color: var(--rb-orange); }
.rb-foot__wrap { max-width: 1320px; margin: 0 auto; padding: 56px 20px 0; }
.rb-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.rb-foot__brand img { width: 220px; height: auto; margin-bottom: 14px; }
.rb-foot__brand p { margin: 0 0 16px; }
.rb-foot__social { display: flex; gap: 10px; }
.rb-foot__social a { width: 40px; height: 40px; border-radius: 50%; background: var(--rb-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.rb-foot__social a:hover { background: #A7A7A7; color: #fff; }
.rb-foot__social svg { width: 18px; height: 18px; }
.rb-foot__h { color: var(--rb-orange); font-size: 20px; font-weight: 700; text-transform: uppercase; margin: 0 0 16px; line-height: 1.2; font-family: var(--rb-font); }
.rb-foot__col p { margin: 0 0 12px; }
.rb-foot__list { list-style: none; margin: 0; padding: 0; }
.rb-foot__list li { margin: 0 0 10px; }
.rb-foot__list a, .rb-foot__list span { display: inline-flex; align-items: flex-start; gap: 8px; }
.rb-foot__list svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 4px; color: #fff; }
.rb-foot__list--contact svg { color: var(--rb-orange); }
.rb-foot__bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 40px; padding: 20px 0; text-align: center; font-size: 14px; color: #fff; }
.rb-foot__bottom p { margin: 0; }
.rb-foot__bottom a { text-decoration: underline; }

@media (max-width: 900px) {
	.rb-foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.rb-foot__wrap { padding-top: 40px; }
}
@media (max-width: 560px) {
	.rb-foot__grid { grid-template-columns: 1fr; }
}

/* ===== Formulários nativos (contato e curso) ===== */
.rb-form { display: grid; gap: 14px; }
.rb-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.rb-form input[type="text"], .rb-form input[type="email"], .rb-form textarea { width: 100%; box-sizing: border-box; border: 1px solid #cfd6de; border-radius: 6px; padding: 12px 14px; font-size: 15px; font-family: inherit; background: #fff; color: #111; }
.rb-form input:focus, .rb-form textarea:focus { outline: 2px solid var(--rb-orange); outline-offset: 1px; border-color: var(--rb-orange); }
.rb-form textarea { min-height: 140px; resize: vertical; }
.rb-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rb-form__btn { background: var(--rb-orange); color: #fff; border: 0; border-radius: 4px; padding: 18px; font-size: 14px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; transition: background .2s; font-family: inherit; }
.rb-form__btn:hover { background: #33B8CC; }
.rb-form__msg { padding: 14px 16px; border-radius: 8px; font-weight: 600; margin-bottom: 14px; }
.rb-form__msg--ok { background: #e8f7ec; color: #1a6b2f; border: 1px solid #b9e3c4; }
.rb-form__msg--erro { background: #fdecec; color: #8d1f1f; border: 1px solid #f3bcbc; }
.rb-curso__form .rb-form { text-align: left; }
.rb-curso__form .rb-form__btn { background: var(--rb-orange); }
.rb-curso__form .rb-form__btn:hover { background: #a84d0a; }

/* Ajustes da prévia de 10/09 (noite): enquanto o Elementor existir, o kit dele pinta <button> com gradiente e
   o tema pai pinta <input> de branco; especificidade e !important só aqui, para o cabeçalho ficar igual nos dois mundos. */
.rb-menu a { white-space: nowrap; }
.rb-head .rb-head__ic, .rb-head .rb-head__ic svg { color: #fff; fill: currentColor; }
.rb-head .rb-head__ic:hover, .rb-head .rb-head__ic:hover svg { color: var(--rb-orange); }
.rb-head .rb-head__search input, .rb-head .rb-head__search input:focus { background: transparent !important; color: #fff !important; border: 0 !important; box-shadow: none !important; border-radius: 0; height: 32px; }
.rb-head .rb-head__search button, .rb-head .rb-head__search button:hover { background: transparent !important; background-image: none !important; box-shadow: none !important; border: 0 !important; border-radius: 0; color: #fff; padding: 0 10px 0 4px; }
.rb-head .rb-head__toggle, .rb-head .rb-head__toggle:hover, .rb-head .rb-head__toggle:focus { background: transparent !important; background-image: none !important; box-shadow: none !important; border: 0 !important; border-radius: 0; padding: 6px; }
.rb-head .rb-head__toggle span { background: #fff; }
.rb-head__cta, .rb-head__cta:hover { background-image: none !important; }

.rb-form .rb-form__btn, .rb-form .rb-form__btn:hover { background-image: none !important; box-shadow: none !important; }

/* Pedido dele 10/09: títulos das colunas do rodapé mais visíveis (o tema pai pintava h3 de preto por cima). */
.rb-foot .rb-foot__h, .rb-foot h3.rb-foot__h { color: var(--rb-orange) !important; }
