/* =========================================================================
   Toca Engenharia — main.css
   Tokens (cores/fontes) vêm de :root gerado por inc/enqueue.php.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

/* O atributo hidden precisa vencer os display:flex/block das regras abaixo
   (popup, lightbox, menu mobile começam com hidden e são revelados via JS). */
[hidden] { display: none !important; }

:root {
	--toca-accent: #016080;
	--toca-accent-dark: #01485f;
	--toca-heading: #000;
	--toca-text: #7a7a7a;
	--toca-cta-bg: #016080;
	--toca-footer-bg: #1b1b1b;
	--toca-footer-text: #b7b7b7;
	--toca-topbar-bg: #fff;
	--toca-header-bg: #fff;
	--toca-header-link: #000;
	--toca-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--toca-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--toca-font-base: 13px;
	--toca-nav-size: 11px;
	--toca-logo-h: 40px;
	--toca-logo-h-sticky: 34px;
	--toca-hero-overlay: 0.45;
	--toca-container: 1140px;
	--toca-header-h: 92px;
}

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--toca-font-body);
	font-size: var(--toca-font-base);
	line-height: 1.7;
	color: var(--toca-text);
	background: #fff;
	overflow-x: hidden;
}

body.toca-no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--toca-font-heading);
	color: var(--toca-heading);
	line-height: 1.25;
	margin: 0 0 .6em;
	font-weight: 600;
}

p { margin: 0 0 1em; }

a { color: var(--toca-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--toca-accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.toca-container {
	width: 100%;
	max-width: var(--toca-container);
	margin: 0 auto;
	padding: 0 20px;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
.toca-skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 9999;
	clip: auto; width: auto; height: auto;
	background: #fff; color: #000; padding: 10px 16px; border-radius: 4px;
}

/* ── Botões ───────────────────────────────────────────────────────────── */
.toca-btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--toca-accent);
	color: #fff;
	font-family: var(--toca-font-heading);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	border: 2px solid var(--toca-accent);
	border-radius: 2px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.toca-btn:hover { background: var(--toca-accent-dark); border-color: var(--toca-accent-dark); color: #fff; }
.toca-btn--block { display: block; width: 100%; }

.toca-btn--ghost {
	background: transparent;
	border-color: #fff;
	color: #fff;
}
.toca-btn--ghost:hover { background: #fff; color: var(--toca-heading); border-color: #fff; }

/* Botão preto com fonte branca (usado nos slides do Hero) */
.toca-btn--dark {
	background: #000;
	border-color: #000;
	color: #fff;
}
.toca-btn--dark:hover { background: #fff; border-color: #fff; color: #000; }

/* ── Topbar ───────────────────────────────────────────────────────────── */
.toca-topbar {
	background: var(--toca-topbar-bg);
	font-size: 12px;
}
/* Topbar tem padding próprio (menor que o do header), pra os ícones
   ficarem mais à esquerda que o logo. */
.toca-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 16px;
	padding: 0px 0px 0 50px;
}
.toca-topbar__social { display: flex; align-items: center; gap: 2px; }
.toca-topbar__social a { color: var(--toca-accent); display: inline-flex; padding: 10px; }
.toca-topbar__social a:hover { opacity: .7; }
.toca-topbar__text { color: var(--toca-text); }

/* ── Header ───────────────────────────────────────────────────────────── */
.toca-header {
	background: var(--toca-header-bg);
	position: relative;
	z-index: 200;
	transition: box-shadow .25s ease, padding .25s ease;
}
.toca-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--toca-header-h);
	gap: 24px;
}
.toca-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.toca-header__logo img,
.toca-header .custom-logo {
	height: var(--toca-logo-h);
	width: auto;
	transition: height .25s ease;
}
.toca-header__site-name {
	font-family: var(--toca-font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--toca-heading);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.toca-header__nav { flex: 1; display: flex; justify-content: flex-end; }
.toca-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.toca-menu li { position: relative; }
.toca-menu a {
	display: block;
	padding: 8px 12px;
	font-family: var(--toca-font-heading);
	font-size: var(--toca-nav-size);
	font-weight: 400;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--toca-header-link);
}
.toca-menu a:hover,
.toca-menu .current-menu-item > a,
.toca-menu .current_page_item > a { color: var(--toca-accent); }

/* Submenu */
.toca-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .2s ease;
	z-index: 30;
}
.toca-menu li:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.toca-menu ul.sub-menu a { padding: 8px 18px; }

