/* ==========================================================================
   Bragança Poços - estilos globais
   ========================================================================== */

@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
	--bg: #F4F7F9;
	--surface: #FFFFFF;
	--ink: #0E2233;
	--muted: #4A5E6D;
	--line: #D9E3EA;
	--deep: #0A1E2E;
	--accent: #0077B6;
	--accent-hover: #00629A;
	--sky: #00A2E5;
	--earth: #926A33;
	--sand: #EFE7DC;
	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Barlow", "Segoe UI", Roboto, sans-serif;
	--r-sm: 4px;
	--r-md: 8px;
	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 8vw, 64px);
	--header-h: 84px;
	--shadow: 0 10px 30px -12px rgba(10, 30, 46, .22);
}

/* Reset leve */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
:where(h1, h2, h3, h4, h5, h6) { margin: 0 0 .5em; font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--ink); letter-spacing: -.005em; }
:where(p, ul, ol, figure, blockquote, dl) { margin: 0 0 1em; }
:where(ul, ol) { padding-left: 1.2em; }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 2px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.bp-skip { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.bp-skip:focus { top: 12px; color: #fff; }

.bp-container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.bp-section { padding-block: var(--section); }
.bp-section__head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.bp-section__head--center { margin-inline: auto; text-align: center; }
.bp-h2 { font-size: clamp(32px, 4.2vw, 50px); }
.bp-h3 { font-size: clamp(23px, 2.2vw, 28px); line-height: 1.12; }
.bp-lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); max-width: 64ch; }
.bp-section__head--center .bp-lead { margin-inline: auto; }

/* Ícones */
.bp-icon { flex: none; }

