/* =========================================================================
   BCGS&S Advogados — styles.css
   ========================================================================= */

/* --- Layout base ----------------------------------------------------------- */
.wt-container {
	width: 100%;
	max-width: var(--wt-container);
	margin-inline: auto;
	padding-inline: 24px;
}
.wt-main { overflow-x: hidden; }
.wt-section { padding-block: var(--wt-section-pad); position: relative; }
.wt-section--soft { background: var(--wt-white); }
.wt-section__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.wt-section__title { font-size: clamp(1.8rem, 1.35rem + 2vw, 2.6rem); }
.wt-section__head .wt-lead { margin-top: 14px; }
.wt-descricao, .wt-descricao p { text-align: justify; }

/* --- Botões ----------------------------------------------------------------- */
.wt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--wt-sans);
	font-weight: 600;
	font-size: 14.5px;
	letter-spacing: .01em;
	line-height: 1;
	padding: 15px 30px;
	border-radius: var(--wt-radius);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease, box-shadow .3s ease;
	text-decoration: none;
	white-space: nowrap;
}
.wt-btn:hover { transform: translateY(-2px); }
.wt-btn--primary { background: var(--wt-navy); color: #fff; box-shadow: var(--wt-shadow-sm); }
.wt-btn--primary:hover { background: var(--wt-navy-dark); }
.wt-btn--outline { background: transparent; color: var(--wt-navy); border-color: var(--wt-navy); }
.wt-btn--outline:hover { background: var(--wt-navy); color: #fff; }
.wt-btn--sm { padding: 10px 20px; font-size: 13px; }
.wt-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Hero -------------------------------------------------------------------- */
.wt-hero {
	position: relative;
	overflow: hidden;
	min-height: 94vh;
	display: flex;
	align-items: center;
	color: #fff;
}
.wt-hero__slideshow { position: absolute; inset: 0; z-index: 0; }
.wt-hero__slide {
	position: absolute; inset: -20px;
	background-size: cover;
	background-position: center;
	opacity: 0;
	filter: blur(3px) saturate(1.05);
	transition: opacity 1.6s ease;
}
.wt-hero__slide.is-active { opacity: 1; }
.wt-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(2,14,33,.74) 0%, rgba(5,28,58,.86) 55%, rgba(2,14,33,.95) 100%);
}
.wt-hero__inner {
	position: relative; z-index: 2;
	width: 100%;
	padding-block: 150px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.wt-hero__logo { width: 200px; height: auto; margin-bottom: 30px; }
.wt-hero__title {
	color: #fff;
	max-width: 900px;
	font-size: clamp(1.85rem, 1.3rem + 2.5vw, 3rem);
	font-variant: small-caps;
}
.wt-hero__divider { width: 110px; margin: 30px auto; }
.wt-hero__desc {
	font-family: var(--wt-sans);
	font-weight: 300;
	font-size: 1.12rem;
	color: rgba(255,255,255,.9);
	max-width: 640px;
	margin: 6px auto 0;
	text-align: center;
}
.wt-hero__local {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	font-size: .92rem;
	font-weight: 500;
	color: var(--wt-gold-bright);
}
.wt-hero .wt-actions { justify-content: center; margin-top: 38px; }
.wt-hero .wt-btn--outline { border-color: rgba(255,255,255,.55); color: #fff; }
.wt-hero .wt-btn--outline:hover { background: #fff; color: var(--wt-navy); }
.wt-hero .wt-btn--primary { background: #fff; color: var(--wt-navy); }
.wt-hero .wt-btn--primary:hover { background: var(--wt-gold-bright); color: var(--wt-navy-dark); }

/* --- Depoimentos (Trustindex) ------------------------------------------------ */
.wt-reviews__widget { width: 100%; }
.wt-reviews__cta { text-align: center; margin-top: 32px; }

/* --- Serviços (Direito Trabalhista) ------------------------------------------ */
.wt-servicos__intro { max-width: 780px; margin: 0 auto; text-align: center; }
.wt-servicos__intro-text { width: 100%; font-size: 15px; text-align: center; color: var(--wt-ink-soft); margin: 16px 0 56px; }
.wt-servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.wt-servico-card {
	background: var(--wt-white);
	border: 1px solid var(--wt-ice);
	border-radius: var(--wt-radius);
	padding: 32px 28px;
	box-shadow: var(--wt-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.wt-servico-card:hover { transform: translateY(-4px); box-shadow: var(--wt-shadow); border-color: var(--wt-gold); }
.wt-servico-card__icon {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--wt-cream);
	border: 1px solid var(--wt-ice);
	display: flex; align-items: center; justify-content: center;
	color: var(--wt-gold);
	margin-bottom: 20px;
	align-self: center;
}
.wt-servico-card__icon svg { width: 22px; height: 22px; }
.wt-servico-card__titulo { font-family: var(--wt-serif); font-size: 22px; margin-bottom: 10px; text-align: center; }
.wt-servico-card__desc { font-size: .95rem; color: var(--wt-ink-soft); text-align: justify; margin-bottom: 10px; flex: 1; }
.wt-servico-card__casos { font-size: .8rem; color: var(--wt-ink-soft); opacity: .8; margin-bottom: 20px; }
.wt-servico-card__casos strong { color: var(--wt-navy); font-weight: 600; }

/* --- CTA final ----------------------------------------------------------------- */
.wt-cta { background: linear-gradient(155deg, var(--wt-navy) 0%, var(--wt-navy-dark) 100%); color: #fff; }
.wt-cta__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.wt-cta__media { border: 3px solid var(--wt-gold); border-radius: var(--wt-radius); overflow: hidden; box-shadow: var(--wt-shadow); }
.wt-cta__media img { width: 100%; height: 420px; object-fit: cover; display: block; }
.wt-cta__content { text-align: left; }
.wt-cta__title { color: #fff; font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.3rem); }
.wt-cta__subtitle { color: var(--wt-gold-bright); font-family: var(--wt-serif); font-size: 1.3rem; margin-top: 8px; }
.wt-cta__text { color: rgba(255,255,255,.85); margin-top: 20px; text-align: left; }
.wt-cta .wt-actions { justify-content: flex-start; margin-top: 34px; }
.wt-cta .wt-btn--outline { border-color: rgba(255,255,255,.55); color: #fff; }
.wt-cta .wt-btn--outline:hover { background: #fff; color: var(--wt-navy); }
.wt-cta .wt-btn--primary { background: var(--wt-gold); color: var(--wt-navy-dark); }
.wt-cta .wt-btn--primary:hover { background: var(--wt-gold-bright); }

/* --- FAQ ------------------------------------------------------------------------ */
.wt-faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.wt-faq__item { background: var(--wt-white); border: 1px solid var(--wt-ice); border-radius: var(--wt-radius); overflow: hidden; }
.wt-faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	font-family: var(--wt-sans);
	font-weight: 600;
	font-size: .98rem;
	color: var(--wt-navy);
	list-style: none;
}
.wt-faq__q::-webkit-details-marker { display: none; }
.wt-faq__icon { flex: 0 0 auto; color: var(--wt-gold); transition: transform .3s ease; }
.wt-faq__item[open] .wt-faq__icon { transform: rotate(180deg); }
.wt-faq__a { padding: 0 24px 22px; color: var(--wt-ink-soft); text-align: justify; }
.wt-faq__cta { text-align: center; margin-top: 48px; }

/* --- Quem Somos ------------------------------------------------------------------ */
.wt-sobre__grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; row-gap: 18px; margin-bottom: 56px; }
.wt-sobre__header { grid-column: 1 / -1; }
.wt-sobre__left { grid-column: 1; }
.wt-sobre__right { grid-column: 2; display: flex; flex-direction: column; justify-content: space-between; }
.wt-sobre__right .wt-actions { margin-top: 40px; }
.wt-equipe__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wt-equipe__item { border-left: 2px solid var(--wt-gold); padding-left: 16px; }
.wt-equipe__nome { font-family: var(--wt-serif); font-weight: 600; color: var(--wt-navy); font-size: 1.02rem; display: block; }
.wt-equipe__oab { font-size: .8rem; color: var(--wt-ink-soft); letter-spacing: .02em; }

/* --- Galeria "Conheça nosso Escritório" — slide manual de 4 em 4 ------------------- */
.wt-gallery { position: relative; display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.wt-gallery__track {
	flex: 1 1 auto;
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.wt-gallery__track::-webkit-scrollbar { display: none; }
.wt-gallery__item {
	flex: 0 0 calc((100% - 3 * 20px) / 4);
	scroll-snap-align: start;
	aspect-ratio: 3 / 4;
	border-radius: var(--wt-radius);
	overflow: hidden;
	box-shadow: var(--wt-shadow-sm);
}
.wt-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wt-gallery__arrow {
	flex: 0 0 auto;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--wt-ice);
	background: var(--wt-white);
	color: var(--wt-navy);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.wt-gallery__arrow:hover { background: var(--wt-navy); color: #fff; border-color: var(--wt-navy); }

/* --- Serviços Advocatícios (áreas) -------------------------------------------------- */
.wt-area .wt-section__head { max-width: 1020px; }
.wt-area__list { display: grid; gap: 26px; }
.wt-area-card {
	display: grid;
	grid-template-columns: 1fr 2fr;
	background: var(--wt-white);
	border: 1px solid var(--wt-ice);
	border-radius: var(--wt-radius);
	overflow: hidden;
	box-shadow: var(--wt-shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.wt-area-card:hover { transform: translateY(-4px); box-shadow: var(--wt-shadow); border-color: var(--wt-gold); }
.wt-area-card__media { position: relative; min-height: 260px; background: var(--wt-ice); }
.wt-area-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.wt-area-card__body { display: flex; flex-direction: column; align-items: stretch; padding: 34px 36px; }
.wt-area-card__titulo { font-family: var(--wt-serif); font-size: 24px; margin-bottom: 12px; text-align: center; }
.wt-area-card__body .wt-btn { width: 100%; justify-content: center; }
.wt-area-card__desc { flex: 1; color: var(--wt-ink-soft); text-align: justify; margin-bottom: 22px; font-size: .95rem; }

/* --- Diferenciais ----------------------------------------------------------------- */
.wt-dif__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wt-dif__card { text-align: center; background: var(--wt-white); border: 1px solid var(--wt-ice); border-radius: var(--wt-radius); padding: 36px 22px; }
.wt-dif__icon {
	width: 52px; height: 52px; margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--wt-cream);
	border: 1px solid var(--wt-gold);
	display: flex; align-items: center; justify-content: center;
	color: var(--wt-gold);
}
.wt-dif__icon svg { width: 24px; height: 24px; }
.wt-dif__title { font-family: var(--wt-sans); font-weight: 600; color: var(--wt-navy); font-size: 1rem; }
.wt-dif__sub { font-size: .82rem; color: var(--wt-ink-soft); margin-top: 6px; }

/* --- Formulário --------------------------------------------------------------------- */
.wt-form__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	border-radius: var(--wt-radius);
	overflow: hidden;
	box-shadow: var(--wt-shadow);
}
.wt-form__col { background: var(--wt-navy); color: #fff; padding: 56px 48px; }
.wt-form__col .wt-label { color: var(--wt-gold-bright); }
.wt-form__col h2 { color: #fff; }
.wt-form__subtitulo { color: rgba(255,255,255,.78); margin-top: 10px; margin-bottom: 30px; }
.wt-form__media { position: relative; min-height: 380px; }
.wt-form__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wt-form__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(5,28,58,.6) 0%, rgba(2,14,33,.2) 100%);
}
.wt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wt-field { display: block; margin-bottom: 18px; }
.wt-field__label { display: block; font-size: .82rem; margin-bottom: 8px; color: rgba(255,255,255,.78); font-weight: 500; }
.wt-field input, .wt-field textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--wt-radius-sm);
	border: 1px solid rgba(255,255,255,.26);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-family: var(--wt-sans);
	font-size: .95rem;
	transition: border-color .2s ease, background .2s ease;
}
.wt-field input::placeholder, .wt-field textarea::placeholder { color: rgba(255,255,255,.42); }
.wt-field input:focus, .wt-field textarea:focus { outline: none; border-color: var(--wt-gold); background: rgba(255,255,255,.1); }
.wt-field textarea { resize: vertical; min-height: 100px; }
.wt-form .wt-btn--primary { background: #fff; color: var(--wt-navy); }
.wt-form .wt-btn--primary:hover { background: var(--wt-gold-bright); color: var(--wt-navy-dark); }
.wt-form__submit { width: 100%; margin-top: 6px; }
.wt-form__hint { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 16px; }
.wt-form__alert { padding: 14px 18px; border-radius: var(--wt-radius-sm); margin-bottom: 22px; font-size: .9rem; }
.wt-form__alert--ok { background: rgba(198,156,85,.18); border: 1px solid var(--wt-gold); color: #fff; }
.wt-form__alert--erro { background: rgba(200,80,80,.18); border: 1px solid #e08a8a; color: #fff; }

/* --- Localização ---------------------------------------------------------------------- */
.wt-local { background: linear-gradient(155deg, var(--wt-navy) 0%, var(--wt-navy-dark) 100%); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 0; }
.wt-local__head { text-align: center; max-width: 720px; margin: 0 auto; }
.wt-local__divider { width: 110px; margin: 0 auto 24px; }
.wt-local__title { color: #fff; font-size: clamp(1.8rem, 1.35rem + 2vw, 2.6rem); }
.wt-local__subtitle { width: 100%; text-align: center; color: rgba(255,255,255,.75); margin: 14px 0 0; font-size: 1rem; }
.wt-local__map { width: 100%; overflow: hidden; margin-top: 64px; aspect-ratio: 32 / 9; max-height: 460px; }
.wt-local__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Rodapé --------------------------------------------------------------------------- */
.wt-footer { background: linear-gradient(160deg, var(--wt-navy) 0%, var(--wt-navy-dark) 100%); color: var(--wt-on-dark); font-size: 13.5px; line-height: 1.65; }
.wt-footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-block: 64px; }
.wt-footer__logo-wrap { display: flex; justify-content: flex-start; }
/* max-height casa com a altura da coluna "Redes Sociais": título (20px) + 16px + 3 botões (45px) + 2 gaps (12px). */
.wt-footer__logo, .wt-footer .custom-logo { width: auto; max-width: 100%; max-height: 196px; height: auto; margin-bottom: 0; }
.wt-footer__areas { color: rgba(244,241,234,.72); font-size: .86rem; margin-top: 18px; text-align: justify; }
.wt-footer__title { font-family: var(--wt-serif); color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.wt-footer__address { color: rgba(244,241,234,.82); font-size: .9rem; text-decoration: none; display: block; }
.wt-footer__address:hover { color: var(--wt-gold-bright); }
.wt-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.wt-footer__link { display: inline-flex; align-items: center; gap: 10px; color: rgba(244,241,234,.85); text-decoration: none; font-size: .9rem; }
.wt-footer__link:hover { color: var(--wt-gold-bright); }
.wt-footer__link svg { flex: 0 0 auto; }
.wt-footer__social { display: flex; flex-direction: column; gap: 12px; }
.wt-footer__social-link {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 16px;
	border: 1px solid rgba(244,241,234,.22);
	border-radius: 999px;
	color: var(--wt-on-dark);
	text-decoration: none;
	font-size: .88rem;
	transition: background .2s ease, border-color .2s ease;
}
.wt-footer__social-link:hover { background: rgba(244,241,234,.08); border-color: var(--wt-gold); }
.wt-footer__bottom { border-top: 1px solid rgba(244,241,234,.14); }
.wt-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; font-size: .82rem; color: rgba(244,241,234,.65); }
.wt-footer__copy { margin: 0; }
.wt-footer__policy { color: rgba(244,241,234,.8); text-decoration: none; }
.wt-footer__policy:hover { color: var(--wt-gold-bright); }
.wt-footer__disclaimer { text-align: center; font-size: 11px; line-height: 1.6; color: rgba(244,241,234,.4); margin: -24px 0 0; padding-bottom: 26px; }
.wt-footer__credit { background: rgba(0,0,0,.22); text-align: center; padding-block: 14px; font-size: .76rem; color: rgba(244,241,234,.6); }
.wt-footer__credit a { color: var(--wt-gold-bright); text-decoration: none; }

/* --- Página legal (Política de Privacidade) ------------------------------------------- */
.wt-legal { padding-block: 80px; }
.wt-legal__inner { max-width: 900px; }
.wt-legal__topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 56px; }
.wt-legal__brand img { height: 78px; width: auto; }
.wt-legal__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); white-space: nowrap; }
.wt-legal__meta { text-align: center; color: var(--wt-ink-soft); font-size: .88rem; margin-top: 10px; margin-bottom: 48px; }
.wt-legal__body { color: var(--wt-ink); }
.wt-legal__body p { text-align: justify; margin-bottom: 1.1em; }
.wt-legal__body h2 { font-size: 1.25rem; margin-top: 2.2em; margin-bottom: .8em; padding-top: 1.4em; border-top: 1px solid var(--wt-ice); }
.wt-legal__body ul { padding-left: 1.4em; margin-bottom: 1.1em; }
.wt-legal__body strong { color: var(--wt-navy); }
.wt-legal__body a { color: var(--wt-navy); text-decoration: underline; }
.wt-legal__actions--bottom { text-align: center; margin-top: 56px; }

/* =========================================================================
   Responsivo
   ========================================================================= */
@media (max-width: 980px) {
	.wt-servicos__grid, .wt-dif__grid { grid-template-columns: repeat(2, 1fr); }
	.wt-sobre__grid { grid-template-columns: 1fr; gap: 40px; }
	.wt-sobre__left, .wt-sobre__right { grid-column: 1; }
	.wt-equipe__list { grid-template-columns: 1fr; }
	.wt-form__grid { grid-template-columns: 1fr; }
	.wt-form__media { min-height: 260px; order: -1; }
	.wt-cta__grid { grid-template-columns: 1fr; gap: 32px; }
	.wt-cta__media img { height: 300px; }
	.wt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	:root { --wt-section-pad: 64px; }
	.wt-hero__inner { padding-block: 120px 72px; }
	.wt-form__row { grid-template-columns: 1fr; }
	.wt-gallery__item { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 600px) {
	.wt-container { padding-inline: 18px; }
	.wt-servicos__grid, .wt-dif__grid { grid-template-columns: 1fr; }
	.wt-cta__text { text-align: justify; }
	.wt-area-card { grid-template-columns: 1fr; }
	.wt-area-card__media { min-height: 0; aspect-ratio: 16 / 10; }
	.wt-area-card__body { padding: 28px 24px; }
	.wt-section__head { margin-bottom: 40px; }
	.wt-hero__logo { width: 150px; }
	.wt-hero__title { max-width: 100%; }
	.wt-hero__local { flex-direction: column; gap: 4px; }
	.wt-gallery__item { flex-basis: 82%; }
	.wt-gallery__arrow { width: 36px; height: 36px; }
	.wt-local__map { aspect-ratio: 4 / 3.4; }
	.wt-form__col { padding: 40px 26px; }
	.wt-footer__grid { grid-template-columns: 1fr; text-align: center; padding-block: 48px; gap: 32px; }
	.wt-footer__logo-wrap { justify-content: center; }
	.wt-footer__areas { text-align: center; }
	.wt-footer__link { flex-direction: column; }
	.wt-footer__social { flex-direction: row; justify-content: center; flex-wrap: wrap; }
	.wt-footer__bottom-inner { flex-direction: column; text-align: center; }
	.wt-legal__topbar { flex-direction: column; text-align: center; }
	.wt-legal__title { white-space: normal; }
}
