/* =========================================================
   Advocacia Vicente — Landing Page
   Paleta: navy (identidade + confiança) + dourado (acabamento)
   ========================================================= */

:root {
	--navy: #0b2545;
	--navy-700: #123765;
	--navy-600: #17427c;
	--gold: #c9a24b;
	--gold-light: #f2e6c9;
	--whatsapp: #25d366;
	--whatsapp-dark: #1ebe5d;
	--text: #1d2733;
	--muted: #5b6472;
	--bg-light: #f5f7fa;
	--white: #ffffff;
	--radius-sm: 8px;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
	--shadow-sm: 0 4px 14px rgba(11, 37, 69, 0.08);
	--container: 1140px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: 'Poppins', 'Inter', sans-serif;
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 16px;
}

p {
	margin: 0 0 16px;
	color: var(--muted);
	line-height: 1.7;
}

.av-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.av-eyebrow {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

/* =========================== BOTÕES =========================== */
.av-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 26px;
	border-radius: 999px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.av-btn:hover {
	transform: translateY(-2px);
}
.av-btn--whatsapp {
	background: var(--whatsapp);
	color: #fff;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.av-btn--whatsapp:hover {
	background: var(--whatsapp-dark);
}
.av-btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}
.av-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
}
.av-btn--primary {
	background: var(--navy);
	color: #fff;
}
.av-btn--primary:hover {
	background: var(--navy-600);
}
.av-btn--lg {
	padding: 16px 32px;
	font-size: 16px;
}

/* =========================== HEADER =========================== */
.av-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid rgba(11, 37, 69, 0.08);
}
.av-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding-top: 14px;
	padding-bottom: 14px;
	gap: 20px;
}
.av-header__logo {
	grid-column: 2;
	justify-self: center;
}
.av-header__logo img {
	height: 42px;
	width: auto;
}
.av-nav {
	grid-column: 1;
	justify-self: start;
}
.av-nav ul {
	display: flex;
	gap: 32px;
}
.av-nav a {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: var(--navy);
	position: relative;
	padding: 4px 0;
}
.av-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.2s ease;
}
.av-nav a:hover::after {
	width: 100%;
}
.av-header__actions {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 16px;
}
.av-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.av-nav__toggle span {
	display: block;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
}

/* =========================== HERO =========================== */
.av-hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
	position: relative;
	overflow: hidden;
	padding: 76px 0 96px;
}
.av-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
.av-hero__text h1 {
	color: #fff;
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 20px;
}
.av-hero__lead {
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	max-width: 520px;
	margin-bottom: 24px;
}
.av-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}
.av-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(201, 162, 75, 0.55);
	color: var(--gold-light);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13.5px;
}
.av-badge svg {
	flex-shrink: 0;
	color: var(--gold);
}
.av-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.av-hero__media {
	position: relative;
	display: flex;
	justify-content: center;
}
.av-hero__shape {
	position: absolute;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--gold) 0%, rgba(201, 162, 75, 0.15) 70%, transparent 72%);
	top: -30px;
	right: 10%;
	filter: blur(2px);
	z-index: 0;
}
.av-hero__photo-card {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 14px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
	max-width: 340px;
	transform: rotate(-1.5deg);
}
.av-hero__photo-card img {
	border-radius: calc(var(--radius-lg) - 8px);
	width: 100%;
	height: auto;
}

/* =========================== TRUST STRIP =========================== */
.av-trust {
	background: var(--bg-light);
	border-bottom: 1px solid rgba(11, 37, 69, 0.06);
}
.av-trust__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 24px;
	padding: 32px 24px;
	text-align: center;
}
.av-trust__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 160px;
}
.av-trust__num {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 26px;
	color: var(--navy);
}
.av-trust__item span:last-child {
	color: var(--muted);
	font-size: 14px;
}

/* =========================== SECTIONS =========================== */
.av-section {
	padding: 88px 0;
}
.av-section__head {
	max-width: 640px;
	margin: 0 auto 52px;
	text-align: center;
}
.av-section__head h2 {
	font-size: 34px;
}
.av-section__head p {
	font-size: 16px;
}

/* Cards — Áreas de atuação */
.av-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.av-card {
	background: #fff;
	border: 1px solid rgba(11, 37, 69, 0.08);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.av-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.av-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--navy);
	color: var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.av-card h3 {
	font-size: 19px;
	margin-bottom: 10px;
}
.av-card p {
	font-size: 14.5px;
	margin-bottom: 0;
}

