/* ----------------------------------------
   Hero
---------------------------------------- */
.front-page .site-content {
	padding: 0;
}

.hero {
	background: var(--th-gray-100);
	padding: 56px 0 80px;
	overflow: hidden;
}

.hero__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.hero__content {
	flex: 1 1 420px;
}

.hero__title {
	font-size: 48px;
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero__subtitle {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 28px;
}

.hero__media {
	flex: 1 1 480px;
	min-width: 0;
}

/* ----------------------------------------
   Dados motion (história + estatísticas)
---------------------------------------- */
.dados-motion {
	padding: 80px 0;
}

.dados-motion__inner {
	display: flex;
	align-items: center;
	gap: 64px;
}

.dados-motion__media {
	flex: 0 0 38%;
	min-width: 0;
}

.dados-motion__photo {
	display: block;
	width: 100%;
	height: auto;
	animation: tourhouse-float 5s ease-in-out infinite;
}

@keyframes tourhouse-float {
	0%, 100% {
		transform: translateY(0) rotate(-1.5deg);
	}
	50% {
		transform: translateY(-14px) rotate(1.5deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dados-motion__photo {
		animation: none;
	}
}

.dados-motion__content {
	flex: 1 1 auto;
	min-width: 0;
}

.dados-motion__content h2 {
	font-size: 40px;
	margin-bottom: 16px;
}

.dados-motion__content > p {
	font-size: 18px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin-bottom: 40px;
	max-width: 640px;
}

.dados-motion__stats {
	display: flex;
	align-items: start;
	gap: 24px;
}

.dados-motion__stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.dados-motion__stat.is-active {
	opacity: 1;
	transform: translateY(0);
}

.dados-motion__stat-value {
	font-weight: 700;
	font-size: 25px;
	color: var(--th-green);
	white-space: nowrap;
}

.dados-motion__stat-count {
	color: var(--th-green);
    font-size: 40px;
}

.dados-motion__stat-label {
	font-weight: 700;
	font-size: 13px;
	color: var(--th-navy);
	max-width: 160px;
}


@media (max-width: 900px) {
	.dados-motion__inner {
		flex-direction: column;
	}

	.dados-motion__media {
		flex: 0 0 auto;
		max-width: 320px;
	}

	.dados-motion__stats {
		flex-wrap: wrap;
		gap: 24px 16px;
	}

	.dados-motion__divider {
		display: none;
	}
}

/* ----------------------------------------
   Solutions (Nossas marcas)
---------------------------------------- */
.solutions {
	padding: 80px 0;
}

.solutions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.solution-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 440px;
	border-radius: 16px;
	overflow: hidden;
	padding: 24px;
}

.solution-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.solution-card:hover .solution-card__bg {
	transform: scale(1.06);
}

.solution-card__title {
	position: relative;
	z-index: 1;
	color: var(--th-white);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.25;
	text-shadow: 0 2px 14px rgba(6, 6, 6, 0.45);
	opacity: 1;
	transition: opacity 0.3s ease;
}

.solution-card:hover .solution-card__title {
	opacity: 0;
}

.solution-card__plus {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--th-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.solution-card--corporativas .solution-card__plus {
	background: var(--th-amber);
}

.solution-card--lazer .solution-card__plus {
	background: var(--th-orange);
}

.solution-card--eventos .solution-card__plus {
	background: #d82f20;
}

.solution-card--brindes .solution-card__plus {
	background: var(--th-navy-soft);
}

.solution-card__hover {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-around;
	padding: 32px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.solution-card:hover .solution-card__hover,
.solution-card:focus-visible .solution-card__hover {
	opacity: 1;
	visibility: visible;
}

.solution-card--corporativas .solution-card__hover {
	background: var(--th-amber);
}

.solution-card--lazer .solution-card__hover {
	background: var(--th-orange);
}

.solution-card--eventos .solution-card__hover {
	background: #d82f20;
}

.solution-card--brindes .solution-card__hover {
	background: var(--th-navy-soft);
}

.solution-card__logo {
	height: auto;
	max-width: 100%;
	width: auto;
	margin-bottom: 24px;
}

.solution-card__desc {
	color: var(--th-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 24px;
}

.solution-card__cta {
	display: inline-flex;
	align-items: center;
	background: var(--th-white);
	border-radius: var(--th-radius-pill);
	padding: 12px 28px;
	font-weight: 700;
	font-size: 16px;
}

.solution-card--corporativas .solution-card__cta {
	color: var(--th-amber);
}

.solution-card--lazer .solution-card__cta {
	color: var(--th-orange);
}

.solution-card--eventos .solution-card__cta {
	color: #d82f20;
}

.solution-card--brindes .solution-card__cta {
	color: var(--th-navy-soft);
}

/* ----------------------------------------
   News slider (dots and arrow base styles live in style.css)
---------------------------------------- */
.news-slider__arrow {
	color: var(--th-green);
}
.news {
	padding: 80px 0;
	background: var(--th-gray-50);
	overflow: hidden;
}

.news-slider {
	display: flex;
	align-items: center;
	gap: 8px;
}

.news-slider__viewport {
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
}

.news-slider__track {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card {
	flex: 0 0 auto;
	opacity: 0.45;
	transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card.is-active {
	opacity: 1;
}

.news-card__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 16px;
}

.news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__body {
	padding: 20px 4px 0;
}

.news-card__title {
	font-size: 20px;
	margin-bottom: 12px;
}

.news-card__excerpt {
	font-size: 16px;
	color: var(--th-navy-soft);
	margin-bottom: 20px;
}

.news-card__link {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--th-white);
	background: var(--th-green);
	border-radius: var(--th-radius-pill);
	padding: 10px 22px;
}

.news-card__link:hover {
	text-decoration: none;
	opacity: 0.85;
}

/* ----------------------------------------
   CTA banner
---------------------------------------- */
.cta-banner {
	padding: 56px 0;
}

.cta-banner__link {
	display: block;
}

.cta-banner__image {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ----------------------------------------
   Cases slider
---------------------------------------- */
.cases {
	padding: 80px 0;
}

.cases-slider {
	margin-bottom: 8px;
}

.cases-slider__viewport {
	overflow: hidden;
}

.cases-slider__track {
	display: flex;
	gap: 20px;
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card {
	position: relative;
	flex: 0 0 auto;
	width: min(300px, 75vw);
	aspect-ratio: 5 / 6;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
	overflow: hidden;
	display: block;
}

.case-card__logo {
	position: absolute;
	left: 16px;
	top: 16px;
	max-width: 96px;
	max-height: 32px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.case-card__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--th-navy);
}

.case-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 48px 16px 16px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.85) 100%);
}

.case-card__text {
	color: var(--th-white);
	font-size: 13px;
	font-weight: 500;
	margin: 0 0 8px;
}

.case-card__cite {
	display: block;
	color: var(--th-white);
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
}

.case-card__plus {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--th-green);
	color: var(--th-white);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.cases__cta {
	text-align: center;
}

/* ----------------------------------------
   Tech Human
---------------------------------------- */
.tech-human {
	background: var(--th-gray-100);
	padding: 80px 0;
}

.tech-human__inner {
	display: flex;
	align-items: center;
	gap: 56px;
}

.tech-human__media {
	flex: 1 1 50%;
	min-width: 0;
}

.tech-human__media img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}

.tech-human__content {
	flex: 1 1 50%;
	min-width: 0;
}

.tech-human h2 {
	font-size: 36px;
}

.tech-human p {
	font-size: 18px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin-bottom: 28px;
}


/* ----------------------------------------
   FAQ
---------------------------------------- */
.faq {
	padding: 80px 0;
	background: var(--th-gray-50);
}

.faq__title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 40px;
	color: var(--th-navy);
}

.faq__list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--th-white);
	border-radius: 12px;
	padding: 20px 24px;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
	font-size: 18px;
	color: var(--th-navy);
	cursor: pointer;
	list-style: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::after {
	content: '+';
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--th-green);
	color: var(--th-white);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}

.faq-item[open] .faq-item__question::after {
	content: '\2212';
}

.faq-item__answer {
	padding-top: 12px;
	color: var(--th-navy-soft);
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 980px) {
	.solutions__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero__title {
		font-size: 36px;
	}

	.tech-human__inner {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.solutions__grid {
		grid-template-columns: 1fr;
	}

	.hero__inner {
		flex-direction: column;
	}

	.tri-arrow--lg {
		width: 32px;
		height: 32px;
	}
}
