/* ============================================
   Richard Hey Studios — ajustes customizados
   ============================================ */

/* ---- Navegação e experiência ---- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

.w-mask {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.w-mask .w {
	display: inline-block;
	will-change: transform;
}

.link__item .link__arrow {
	transition: transform 0.35s ease;
}

.link__item:hover .link__arrow {
	transform: translate(6px, -6px);
}

.sobre-card,
.sobre-photo img,
.link__item {
	will-change: transform;
}

/* ---- Menu fixo superior ---- */
.header {
	background: rgba(26, 26, 26, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.3s ease, transform 0.35s ease;
}

.header--hidden {
	transform: translateY(-100%);
}

.header:hover {
	background: rgba(26, 26, 26, 0.88);
}

.menu__link {
	position: relative;
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.menu__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s ease;
}

.menu__link:hover {
	opacity: 1;
}

.menu__link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu__link--active {
	opacity: 1;
}

.menu__link--active::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* ---- Logo em texto no cabeçalho ---- */
.logo-text {
	display: inline-flex;
	align-items: baseline;
	gap: 0.375rem;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: clamp(0.8125rem, 0.7rem + 0.6vw, 1.0625rem);
	line-height: 1;
	white-space: nowrap;
}

.logo-text__copy {
	font-weight: 400;
	font-size: 0.75em;
	opacity: 0.85;
}

/* ---- Tag animada DESIGNER & BRAND EXPERIENCE ---- */
.tag-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.125rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	color: #fff;
	font-size: clamp(0.6875rem, 0.65rem + 0.25vw, 0.8125rem);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.05);
	white-space: nowrap;
	animation: tagFloat 3.5s ease-in-out infinite;
}

.tag-badge__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #fff;
	flex-shrink: 0;
	animation: tagPulse 1.8s ease-in-out infinite;
}

@keyframes tagPulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
	50% { opacity: 0.55; box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
}

@keyframes tagFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.hero__content .tag-badge {
	margin-bottom: 1.5rem;
}

/* ---- Hero: tag, headline e texto centralizados ---- */
.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero__title {
	margin-left: auto;
	margin-right: auto;
}

.hero__text {
	margin-left: auto;
	margin-right: auto;
}

/* Mobile: afasta os decorativos do conteúdo centralizado */
@media (max-width: 767.98px) {
	.decor-hero__star {
		top: 44%;
		right: 6%;
	}

	.decor-hero__circle {
		bottom: 31%;
		right: 8%;
	}
}

/* ---- CTA principal do hero ---- */
.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 1rem 2.25rem;
	border-radius: 999px;
	background: #121212;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
	background: #2a2a2a;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero__cta {
	margin-top: 2rem;
}

.sobre-tag {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

/* ---- Seção Sobre Mim ---- */
.about {
	padding-top: clamp(4rem, 3rem + 5vw, 7.5rem);
}

.sobre-photo {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
}

.sobre-photo img {
	width: clamp(7.5rem, 6.5rem + 5vw, 11.25rem);
	height: clamp(7.5rem, 6.5rem + 5vw, 11.25rem);
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	transition: filter 0.5s ease, border-color 0.3s ease;
}

.sobre-photo img:hover {
	filter: grayscale(0);
	border-color: rgba(255, 255, 255, 0.5);
}

.sobre-lead {
	color: #fff;
	font-size: clamp(1.125rem, 0.9rem + 1.1vw, 1.75rem);
	line-height: 1.4;
	letter-spacing: -0.01em;
	text-align: center;
	max-width: 38rem;
	margin: 0 auto clamp(2.5rem, 2rem + 2.5vw, 4.375rem);
}

.sobre-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 4.375rem);
}

.sobre-card {
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 1rem;
	padding: 1.5rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.sobre-card:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-4px);
}

.sobre-card__year {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
	margin-bottom: 0.625rem;
}