.toca-header__burger {
	display: none;
	background: none;
	border: 0;
	padding: 6px;
	color: var(--toca-heading);
	cursor: pointer;
}

/* Sticky */
.toca-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
	animation: toca-slidedown .3s ease;
}
.toca-header.is-sticky .toca-header__inner { min-height: 68px; }
.toca-header.is-sticky .toca-header__logo img,
.toca-header.is-sticky .custom-logo { height: var(--toca-logo-h-sticky); }
.toca-header-spacer { height: 0; }

@keyframes toca-slidedown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ── Overlay + Menu mobile ────────────────────────────────────────────── */
.toca-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 290;
	opacity: 0;
	transition: opacity .3s ease;
}
.toca-overlay.is-open { opacity: 1; }

.toca-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(320px, 84vw);
	height: 100%;
	background: #fff;
	z-index: 300;
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow-y: auto;
	padding-bottom: 40px;
}
.toca-mobile-menu.is-open { transform: translateX(0); }
.toca-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid #eee;
}
.toca-mobile-menu__title {
	font-family: var(--toca-font-heading);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	color: var(--toca-heading);
}
.toca-mobile-menu__close { background: none; border: 0; padding: 4px; cursor: pointer; color: var(--toca-heading); }
.toca-mobile-menu__list, .toca-mobile-menu .toca-menu {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	display: block;
}
.toca-mobile-menu__list li a, .toca-mobile-menu .toca-menu a {
	display: block;
	padding: 13px 22px;
	font-family: var(--toca-font-heading);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--toca-heading);
	border-bottom: 1px solid #f2f2f2;
}
.toca-mobile-menu__list ul.sub-menu { list-style: none; margin: 0; padding: 0; }
.toca-mobile-menu__list ul.sub-menu a { padding-left: 38px; }

/* ── Seções ───────────────────────────────────────────────────────────── */
.toca-section { padding: 80px 0; }
.toca-section-head { text-align: center; margin-bottom: 46px; }
.toca-section-title {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--toca-heading);
	margin: 0;
}
.toca-section-rule {
	display: block;
	width: 66px;
	height: 1px;
	background: var(--toca-accent);
	margin: 18px auto 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.toca-hero {
	position: relative;
	overflow: hidden;
	height: clamp(460px, 74vh, 720px);
}
.toca-hero__track { position: absolute; inset: 0; }
.toca-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease;
}
.toca-hero__slide.is-active { opacity: 1; visibility: visible; }
.toca-hero--kenburns .toca-hero__slide.is-active { animation: toca-kenburns 12s ease forwards; }
@keyframes toca-kenburns { from { background-size: 105%; } to { background-size: 118%; } }

.toca-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--toca-hero-overlay));
}
.toca-hero__content {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 760px;
}
.toca-hero__slide--center .toca-hero__content { margin: 0 auto; text-align: center; }
.toca-hero__slide--left .toca-hero__content { text-align: left; }

.toca-hero__title {
	color: #fff;
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 600;
	margin: 0 0 .35em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}
.toca-hero__subtitle {
	font-size: clamp(15px, 2vw, 20px);
	margin: 0 0 1.8em;
	color: rgba(255, 255, 255, .92);
}
.toca-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(0, 0, 0, .25);
	border: 0;
	color: #fff;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
}
.toca-hero__arrow:hover { background: var(--toca-accent); }
.toca-hero__arrow--prev { left: 14px; }
.toca-hero__arrow--next { right: 14px; }