/* =========================== CTA =========================== */
.av-cta {
	background: linear-gradient(120deg, var(--gold) 0%, #dcb862 100%);
}
.av-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	padding: 48px 0;
}
.av-cta h2 {
	color: var(--navy);
	font-size: 26px;
	margin-bottom: 8px;
}
.av-cta p {
	color: rgba(11, 37, 69, 0.75);
	margin-bottom: 0;
}

/* =========================== SOBRE =========================== */
.av-sobre__inner {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 56px;
	align-items: center;
}
.av-sobre__media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center 60%;
}
.av-sobre__lista {
	margin: 20px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.av-sobre__lista li {
	position: relative;
	padding-left: 30px;
	color: var(--text);
	font-weight: 500;
}
.av-sobre__lista li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: -1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gold);
	color: #fff;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =========================== CONTATO =========================== */
.av-contato {
	background: var(--bg-light);
}
.av-contato__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: stretch;
}
.av-contato__info {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.av-contato__item strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	color: var(--navy);
	font-size: 14px;
	margin-bottom: 4px;
}
.av-contato__item p {
	margin: 0;
}
.av-contato__item a:hover {
	color: var(--gold);
}
.av-contato__mapa {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	min-height: 320px;
}

/* =========================== FOOTER =========================== */
.av-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.85);
}
.av-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding: 56px 0 40px;
}
.av-footer__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}
.av-footer__brand strong {
	display: block;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
}
.av-footer__brand p {
	margin: 2px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}
.av-footer h3 {
	color: #fff;
	font-size: 15px;
	margin-bottom: 16px;
}
.av-footer__col p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14.5px;
}
.av-footer__col a:hover {
	color: var(--gold);
}
.av-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
}
.av-footer__bottom p {
	margin: 0;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
}
.av-footer__aviso {
	margin-top: 6px !important;
	max-width: 760px;
}

/* =========================== WHATSAPP FLUTUANTE =========================== */
.av-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--whatsapp);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
	z-index: 90;
	transition: transform 0.2s ease;
}
.av-whatsapp-float:hover {
	transform: scale(1.08);
	background: var(--whatsapp-dark);
}

/* =========================== PÁGINAS INTERNAS =========================== */
.av-page-content {
	max-width: 780px;
}
.av-page-content h1 {
	font-size: 32px;
}

/* =========================== RESPONSIVO =========================== */
@media (max-width: 991px) {
	.av-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.av-hero__lead {
		margin-left: auto;
		margin-right: auto;
	}
	.av-hero__badges {
		justify-content: center;
	}
	.av-hero__actions {
		justify-content: center;
	}
	.av-hero__media {
		margin-top: 24px;
	}
	.av-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.av-sobre__inner,
	.av-contato__grid {
		grid-template-columns: 1fr;
	}
	.av-sobre__media {
		order: -1;
	}
	.av-sobre__media img {
		height: 300px;
	}
	.av-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.av-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: var(--shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.av-nav.is-open {
		max-height: 320px;
	}
	.av-nav ul {
		flex-direction: column;
		padding: 20px 24px;
		gap: 18px;
	}
	.av-nav__toggle {
		display: flex;
	}
	.av-header__actions .av-btn--whatsapp span {
		display: none;
	}
	.av-header__actions .av-btn--whatsapp {
		width: 40px;
		height: 40px;
		padding: 0;
		border-radius: 50%;
	}
	.av-hero__text h1 {
		font-size: 32px;
	}
	.av-section {
		padding: 64px 0;
	}
	.av-section__head h2 {
		font-size: 27px;
	}
	.av-cards {
		grid-template-columns: 1fr;
	}
	.av-cta__inner {
		flex-direction: column;
		text-align: center;
	}
	.av-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.av-footer__brand {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.av-container {
		padding: 0 18px;
	}
	.av-sobre__media img {
		height: 220px;
	}
	.av-hero {
		padding: 56px 0 72px;
	}
	.av-hero__photo-card {
		max-width: 260px;
	}
	.av-btn--lg {
		width: 100%;
	}
	.av-hero__actions {
		flex-direction: column;
	}
	.av-hero__actions .av-btn {
		width: 100%;
	}
}