/* Botões */
.bp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 22px;
	border: 2px solid transparent; border-radius: var(--r-sm);
	font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: .04em; text-transform: uppercase; line-height: 1;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: background-color .2s, color .2s, border-color .2s, transform .15s;
}
.bp-btn:active { transform: translateY(1px); }
.bp-btn--primary { background: var(--accent); color: #fff; }
.bp-btn--primary:hover { background: var(--accent-hover); color: #fff; }
.bp-btn--light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.bp-btn--light:hover { background: #fff; color: var(--deep); border-color: #fff; }
.bp-btn--dark { background: var(--deep); color: #fff; }
.bp-btn--dark:hover { background: var(--ink); color: #fff; }
.bp-btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.bp-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.bp-btn--lg { min-height: 56px; padding: 14px 28px; font-size: 19px; }
.bp-btn--sm { min-height: 40px; padding: 8px 14px; font-size: 16px; }
.bp-btn--block { width: 100%; }

.bp-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: .03em; text-transform: uppercase;
	color: var(--accent); text-decoration: none;
}
.bp-link .bp-icon { transition: transform .2s; }
.bp-link:hover .bp-icon, a:hover .bp-link .bp-icon { transform: translateX(4px); }
.bp-link--light { color: #fff; }
.bp-link--light:hover { color: var(--sky); }

/* ==========================================================================
   Topbar
   ========================================================================== */
.bp-topbar { background: var(--deep); color: #C9D6E0; font-size: 14px; }
.bp-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.bp-topbar__addr { display: flex; align-items: center; gap: 8px; margin: 0; }
.bp-topbar__addr .bp-icon { color: var(--sky); }
.bp-topbar__contacts { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.bp-topbar__link { display: inline-flex; align-items: center; gap: 7px; color: #fff; text-decoration: none; font-weight: 500; }
.bp-topbar__link .bp-icon { color: var(--sky); }
.bp-topbar__link:hover { color: var(--sky); }
@media (max-width: 900px) {
	.bp-topbar__addr, .bp-topbar__mail { display: none; }
	.bp-topbar__inner { justify-content: center; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.bp-header { position: sticky; top: 0; z-index: 100; background: var(--surface); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.admin-bar .bp-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .bp-header { top: 0; } }
.bp-header.is-scrolled { box-shadow: 0 6px 24px -14px rgba(10, 30, 46, .35); }
.bp-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.bp-logo { display: block; flex: none; }
.bp-header .bp-logo__img { height: 66px; width: auto; max-width: none; }
.bp-logo__text { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--accent); line-height: 1; }
.bp-logo__text small { display: block; font-size: 15px; color: var(--earth); }
.bp-header__actions { display: flex; align-items: center; gap: 12px; }
.bp-header__cta { display: none; }
.bp-burger { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; border-radius: var(--r-sm); }

/* Menu desktop */
.bp-nav { margin-left: auto; }
.bp-nav__head, .bp-nav__cta { display: none; }
.bp-menu, .bp-menu ul { list-style: none; margin: 0; padding: 0; }
.bp-menu { display: flex; align-items: center; gap: 2px; }
.bp-menu > li { position: relative; display: flex; align-items: center; }
.bp-menu a {
	display: block; padding: 10px 11px;
	font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .03em; text-transform: uppercase;
	color: var(--ink); text-decoration: none; white-space: nowrap;
}
.bp-menu > li > a { position: relative; }
.bp-menu > li > a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.bp-menu > li:hover > a::after, .bp-menu > .current-menu-item > a::after, .bp-menu > .current-menu-ancestor > a::after { transform: scaleX(1); }
.bp-menu .current-menu-item > a, .bp-menu .current-menu-ancestor > a { color: var(--accent); }
.bp-menu > li.menu-item-has-children > a { padding-right: 4px; }
.bp-menu > li.menu-item-has-children > a::after { right: 4px; }
.bp-sub-toggle { display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; padding: 4px 8px 4px 2px; color: var(--muted); cursor: pointer; }
.bp-menu .sub-menu {
	position: absolute; top: 100%; left: 0; z-index: 20; min-width: 290px;
	padding: 10px 0; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 0 0 var(--r-md) var(--r-md);
	box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.bp-menu .sub-menu .sub-menu { top: -10px; left: 100%; }
.bp-menu li:hover > .sub-menu, .bp-menu li:focus-within > .sub-menu, .bp-menu li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.bp-menu .sub-menu a { padding: 9px 20px; font-family: var(--font-body); font-weight: 500; font-size: 15px; letter-spacing: 0; text-transform: none; white-space: normal; }
.bp-menu .sub-menu a:hover { background: var(--bg); color: var(--accent); }
.bp-menu .sub-menu .bp-sub-toggle { display: none; }

@media (min-width: 1440px) {
	.bp-header__cta { display: inline-flex; }
}

/* Menu mobile / tablet */
@media (max-width: 1239px) {
	:root { --header-h: 72px; }
	.bp-header .bp-logo__img { height: 54px; }
	.bp-header__actions { margin-left: auto; }
	.bp-burger { display: inline-flex; }
	.bp-header__cta { display: inline-flex; min-height: 44px; padding: 10px 16px; font-size: 16px; }
	.bp-nav {
		position: fixed; inset: 0 0 0 auto; z-index: 300; width: min(400px, 88vw); margin: 0;
		display: flex; flex-direction: column; background: var(--surface); overflow-y: auto;
		transform: translateX(100%); transition: transform .28s ease; visibility: hidden;
	}
	.bp-nav.is-open { transform: none; visibility: visible; }
	.bp-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
	.bp-nav__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; }
	.bp-nav__close { background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ink); }
	.bp-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
	.bp-menu > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
	.bp-menu > li > a { flex: 1; padding: 14px 20px; font-size: 19px; }
	.bp-menu > li > a::after { display: none; }
	.bp-sub-toggle { width: 52px; height: 52px; padding: 0; }
	.bp-sub-toggle svg { width: 16px; height: 16px; transition: transform .2s; }
	.bp-menu li.is-open > .bp-sub-toggle svg { transform: rotate(180deg); }
	.bp-menu .sub-menu { position: static; display: none; width: 100%; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; background: var(--bg); padding: 6px 0; }
	.bp-menu li:hover > .sub-menu, .bp-menu li:focus-within > .sub-menu { display: none; }
	.bp-menu li.is-open > .sub-menu { display: block; }
	.bp-menu .sub-menu a { padding: 10px 28px; font-size: 16px; }
	.bp-nav__cta { display: block; padding: 20px; margin-top: auto; }
	.bp-nav-overlay { position: fixed; inset: 0; z-index: 250; background: rgba(10, 30, 46, .55); }
	body.bp-menu-open { overflow: hidden; }
	body.bp-menu-open .bp-header { z-index: 400; }
}
@media (max-width: 560px) {
	.bp-header__cta { display: none !important; }
}

/* ==========================================================================
   Páginas internas
   ========================================================================== */
.bp-pagehero { position: relative; background: var(--deep) var(--bp-bg-agua) center / cover no-repeat; color: #fff; padding-block: clamp(44px, 6vw, 72px); overflow: hidden; }
.bp-pagehero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 30, 46, .55) 0%, rgba(10, 30, 46, .2) 60%, rgba(10, 30, 46, 0) 100%); pointer-events: none; }
.bp-pagehero .bp-container { position: relative; }
.bp-pagehero__title { color: #fff; font-size: clamp(34px, 5vw, 58px); margin: 0; }
.bp-pagehero__sub { margin: 14px 0 0; color: #E3ECF3; font-size: clamp(17px, 1.5vw, 19px); max-width: 62ch; }
.bp-breadcrumb { margin-bottom: 14px; font-size: 14px; color: #9FB3C3; }
.bp-breadcrumb a { color: #fff; text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--sky); }

.bp-entry__content { max-width: 880px; }
.bp-entry__content > * { max-width: 100%; }
.bp-entry__content :where(h2) { font-size: clamp(28px, 3vw, 38px); margin-top: 1.4em; }
.bp-entry__content :where(h3) { font-size: clamp(22px, 2.2vw, 28px); margin-top: 1.3em; }
.bp-entry__content :where(img) { border-radius: var(--r-md); }
.bp-entry__content :where(blockquote) { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--earth); color: var(--muted); font-style: italic; }
.bp-entry__content :where(table) { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; }
.bp-entry__content :where(th, td) { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.bp-entry__thumb { margin-bottom: 32px; }
.bp-entry__thumb img { width: 100%; border-radius: var(--r-md); }
.alignwide { max-width: 1100px; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption-text, figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Listagem de posts */
.bp-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.bp-post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; }
.bp-post-card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.bp-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bp-post-card__title { font-size: 25px; margin: 0; }
.bp-post-card__title a { color: var(--ink); text-decoration: none; }
.bp-post-card__title a:hover { color: var(--accent); }
.bp-post-card .bp-link { margin-top: auto; }
.nav-links { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.page-numbers { display: inline-flex; min-width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--r-sm); text-decoration: none; }
.page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Formulários genéricos */
:where(input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], input[type="number"], textarea, select) {
	width: 100%; padding: 12px 14px; font: inherit; color: var(--ink); background: var(--surface);
	border: 1px solid #B9C9D5; border-radius: var(--r-sm);
}
.search-form { display: flex; gap: 8px; max-width: 520px; }
.search-submit { background: var(--accent); color: #fff; border: 0; border-radius: var(--r-sm); padding: 0 20px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; cursor: pointer; }

/* ==========================================================================
   FAQ (global)
   ========================================================================== */
.bp-faq { padding-block: var(--section); background: var(--surface); border-top: 1px solid var(--line); }
.bp-faq__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.bp-faq__head { position: sticky; top: calc(var(--header-h) + 32px); }
.bp-faq__list { border-top: 1px solid var(--line); }
.bp-faq__item { border-bottom: 1px solid var(--line); }
.bp-faq__item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 22px 0; cursor: pointer; list-style: none;
	font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.8vw, 23px); line-height: 1.2; color: var(--ink);
}
.bp-faq__item summary::-webkit-details-marker { display: none; }
.bp-faq__item summary .bp-icon { color: var(--accent); transition: transform .2s; }
.bp-faq__item[open] summary .bp-icon { transform: rotate(45deg); }
.bp-faq__item summary:hover { color: var(--accent); }
.bp-faq__answer { padding: 0 48px 22px 0; color: var(--muted); max-width: 70ch; }
.bp-faq__answer p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
	.bp-faq__grid { grid-template-columns: 1fr; }
	.bp-faq__head { position: static; }
	.bp-faq__answer { padding-right: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.bp-footer { color: #C9D6E0; }
.bp-footer__wave { color: var(--deep); line-height: 0; background: var(--surface); }
.bp-footer__wave svg { width: 100%; height: 48px; }
.bp-footer__body { background: linear-gradient(180deg, var(--deep) 0, rgba(10, 30, 46, .82) 180px, rgba(10, 30, 46, .7) 100%), var(--deep) var(--bp-bg-agua) center / cover no-repeat; padding-top: clamp(40px, 5vw, 64px); }
.bp-footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.bp-footer__logo { display: inline-block; background: #fff; padding: 12px 16px; border-radius: var(--r-md); margin-bottom: 20px; }
.bp-footer .bp-footer__logo img { height: 72px; width: auto; }
.bp-footer__brand p { max-width: 38ch; margin-bottom: 24px; }
.bp-footer__title { font-size: 20px; color: #fff; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--earth); display: inline-block; }
.bp-footer__menu, .bp-footer__contact ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.bp-footer a { color: #C9D6E0; text-decoration: none; }
.bp-footer a:hover { color: var(--sky); }
.bp-footer .bp-btn--primary, .bp-footer .bp-btn--primary:hover { color: #fff; }
.bp-footer__contact a, .bp-footer__addr { display: inline-flex; align-items: flex-start; gap: 10px; max-width: 100%; }
.bp-footer__contact span { min-width: 0; overflow-wrap: anywhere; }
.bp-footer__contact .bp-icon { color: var(--sky); margin-top: 3px; }
.bp-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .18); font-size: 14px; color: #C9D6E0; }
.bp-footer__bottom p { margin: 0; }
@media (max-width: 1000px) { .bp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bp-footer__grid { grid-template-columns: 1fr; } }

/* Botão flutuante (abre o formulário de WhatsApp) */
.bp-float-wa {
	position: fixed; right: 20px; bottom: 20px; z-index: 90;
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; border-radius: 50%;
	background: var(--accent); color: #fff; box-shadow: 0 10px 24px -8px rgba(10, 30, 46, .45);
	transition: transform .2s;
}
.bp-float-wa:hover { color: #fff; transform: scale(1.06); }

/* ==========================================================================
   WhatsApp (botões e ícones que abrem o popup do FormCraft)
   ========================================================================== */
:root { --wa: #1A9A4A; --wa-hover: #157F3C; --wa-icon: #25D366; }
a.bp-btn.call-whatsapp, a.bp-float-wa.call-whatsapp { background: var(--wa); border-color: var(--wa); color: #fff; }
a.bp-btn.call-whatsapp:hover, a.bp-btn.call-whatsapp:focus-visible, a.bp-float-wa.call-whatsapp:hover { background: var(--wa-hover); border-color: var(--wa-hover); color: #fff; }
a.bp-btn.call-whatsapp .bp-icon { color: #fff; }
.bp-topbar a.call-whatsapp .bp-icon, .bp-footer__contact a.call-whatsapp .bp-icon { color: var(--wa-icon); }
.bp-topbar a.call-whatsapp:hover, .bp-footer__contact a.call-whatsapp:hover { color: var(--wa-icon); }

/* ==========================================================================
   Contatos: 3 telefones, ícones brancos no topo e no rodapé
   ========================================================================== */
.bp-topbar .bp-icon, .bp-footer__contact .bp-icon { transition: color .2s; }
.bp-topbar__addr .bp-icon,
.bp-topbar__link .bp-icon,
.bp-topbar a.call-whatsapp .bp-icon,
.bp-footer__contact .bp-icon,
.bp-footer__contact a.call-whatsapp .bp-icon { color: #fff; }
.bp-topbar a.call-whatsapp:hover, .bp-topbar a.call-whatsapp:focus-visible,
.bp-topbar a.call-whatsapp:hover .bp-icon, .bp-topbar a.call-whatsapp:focus-visible .bp-icon,
.bp-footer__contact a.call-whatsapp:hover, .bp-footer__contact a.call-whatsapp:focus-visible,
.bp-footer__contact a.call-whatsapp:hover .bp-icon, .bp-footer__contact a.call-whatsapp:focus-visible .bp-icon { color: var(--wa-icon, #25D366); }
.bp-topbar a[href^="mailto:"]:hover, .bp-topbar a[href^="mailto:"]:focus-visible,
.bp-topbar a[href^="mailto:"]:hover .bp-icon, .bp-topbar a[href^="mailto:"]:focus-visible .bp-icon,
.bp-footer__contact a[href^="mailto:"]:hover, .bp-footer__contact a[href^="mailto:"]:focus-visible,
.bp-footer__contact a[href^="mailto:"]:hover .bp-icon, .bp-footer__contact a[href^="mailto:"]:focus-visible .bp-icon { color: var(--sky); }

/* Telefones dentro do menu (só quando saem do topo, em telas estreitas) */
.bp-nav__phones { display: none; list-style: none; margin: 0 0 16px; padding: 0; gap: 4px; }
.bp-nav__phones a { display: flex; align-items: center; gap: 12px; padding: 10px 4px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 18px; }
.bp-nav__phones .bp-icon { color: #1A9A4A; }
.bp-nav__phones a:hover { color: #1A9A4A; }

@media (max-width: 600px) {
	.bp-topbar { font-size: 13px; }
	.bp-topbar__inner { min-height: 36px; }
	.bp-topbar__contacts { gap: 14px; }
	.bp-topbar__link { gap: 5px; }
	.bp-topbar__link .bp-icon { width: 14px; height: 14px; }
}
@media (max-width: 400px) {
	.bp-topbar { font-size: 12.5px; }
	.bp-topbar__contacts { gap: 10px; }
	.bp-topbar__link { gap: 4px; }
	.bp-topbar__link .bp-icon { width: 13px; height: 13px; }
}
@media (max-width: 359px) {
	.bp-topbar__inner { display: none; }
	.bp-nav__phones { display: grid; }
}