﻿/*-------------------------------------------------------------------------
  Barreira Prime Auto Pecas - Stylesheet Principal
  -------------------------------------------------------------------------
  Paleta, tipografia, layout global, componentes, secoes e responsividade.
  -------------------------------------------------------------------------*/

/* ========================================================================
   1. VARIAVEIS E RESET
   ======================================================================== */

:root {
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary: #1d3557;
	--secondary-light: #264673;
	--dark: #111;
	--light: #f5f7fa;
	--white: #fff;
	--border: #e0e0e0;
	--text: #333;
	--text-muted: #666;
	--text-light: #999;

	--font-heading: "Montserrat", sans-serif;
	--font-body: "Roboto", sans-serif;

	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 0.3s var(--ease);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
	--radius: 10px;
	--radius-lg: 16px;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	line-height: 1.7;
	overflow-x: hidden;
	background: var(--white);
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: color var(--transition);
}

ul {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--secondary);
	line-height: 1.2;
}

/* ========================================================================
   2. UTILIDADES
   ======================================================================== */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-pad {
	padding: 100px 0;
}

.bg-light {
	background-color: var(--light);
}

.text-accent {
	color: var(--primary);
}

.section-label {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--primary);
	margin-bottom: 12px;
}

.section-label--light {
	color: rgba(255, 255, 255, 0.7);
}

.section-heading {
	font-size: 2.6rem;
	margin-bottom: 16px;
}

.section-heading--light {
	color: var(--white);
}

.section-desc {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 600px;
}

.section-header--center {
	text-align: center;
	margin-bottom: 50px;
}

.section-header--center .section-desc {
	margin: 0 auto;
}

/* ========================================================================
   3. BOTOES
   ======================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all var(--transition);
	border: 2px solid transparent;
	white-space: nowrap;
}

.btn:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 3px;
}

.btn--primary {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.btn--primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn--outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
	background: var(--white);
	color: var(--secondary);
	border-color: var(--white);
	transform: translateY(-2px);
}

.btn--outline-dark {
	background: transparent;
	color: var(--secondary);
	border-color: var(--secondary);
}

.btn--outline-dark:hover {
	background: var(--secondary);
	color: var(--white);
	transform: translateY(-2px);
}

.btn--whatsapp {
	background: #25d366;
	color: var(--white);
	border-color: #25d366;
	font-size: 1.1rem;
	padding: 16px 36px;
}

.btn--whatsapp:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp-sm {
	background: #25d366;
	color: var(--white);
	border-color: #25d366;
	font-size: 0.9rem;
	padding: 12px 20px;
}

.btn--whatsapp-sm:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--lg {
	padding: 16px 36px;
	font-size: 1.05rem;
}

.btn--block {
	display: flex;
	width: 100%;
}

/* ========================================================================
   4. HEADER / NAVBAR
   ======================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	transition:
		background var(--transition),
		box-shadow var(--transition);
}

.header.scrolled {
	background: var(--white);
	box-shadow: var(--shadow);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	transition: height var(--transition);
}

.header.scrolled .header__inner {
	height: 68px;
}

.header__logo {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--white);
	transition: color var(--transition);
	z-index: 10;
}

.header.scrolled .header__logo {
	color: var(--secondary);
}

.header__logo span {
	color: var(--primary);
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header__nav-list {
	display: flex;
	gap: 28px;
}

.header__nav-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	position: relative;
	padding: 4px 0;
	transition: color var(--transition);
}

.header.scrolled .header__nav-link {
	color: var(--text);
}

.header__nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
	color: var(--primary);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
	width: 100%;
}

.header__cta {
	padding: 10px 22px;
	font-size: 0.85rem;
}

/* Hamburger */
.header__menu-toggle {
	display: none;
	width: 32px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	transition: all 0.35s var(--ease);
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
	background: var(--secondary);
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	left: 0;
}

.hamburger::before {
	top: 0;
}
.hamburger::after {
	bottom: 0;
}

.header__menu-toggle[aria-expanded="true"] .hamburger {
	background: transparent;
}

