@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: 0;
}

p {
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
}

body {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
}

body.cookie-banner-open {
	overflow: hidden;
}

.cookie-consent-banner {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%) translateY(120%);
	width: min(720px, calc(100% - 24px));
	max-width: 720px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
	border: 1px solid rgba(37, 99, 235, 0.12);
	padding: 20px 24px;
	z-index: 1100;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.cookie-consent-banner.is-visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.cookie-consent-banner__content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.cookie-consent-banner__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.1);
	color: #2563EB;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
}

.cookie-consent-banner__text h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 6px;
}

.cookie-consent-banner__text p {
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4b5563;
	margin: 0;
}

.cookie-consent-banner__actions {
	margin-left: auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.cookie-btn {
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cookie-btn:hover {
	transform: translateY(-1px);
}

.cookie-btn--primary {
	background: #2563EB;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.cookie-btn--secondary {
	background: #ffffff;
	color: #2563EB;
	border-color: #2563EB;
}

.cookie-btn--ghost {
	background: transparent;
	color: #4b5563;
	border-color: #d1d5db;
}

.cookie-consent-overlay {
	position: fixed;
	inset: 0;
	background: rgba(17, 24, 39, 0.52);
	z-index: 1200;
	backdrop-filter: blur(2px);
}

.cookie-consent-modal {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.96);
	width: min(560px, calc(100% - 24px));
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 70px rgba(15, 23, 42, 0.22);
	z-index: 1250;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent-modal.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.cookie-consent-modal__header,
.cookie-consent-modal__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cookie-consent-modal__header {
	margin-bottom: 20px;
}

.cookie-consent-modal__eyebrow {
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #2563EB;
	margin-bottom: 4px;
}

.cookie-consent-modal__header h3 {
	font-size: 1.2rem;
	color: #111827;
}

.cookie-consent-modal__close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f3f4f6;
	color: #4b5563;
	cursor: pointer;
}

.cookie-consent-modal__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 22px;
}

.cookie-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	background: #f9fafb;
	border-radius: 14px;
}

.cookie-category__meta strong {
	display: block;
	font-size: 0.96rem;
	color: #111827;
	margin-bottom: 4px;
}

.cookie-category__meta p {
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: 0.9rem;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}

.cookie-switch {
	position: relative;
	display: inline-flex;
	width: 48px;
	height: 28px;
	cursor: pointer;
}

.cookie-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-switch__slider {
	position: absolute;
	inset: 0;
	background-color: #d1d5db;
	border-radius: 999px;
	transition: background-color 0.2s ease;
}

.cookie-switch__slider::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
	transition: transform 0.2s ease;
}

.cookie-switch input:checked+.cookie-switch__slider {
	background-color: #2563EB;
}

.cookie-switch input:checked+.cookie-switch__slider::before {
	transform: translateX(20px);
}

.cookie-switch input:disabled+.cookie-switch__slider {
	opacity: 0.8;
	cursor: not-allowed;
}

.cookie-consent-modal__footer {
	flex-wrap: wrap;
	justify-content: flex-end;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: #1a1a1a;
	background: #fff;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.85;
}

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

@keyframes wapulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}

	70% {
		box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
	}
}

header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

header nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

header nav a {
	font-size: 14px;
	font-weight: 500;
	color: #444;
}

.btn-cta {
	background: #25D366;
	color: #fff;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-cta:hover {
	opacity: 0.9;
}

.hero {
	position: relative;
	height: calc(100vh - 72px);
	min-height: 560px;
	background-image: url('../images/banner/bateco-header-site.png');
	background-size: cover;
	background-position: center top;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 0, 0, 0.55) 0%, rgba(10, 12, 20, 0.75) 100%);
}

.hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 64px 80px;
}

.hero-content>div {
	max-width: 760px;
}

.badge-experience {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 22px;
	border-radius: 50px;
	margin-bottom: 24px;
}

.hero h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(52px, 8vw, 104px);
	font-weight: 900;
	color: #fff;
	line-height: 0.92;
	text-transform: uppercase;
	letter-spacing: -1px;
	margin: 0 0 24px 0;
}

.hero p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	font-weight: 300;
	margin: 0 0 40px 0;
	max-width: 460px;
	line-height: 1.65;
}

.btn-whats-hero {
	background: #25D366;
	color: #fff;
	padding: 16px 38px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 17px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	animation: wapulse 2.5s infinite;
}

.stats-bar {
	background: #0d1117;
	display: flex;
	justify-content: center;
}

.stats-bar-inner {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
	padding: 28px 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item--last {
	border-right: none;
}

.stat-value {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 36px;
	font-weight: 900;
	color: #F7941D;
	line-height: 1;
}

.stat-label {
	font-size: 13px;
	color: #F7F7F7;
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-white {
	padding: 96px 80px;
	background: #fff;
}

.section-dark {
	padding: 96px 80px;
	background: #0d1117;
}

.section-gray {
	padding: 96px 80px;
	background: #f8f8f8;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.badge-light {
	display: inline-block;
	background: #fff8ef;
	color: #F7941D;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 4px;
	margin-bottom: 18px;
}

.badge-dark {
	display: inline-block;
	background: rgba(247, 148, 29, 0.15);
	color: #F7941D;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 4px;
	margin-bottom: 18px;
}

.section-title-dark {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 900;
	color: #0d1117;
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 40px 0;
}

.section-title-light {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0;
}

.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.main-img-wrap {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4/5;
	margin-bottom: 14px;
	background: #f5f5f5;
}

.main-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.thumb-item {
	cursor: pointer;
	border: 3px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.2s;
}

.thumb-item.active {
	border-color: #F7941D;
}

.thumb-item img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	display: block;
}

.thumb-item:hover img {
	opacity: 0.85;
}

.spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 36px;
}