.sobre-card__name {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.sobre-card__text {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
	line-height: 1.5;
}

.sobre-historia {
	margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 4.375rem);
}

.sobre-historia__label {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 1.5rem;
}

.sobre-historia__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.sobre-historia__text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	line-height: 1.65;
	padding-left: 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767.98px) {
	.sobre-historia__grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.sobre-lead {
		padding: 0 0.5rem;
	}

	.sobre-card {
		text-align: center;
		padding: 1.5rem 1.25rem;
	}

	.sobre-historia__text {
		border-left: 0;
		padding-left: 0;
		text-align: center;
	}

	.sobre-quote {
		padding: 0 0.5rem;
	}
}

/* ---- Clientes & Parceiros ---- */
.clientes {
	margin-top: clamp(3.5rem, 3rem + 2.5vw, 5.5rem);
	background: rgba(18, 18, 18, 0.72);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.5rem;
	padding: 2rem 2rem 2.25rem;
}

.clientes__label {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 2rem;
}

/* Carrossel infinito de logos com fade nas laterais (mobile e desktop) */
.clientes__carousel {
	display: flex;
	justify-content: flex-start;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.clientes__group {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	animation: clientesScroll 30s linear infinite;
}

.clientes__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0 clamp(1.5rem, 1rem + 2vw, 3rem);
}

.clientes__item img {
	height: clamp(1.625rem, 1.4rem + 1.1vw, 2.5rem);
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.clientes__item:hover img {
	opacity: 1;
}

@media (max-width: 767.98px) {
	.clientes {
		padding: 1.75rem 0 2rem;
	}

	.clientes__group {
		animation-duration: 24s;
	}

	.clientes__item img {
		height: 1.75rem;
	}
}

@keyframes clientesScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}

.clientes__item--text {
	color: rgba(255, 255, 255, 0.6);
	font-weight: 700;
	letter-spacing: 0.1em;
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.375rem);
	transition: color 0.3s ease;
}

.clientes__item--text:hover {
	color: #fff;
}

.clientes__item--mais {
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0.02em;
	font-size: 0.9375rem;
	opacity: 0.7;
}

.sobre-quote {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto;
}

.sobre-quote__text {
	color: rgba(255, 255, 255, 0.6);
	font-size: clamp(1.375rem, 1.1rem + 1.4vw, 2.25rem);
	line-height: 1.3;
	letter-spacing: -0.01em;
	margin-bottom: 1.5rem;
}

.sobre-quote__text span {
	color: #fff;
	font-weight: 600;
}

.sobre-quote__author {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.sobre-quote__name {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

.sobre-quote__role {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
}

@media (max-width: 991.98px) {
	.sobre-timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 479.98px) {
	.sobre-timeline {
		grid-template-columns: 1fr;
	}
}

/* ---- Rodapé: destaque para as redes sociais ---- */
.footer__location {
	margin-bottom: 2rem;
	opacity: 1 !important;
	transform: none !important;
}

.location-footer__subtext {
	color: #5a5a5a;
}

.location-footer__city {
	color: #1a1a1a;
	font-weight: 600;
}

.footer__social {
	max-width: 100%;
}

.social-footer__list {
	gap: 0.625rem;
}

.social-footer__item {
	font-weight: 600;
}

/* Mobile: estilo página de links oficiais (botões empilhados) */
@media (max-width: 767.98px) {
	.footer__location {
		text-align: center;
		margin-bottom: 1.5rem;
	}

	.footer__social {
		margin-bottom: 2.5rem;
	}

	.social-footer__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		max-width: 30rem;
		margin: 0 auto;
	}

	.social-footer__item {
		width: 100%;
		font-size: 1.125rem;
		text-align: center;
	}

	.social-footer__link {
		display: block;
		width: 100%;
		padding: 1rem 1.5rem;
	}

	.footer__copyrate {
		justify-content: center;
	}

	.footer__body {
		padding-bottom: 3rem;
	}
}