.header__menu-toggle[aria-expanded="true"] .hamburger::before {
	top: 50%;
	transform: rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .hamburger::after {
	bottom: 50%;
	transform: rotate(-45deg);
}

/* ========================================================================
   5. HERO
   ======================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

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

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(29, 53, 87, 0.92) 0%,
		rgba(17, 17, 17, 0.85) 100%
	);
}

.hero__content {
	max-width: 720px;
	color: var(--white);
}

.hero__badge {
	display: inline-block;
	background: rgba(37, 99, 235, 0.15);
	border: 1px solid rgba(37, 99, 235, 0.3);
	color: var(--primary);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 24px;
	letter-spacing: 1px;
}

.hero__title {
	font-size: 3.8rem;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 20px;
	line-height: 1.1;
}

.hero__subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 36px;
	line-height: 1.8;
	max-width: 580px;
}

.hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Seta scroll */
.hero__scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	display: flex;
	justify-content: center;
}

.hero__scroll-indicator span {
	width: 6px;
	height: 10px;
	background: var(--white);
	border-radius: 3px;
	margin-top: 8px;
	animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(18px);
		opacity: 0.2;
	}
}

/* ========================================================================
   6. SOBRE / DIFERENCIAIS
   ======================================================================== */

.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.about__image {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.about__image-badge {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: var(--primary);
	color: var(--white);
	padding: 16px 24px;
	border-radius: var(--radius);
	text-align: center;
	line-height: 1.2;
}

.about__image-badge strong {
	display: block;
	font-size: 2rem;
	font-family: var(--font-heading);
}

.about__image-badge span {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about__text .section-heading {
	margin-bottom: 20px;
}

.about__text p {
	color: var(--text-muted);
	margin-bottom: 16px;
}

.about__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 32px;
}

.about__feature-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.about__feature-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.2rem;
	transition: all var(--transition);
}

.about__feature-item:hover .about__feature-icon {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.05);
}

.about__feature-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--secondary);
}

.about__feature-item span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* Contadores */
.counters {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 50px 40px;
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.counters__item i {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 12px;
}

.counters__number {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--secondary);
	display: inline;
}

.counters__suffix {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.counters__item p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 4px;
}

/* ========================================================================
   7. CATALOGO DE PECAS
   ======================================================================== */

.catalog__tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.catalog__tab {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 10px 24px;
	border: 2px solid var(--border);
	border-radius: 50px;
	background: var(--white);
	color: var(--text);
	cursor: pointer;
	transition: all var(--transition);
}

.catalog__tab:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.catalog__tab.active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.catalog__tab:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 3px;
}

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

/* Product Cards */
.product-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
}

.product-card.hidden {
	display: none;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.product-card__img {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__img img {
	transform: scale(1.08);
}

.product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 14px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-card__badge--sale {
	background: var(--primary);
	color: var(--white);
}

.product-card__badge--new {
	background: var(--secondary);
	color: var(--white);
}

.product-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card__category {
	font-size: 0.8rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	margin-bottom: 6px;
}

.product-card__title {
	font-size: 1.05rem;
	color: var(--text);
	margin-bottom: 8px;
	font-weight: 700;
}

.product-card__models {
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 16px;
	margin-top: auto;
}

.product-card__price {
	margin-bottom: 16px;
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-top: auto;
}

.product-card__price-old {
	font-size: 0.9rem;
	color: var(--text-light);
	text-decoration: line-through;
}

.product-card__price-current {
	font-size: 1.4rem;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--secondary);
}

.catalog__more {
	text-align: center;
	margin-top: 48px;
}

/* ========================================================================
   8. SECAO DE VIDEO
   ======================================================================== */

.video-section {
	position: relative;
	padding: 140px 0;
	text-align: center;
	overflow: hidden;
}

.video-section__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.video-section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(29, 53, 87, 0.93) 0%,
		rgba(17, 17, 17, 0.88) 100%
	);
}

.video-section__content {
	position: relative;
	color: var(--white);
}

.video-section__desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.1rem;
	max-width: 550px;
	margin: 0 auto 48px;
}

.video-section__play {
	position: relative;
	width: 90px;
	height: 90px;
	border: none;
	background: var(--primary);
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}

.video-section__play:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

.video-section__play-icon {
	color: var(--white);
	font-size: 1.6rem;
	position: relative;
	z-index: 2;
	margin-left: 4px;
}