.toca-hero__dots {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.toca-hero__dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background .2s ease;
}
.toca-hero__dot.is-active { background: #fff; }

/* ── Sobre Nós ────────────────────────────────────────────────────────── */
.toca-about { padding: 80px 0; }
.toca-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}
@media (min-width: 900px) {
	.toca-about__grid { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}
.toca-about__intro { color: var(--toca-text); margin-bottom: 34px; }
.toca-about__boxes { display: grid; gap: 26px; }

.toca-iconbox--inline {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 18px;
	align-items: start;
}
.toca-iconbox--inline .toca-iconbox__icon {
	width: 46px;
	height: 46px;
	color: var(--toca-accent);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
}
.toca-iconbox--inline .toca-iconbox__body { text-align: center; }
.toca-iconbox--inline .toca-iconbox__title {
	font-size: 17px;
	margin: 0 0 .3em;
	text-transform: none;
}
.toca-iconbox--inline .toca-iconbox__text { font-size: var(--toca-font-base); margin: 0; }

.toca-about__media {
	position: relative;
	max-width: 460px;
	margin-inline: auto;
}
@media (min-width: 900px) { .toca-about__media { margin-right: 0; } }
/* Sem corte: a imagem aparece na proporção real (retrato ou paisagem). */
.toca-about__img { display: block; width: 100%; height: auto; border-radius: 2px; }

/* ── Clientes / Responsabilidade Social ───────────────────────────────── */
.toca-clients {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 90px 0;
}
.toca-clients--fixed { background-attachment: fixed; }
.toca-clients__tint {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 25, .78);
}
.toca-clients__inner { position: relative; z-index: 2; text-align: center; }
.toca-clients__panel { margin: 0 auto; max-width: 100%; }