.spec-card {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 16px 20px;
}

.spec-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #aaa;
	margin-bottom: 6px;
}

.spec-value {
	font-weight: 700;
	font-size: 20px;
	color: #0d1117;
	font-family: 'Barlow Condensed', sans-serif;
	letter-spacing: 0.5px;
}

.btn-orange {
	background: #F7941D;
	color: #fff;
	padding: 16px 36px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-orange:hover {
	background: #d97d0d;
	opacity: 1;
}

.btn-green {
	background: #25D366;
	color: #fff;
	padding: 16px 36px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-green:hover {
	opacity: 0.9;
}

.benefits-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: 56px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-top: 3px solid #F7941D;
	border-radius: 12px;
	padding: 28px 22px;
}

.section-white .benefit-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
}

.benefit-card i {
	font-size: 26px;
	color: #fff;
	margin-bottom: 18px;
	display: block;
}

.section-white .benefit-card i {
	color: #F7941D;
}

.benefit-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.section-white .benefit-card p {
	color: #3a3a3a;
}

.usecase-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.usecase-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.usecase-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.usecase-icon {
	width: 44px;
	height: 44px;
	background: #F7941D;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.usecase-icon i {
	color: #fff;
	font-size: 17px;
}

.usecase-item span {
	font-size: 15px;
	font-weight: 500;
	color: #1a1a1a;
}

.since-card {
	background: #0d1117;
	border-radius: 24px;
	padding: 60px 52px;
	text-align: center;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 400px;
}

.since-card-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #F7941D, #ffba5c);
}

.since-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 52px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.25);
	line-height: 1;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.since-year {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 96px;
	font-weight: 900;
	color: #F7941D;
	line-height: 1;
	letter-spacing: -3px;
}

.since-sub {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 12px;
}

.since-divider {
	width: 40px;
	height: 2px;
	background: rgba(255, 255, 255, 0.15);
	margin: 0 auto 16px;
}

.since-brand {
	color: #F7F7F7;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.faq-item {
	border-bottom: 1px solid #ebebeb;
}

.faq-btn {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.faq-btn span:first-child {
	font-weight: 600;
	font-size: 16px;
	color: #0d1117;
	line-height: 1.4;
}

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: #F7941D;
	flex-shrink: 0;
	width: 28px;
	text-align: center;
}

.faq-answer {
	padding: 0 40px 24px 0;
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	display: none;
}

.faq-answer.open {
	display: block;
}

.gallery-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
}

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

.gallery-item {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 3/4;
	background: #1a1f2b;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

footer {
	background: #060a0f;
	padding: 64px 80px 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom {
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-contact-list a {
	color: #F7F7F7;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #F7F7F7;
	margin-bottom: 20px;
}

.whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	background: #25D366;
	color: white;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	z-index: 999;
	animation: wapulse 2.5s infinite;
	box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	opacity: 1;
}

.hero-icon--medal {
	color: #F7941D;
}

.hero-icon--whatsapp {
	font-size: 20px;
}

.product-description {
	padding-top: 8px;
}

.product-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 44px;
	font-weight: 900;
	color: #0d1117;
	line-height: 1.05;
	text-transform: uppercase;
	margin: 0 0 28px 0;
}

.product-copy,
.product-copy--bottom,
.benefits-intro-copy,
.footer-description,
.footer-address,
.footer-copyright,
.faq-container p {
	color: #555;
	line-height: 1.8;
	font-size: 15px;
	margin: 0 0 18px 0;
	font-family: 'Inter', sans-serif;
}

.product-copy--bottom {
	margin: 0 0 36px 0;
}

.benefits-intro-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 14px 0;
}

.section-white .benefits-intro-title,
.section-white .benefits-header h2,
.section-white .section-title-dark {
	color: #0d1117;
}

.section-white .benefits-intro-copy {
	color: #444;
}

.benefits-intro-copy {
	color: rgba(255, 255, 255, 0.5);
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
}

.usecase-actions {
	margin-top: 40px;
}

.usecase-card-wrapper {
	display: flex;
	justify-content: center;
}

.faq-container {
	max-width: 760px;
}

.faq-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 900;
	color: #0d1117;
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 52px 0;
}

.gallery-section {
	padding: 96px 80px;
	background: #f8f8f8;
}

.gallery-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 900;
	color: #0d1117;
	text-transform: uppercase;
	line-height: 1;
	margin: 0;
}

.gallery-cta {
	flex-shrink: 0;
}

.footer-brand-logo {
	margin-bottom: 18px;
}

.footer-description,
.footer-address {
	color: #F7F7F7;
	font-size: 14px;
	line-height: 1.8;
	max-width: 280px;
	margin: 0;
}

.footer-contact-icon {
	color: #F7941D;
	width: 16px;
	text-align: center;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.3);
	font-size: 12px;
	margin: 0;
}

.footer-symbol {
	opacity: 0.3;
}

@media (max-width: 720px) {
	.cookie-consent-banner__content {
		flex-direction: column;
	}

	.cookie-consent-banner__actions {
		margin-left: 0;
		justify-content: flex-start;
	}

	.cookie-consent-modal__footer {
		justify-content: stretch;
	}

	.cookie-consent-modal__footer .cookie-btn {
		flex: 1 1 100%;
	}
}