.video-section__play-ripple {
	position: absolute;
	inset: -12px;
	border: 3px solid var(--primary);
	border-radius: 50%;
	animation: ripple 2s infinite;
}

@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* Video Modal */
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s var(--ease);
}

.video-modal.active {
	opacity: 1;
	visibility: visible;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.video-modal__content {
	position: relative;
	width: 90%;
	max-width: 900px;
	transform: scale(0.9);
	transition: transform 0.35s var(--ease);
}

.video-modal.active .video-modal__content {
	transform: scale(1);
}

.video-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.8rem;
	cursor: pointer;
	transition: color var(--transition);
}

.video-modal__close:hover {
	color: var(--primary);
}

.video-modal__wrapper {
	position: relative;
	padding-top: 56.25%;
	border-radius: var(--radius);
	overflow: hidden;
}

.video-modal__wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* ========================================================================
   9. GRID DE MARCAS
   ======================================================================== */

.brands__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin-top: 10px;
}

.brands__grid-item {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 16px;
	gap: 12px;
	transition: all var(--transition);
	cursor: default;
}

.brands__grid-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-6px);
}

.brands__grid-icon {
	width: 56px;
	height: 56px;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.4rem;
	transition: all var(--transition);
}

.brands__grid-item:hover .brands__grid-icon {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.brands__grid-item span {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--secondary);
}

.brands__cta {
	text-align: center;
	margin-top: 48px;
}

.brands__cta p {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 20px;
}

/* ========================================================================
   10. DEPOIMENTOS
   ======================================================================== */

.testimonials__carousel {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
}

.testimonials__track {
	display: flex;
	transition: transform 0.5s var(--ease);
}

.testimonial-card {
	flex: 0 0 100%;
	padding: 0 20px;
}

.testimonial-card__stars {
	color: #f4b400;
	font-size: 1rem;
	margin-bottom: 20px;
	display: flex;
	gap: 4px;
}

.testimonial-card__text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--text);
	font-style: italic;
	margin-bottom: 28px;
	position: relative;
	padding-left: 28px;
	border-left: 3px solid var(--primary);
}

.testimonial-card__author {
	display: block;
	padding-left: 28px;
}

.testimonial-card__author strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1rem;
	color: var(--secondary);
}

/* Arrows */
.testimonials__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--border);
	color: var(--secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
	z-index: 5;
}

.testimonials__arrow:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.testimonials__arrow--prev {
	left: -10px;
}
.testimonials__arrow--next {
	right: -10px;
}

/* Dots */
.testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
}

.testimonials__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--border);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	padding: 0;
}

.testimonials__dot.active {
	background: var(--primary);
	transform: scale(1.3);
}

/* ========================================================================
   11. CTA / CALL TO ACTION
   ======================================================================== */

.cta {
	background: linear-gradient(135deg, var(--secondary) 0%, #0d2240 100%);
	color: var(--white);
}

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

.cta__text .section-heading {
	margin-bottom: 16px;
}

.cta__text p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.1rem;
	line-height: 1.8;
}

.cta__actions {
	text-align: center;
}

.cta__info {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cta__info-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.cta__info-item i {
	color: var(--primary);
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

/* ========================================================================
   12. FOOTER
   ======================================================================== */

.footer {
	background: var(--dark);
	color: var(--white);
	padding-top: 70px;
}

.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 50px;
}

.footer__logo {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--white);
	display: inline-block;
	margin-bottom: 16px;
}

.footer__logo span {
	color: var(--primary);
}

.footer__col--brand p {
	color: #aaa;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.footer__social {
	display: flex;
	gap: 12px;
}

.footer__social a {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	color: var(--white);
	font-size: 1rem;
	transition: all var(--transition);
}

.footer__social a:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

.footer__col h3 {
	color: var(--white);
	font-size: 1.05rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer__col h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--primary);
}

.footer__col ul li {
	margin-bottom: 10px;
}

.footer__col ul li a {
	color: #aaa;
	font-size: 0.92rem;
	transition: all var(--transition);
}

.footer__col ul li a:hover {
	color: var(--primary);
	padding-left: 6px;
}

.footer__col--contact ul li {
	color: #aaa;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
}

.footer__col--contact ul li i {
	color: var(--primary);
	margin-top: 4px;
	min-width: 16px;
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	text-align: center;
	color: #666;
	font-size: 0.85rem;
}