/* ── Grid de Projetos (Portfolio) ─────────────────────────────────────── */
.toca-portfolio { padding: 80px 0; }
.toca-portfolio-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.toca-portfolio-item {
	width: calc(33.333% - 13.334px);
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: #eee;
}
.toca-portfolio-item:focus-visible { outline: 3px solid var(--toca-accent); outline-offset: 2px; }
.toca-portfolio-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.toca-portfolio-item__img--placeholder { background: repeating-linear-gradient(45deg, #e6e6e6, #e6e6e6 12px, #dedede 12px, #dedede 24px); }

.toca-portfolio-item__hover {
	position: absolute;
	inset: 0;
	background: rgba(1, 96, 128, .88);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 24px;
	opacity: 0;
	transition: opacity .3s ease;
}
.toca-portfolio-item:hover .toca-portfolio-item__img,
.toca-portfolio-item:focus .toca-portfolio-item__img { transform: scale(1.05); }
.toca-portfolio-item:hover .toca-portfolio-item__hover,
.toca-portfolio-item:focus .toca-portfolio-item__hover { opacity: 1; }

.toca-portfolio-item__type {
	font-size: 12px;
	text-transform: uppercase;
	opacity: .85;
	margin-bottom: 10px;
}
.toca-portfolio-item__title {
	color: #fff;
	font-size: 27px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.3;
}
.toca-portfolio-item__subtitle {
	margin: 0;
	font-size: var(--toca-font-base);
	line-height: 1.5;
	white-space: pre-line;
	max-width: 92%;
}

/* Ícone "+" — some no hover (desktop) e fica sempre visível no mobile. */
.toca-portfolio-item__icon {
	position: absolute;
	right: 14px;
	bottom: 8px;
	z-index: 2;
	font-size: 46px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	opacity: 0;
	transition: opacity .3s ease;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
	pointer-events: none;
}
.toca-portfolio-item:hover .toca-portfolio-item__icon,
.toca-portfolio-item:focus .toca-portfolio-item__icon { opacity: 1; }

@media (hover: none), (max-width: 768px) {
	.toca-portfolio-item__icon { opacity: 1; }
}
.toca-portfolio-empty { text-align: center; color: var(--toca-text); }
.toca-portfolio__more, .toca-portfolio-archive .toca-portfolio__more { text-align: center; margin-top: 40px; }

/* ── Faixa CTA ────────────────────────────────────────────────────────── */
.toca-cta { background: var(--toca-cta-bg); padding: 54px 0; }
.toca-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.toca-cta__heading {
	color: #fff;
	font-family: var(--toca-font-heading);
	font-size: clamp(18px, 2.4vw, 24px);
	font-weight: 500;
	margin: 0;
	line-height: 1.5;
}
.toca-cta .toca-btn--ghost { flex-shrink: 0; }

/* ── Serviços ─────────────────────────────────────────────────────────── */
.toca-services { padding: 80px 0; background: #fff; }
.toca-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px 44px;
}
@media (min-width: 640px) { .toca-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .toca-services__grid { grid-template-columns: repeat(3, 1fr); } }

.toca-iconbox { text-align: center; }
.toca-iconbox__icon {
	color: var(--toca-accent);
	display: inline-flex;
	margin-bottom: 16px;
}
.toca-iconbox__title {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 0 0 .7em;
}
.toca-iconbox__text { font-size: var(--toca-font-base); margin: 0; color: var(--toca-text); }

/* ── Mapa ─────────────────────────────────────────────────────────────── */
.toca-map { line-height: 0; }
.toca-map iframe { filter: grayscale(.1); }

/* ── Rodapé ───────────────────────────────────────────────────────────── */
.toca-footer {
	background: var(--toca-footer-bg);
	color: var(--toca-footer-text);
	font-size: var(--toca-font-base);
}
.toca-footer a { color: var(--toca-footer-text); }
.toca-footer a:hover { color: #fff; }
.toca-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 60px 20px 46px;
}
@media (min-width: 800px) {
	.toca-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 50px; }
}
.toca-footer__title {
	color: #fff;
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 18px;
	position: relative;
	padding-bottom: 10px;
}
.toca-footer__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--toca-accent);
}
.toca-footer__text { line-height: 1.8; }
.toca-footer__menu { list-style: none; margin: 0; padding: 0; }
.toca-footer__menu li { margin-bottom: 12px; }
.toca-footer__menu a { color: var(--toca-footer-text); }
.toca-footer__menu .current-menu-item > a,
.toca-footer__menu .current_page_item > a { color: var(--toca-accent); }

.toca-footer__contact { margin: 0; }
.toca-footer__contact p { margin: 0 0 22px; line-height: 1.6; }
.toca-footer__contact p:last-child { margin-bottom: 0; }
.toca-footer__contact a { color: var(--toca-footer-text); }
.toca-footer__contact a:hover { color: #fff; }
.toca-footer__contact-label { color: inherit; }

.toca-footer__bottom { background: #000; border-top: 1px solid rgba(255, 255, 255, .08); }
.toca-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 20px;
	font-size: 13px;
}
.toca-footer__copy { margin: 0; }
.toca-footer__credit a { color: #fff; text-decoration: underline; }
.toca-footer__social { display: flex; gap: 6px; }
.toca-footer__social a { display: inline-flex; padding: 6px; }

/* ── WhatsApp flutuante ───────────────────────────────────────────────── */
.toca-whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 400;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
	transition: transform .2s ease;
}
.toca-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ── Popup Fale Conosco ───────────────────────────────────────────────── */
.toca-popup {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .25s ease;
}
.toca-popup.is-open { opacity: 1; }
.toca-popup__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.toca-popup__box {
	position: relative;
	background: #fff;
	border-radius: 8px;
	width: 100%;
	max-width: 420px;
	padding: 32px 28px 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	transform: translateY(12px);
	transition: transform .25s ease;
}
.toca-popup.is-open .toca-popup__box { transform: translateY(0); }
.toca-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: 0;
	cursor: pointer;
	color: #555;
	padding: 4px;
}
.toca-popup__title { text-align: center; margin: 0 0 22px; font-size: 22px; }