.footer__cta-btn {
	margin-top: 20px;
	width: 100%;
	font-size: 0.95rem;
	padding: 14px 24px;
}

.footer__col--contact ul li a {
	color: #aaa;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all var(--transition);
}

.footer__col--contact ul li a:hover {
	color: var(--primary);
}

/* ========================================================================
   13. BOTAO BACK TO TOP + WHATSAPP FLUTUANTE
   ======================================================================== */

.back-to-top {
	position: fixed;
	bottom: 100px;
	right: 24px;
	width: 48px;
	height: 48px;
	background: var(--secondary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--transition);
	z-index: 900;
	box-shadow: var(--shadow);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

.whatsapp-float {
	position: fixed;
	bottom: 32px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: #25d366;
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	z-index: 900;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
	transition: all var(--transition);
	animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.15);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
	animation: none;
}

@keyframes whatsappPulse {
	0%,
	100% {
		box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
	}
	50% {
		box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
	}
}

/* ========================================================================
   14. ANIMACOES ON-SCROLL
   ======================================================================== */

.anim-fade-up {
	opacity: 0;
	transform: translateY(30px);
	animation: animFadeUp 0.8s var(--ease) forwards;
}

.anim-delay-1 {
	animation-delay: 0.15s;
}
.anim-delay-2 {
	animation-delay: 0.3s;
}
.anim-delay-3 {
	animation-delay: 0.45s;
}

@keyframes animFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-left,
.reveal-right,
.reveal-up {
	opacity: 0;
	transition: all 0.8s var(--ease);
}

.reveal-left {
	transform: translateX(-60px);
}
.reveal-right {
	transform: translateX(60px);
}
.reveal-up {
	transform: translateY(50px);
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
	opacity: 1;
	transform: translate(0);
}

/* ========================================================================
   15. RESPONSIVIDADE
   ======================================================================== */

@media (max-width: 1200px) {
	.catalog__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.brands__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 992px) {
	.section-heading {
		font-size: 2.2rem;
	}

	.hero__title {
		font-size: 3rem;
	}

	.about__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about__image {
		max-width: 500px;
	}

	.counters {
		grid-template-columns: repeat(2, 1fr);
	}

	.catalog__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cta__info {
		align-items: center;
	}

	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.brands__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.testimonials__arrow--prev {
		left: 0;
	}
	.testimonials__arrow--next {
		right: 0;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 15px;
	}

	.section-pad {
		padding: 70px 0;
	}

	/* Mobile Nav */
	.header__menu-toggle {
		display: block;
	}

	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		padding: 100px 30px 40px;
		gap: 20px;
		box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
		transition: right 0.4s var(--ease);
		z-index: 5;
	}

	.header__nav.active {
		right: 0;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.header__nav-link {
		color: var(--text) !important;
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--border);
		font-size: 1rem;
	}

	.header__cta {
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}

	/* Hero */
	.hero__title {
		font-size: 2.4rem;
	}

	.hero__subtitle {
		font-size: 1rem;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__scroll-indicator {
		display: none;
	}

	/* Counters */
	.counters {
		padding: 30px 20px;
	}

	.counters__number {
		font-size: 2rem;
	}

	/* Catalog */
	.catalog__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	/* Video */
	.video-section {
		padding: 100px 0;
	}

	/* Testimonials */
	.testimonials__arrow {
		display: none;
	}

	.testimonial-card {
		padding: 0 10px;
	}

	/* CTA */
	.cta__text {
		text-align: center;
	}

	/* Footer */
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

@media (max-width: 576px) {
	.section-heading {
		font-size: 1.8rem;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero__title {
		font-size: 2rem;
	}

	.about__features {
		grid-template-columns: 1fr;
	}

	.counters {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.catalog__grid {
		grid-template-columns: 1fr;
	}

	.catalog__tabs {
		gap: 6px;
	}

	.catalog__tab {
		padding: 8px 16px;
		font-size: 0.8rem;
	}

	.brands__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.brands__grid-item {
		padding: 20px 12px;
	}

	.video-section__play {
		width: 70px;
		height: 70px;
	}

	.brands__item {
		width: 140px;
		height: 60px;
	}
}