.toca-field { position: relative; margin-bottom: 14px; }
.toca-field__ic {
	position: absolute;
	left: 12px;
	top: 13px;
	color: var(--toca-accent);
	pointer-events: none;
}
.toca-field input,
.toca-field textarea {
	width: 100%;
	padding: 11px 12px 11px 38px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	font: inherit;
	font-size: var(--toca-font-base);
	color: #333;
}
.toca-field textarea { resize: vertical; min-height: 96px; }
.toca-field input:focus,
.toca-field textarea:focus { outline: 0; border-color: var(--toca-accent); box-shadow: 0 0 0 2px rgba(1, 96, 128, .15); }
.toca-hp { position: absolute; left: -9999px; }

.toca-contact-form__feedback {
	margin: 12px 0 0;
	padding: 10px 12px;
	border-radius: 5px;
	font-size: 13px;
	text-align: center;
}
.toca-contact-form__feedback.is-success { background: #e6f4ea; color: #1e7e34; }
.toca-contact-form__feedback.is-error { background: #fdecea; color: #b32d2e; }

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.toca-lightbox {
	position: fixed;
	inset: 0;
	z-index: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}
.toca-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .85); }
.toca-lightbox__img {
	position: relative;
	max-width: 90vw;
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 10px 50px rgba(0, 0, 0, .5);
}
.toca-lightbox__close {
	position: absolute;
	top: 16px;
	right: 22px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}
.toca-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	color: #fff;
	font-size: 44px;
	cursor: pointer;
	padding: 10px 16px;
	z-index: 2;
	user-select: none;
}
.toca-lightbox__nav--prev { left: 8px; }
.toca-lightbox__nav--next { right: 8px; }

/* ── Páginas internas / prose ─────────────────────────────────────────── */
.toca-main { min-height: 40vh; }
.toca-prose { padding: 60px 20px; }
.toca-page-header { margin-bottom: 30px; }
.toca-page-title { font-size: clamp(26px, 4vw, 40px); }
.toca-entry-content h2 { margin-top: 1.4em; }
.toca-post-list { display: grid; gap: 40px; }
.toca-post-card__title { font-size: 22px; margin: 10px 0 4px; }
.toca-post-card__meta { font-size: 13px; color: var(--toca-text); }

.toca-project-single__cat {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--toca-accent);
	margin-bottom: 8px;
}
.toca-project-single__sub { font-size: 17px; color: var(--toca-text); }
.toca-project-single__hero { margin: 24px 0; }
.toca-project-single__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
	margin-top: 30px;
}
.toca-project-single__gitem img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.toca-project-single__back { font-size: var(--toca-font-base); margin-bottom: 20px; }

/* ── Responsivo ───────────────────────────────────────────────────────── */
@media (max-width: 980px) {
	.toca-portfolio-item { width: calc(50% - 10px); }
}
@media (max-width: 900px) {
	:root { --toca-header-h: 76px; }
	.toca-header__nav { display: none; }
	.toca-header__burger { display: inline-flex; }
	.toca-section, .toca-about, .toca-portfolio, .toca-services { padding: 56px 0; }
	.toca-cta__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
	.toca-portfolio-item { width: 100%; }
	.toca-clients--fixed { background-attachment: scroll; }
	.toca-hero { height: clamp(420px, 70vh, 560px); }
	.toca-footer__bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
	/* Em telas estreitas as setas ficam por cima do texto — swipe + bullets cobrem a navegação. */
	.toca-hero__arrow { display: none; }
	.toca-hero__title { font-size: clamp(24px, 7vw, 34px); }
}
