/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #d33100;
  --black: #1a1a1a;
  --white: #ffffff;
  --gold: #c99a00;
  --light-gray: #6b6b6b;
  --dark-gray: #999999;
  --bg: #ffffff;
  --bg-subtle: #f5f5f5;
  --bg-card: #f9f9f9;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --border-light: rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-headline: 'Poppins', sans-serif;
  --font-label: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light-gray);
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ============================================
   COMPONENTE: SPOTLIGHT CARD
   ============================================ */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(211, 49, 0, 0.07), transparent 40%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* ============================================
   COMPONENTE: SHIMMER BORDER
   ============================================ */
.shimmer-border {
  position: relative;
  border: 1px solid var(--border-light);
}

.shimmer-border::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  background-size: 200% 100%;
  background-position: 200% 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.shimmer-border:hover::after {
  opacity: 1;
  animation: shimmer 4s linear infinite;
}

/* ============================================
   COMPONENTE: MORPHING BLOB
   ============================================ */
.morph-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  background: var(--red);
  opacity: 0.05;
  filter: blur(80px);
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  animation: morphBlob 8s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: border-radius;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes morphBlob {
  0%   { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
  50%  { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
  100% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(211, 49, 0, 0.25); }
  50%      { box-shadow: 0 0 40px rgba(211, 49, 0, 0.45); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

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

@keyframes gradientText {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotateFull {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Animação de entrada ao scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   1. HEADER FIXO
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--red);
  transition: height 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: height, background;
}

.header.scrolled {
  height: 60px;
  background: var(--red);
  box-shadow: 0 4px 20px rgba(211, 49, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-left: 16px;
  transition: transform 0.6s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.08);
}

/* Navegação desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--white);
  transition: left 0.4s var(--ease), right 0.4s var(--ease);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  left: 0;
  right: 0;
}

/* Botão CTA do Header */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-headline);
  font-size: 28px;
  color: var(--text-primary);
  transition: color 0.3s var(--ease);
}

.mobile-menu a.btn-solid {
  font-family: var(--font-label);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 220px;
  margin-top: 8px;
}

.mobile-menu a.btn-solid svg {
  width: 20px;
  height: 20px;
}

.mobile-menu a.btn-solid:hover {
  color: var(--white);
  background: #c52a00;
}

.mobile-menu a:hover {
  color: var(--red);
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: url("imagens/faixada-deposito.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .gold {
  color: var(--red);
  font-style: italic;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ============================================
   BOTÕES GLOBAIS
   ============================================ */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-solid:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(211, 49, 0, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.btn-ghost:hover {
  transform: scale(1.05);
  border-color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(240, 190, 0, 0.3);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* Hero visual — lado direito */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 20px 24px;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-float-card:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-float-card:nth-child(2) {
  top: 40%;
  right: 5%;
  animation-delay: 1s;
}

.hero-float-card:nth-child(3) {
  bottom: 10%;
  left: 15%;
  animation-delay: 2s;
}

.hero-float-card .card-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.hero-float-card .card-name {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-float-card .card-detail {
  font-size: 13px;
  color: var(--light-gray);
}

.hero-float-card .data-bar {
  margin-top: 10px;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.hero-float-card .data-bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 1.5s var(--ease);
}

.hero-float-card .data-bar-fill.red  { background: var(--red); }
.hero-float-card .data-bar-fill.gold { background: var(--gold); }

.hero .morph-blob {
  top: 20%;
  right: -10%;
}

/* ============================================
   3. PRODUTOS
   ============================================ */
.products {
  position: relative;
}

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

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title .accent {
  color: var(--red);
  font-style: italic;
}

.partners-text {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: center;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  min-height: 170px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: grid;
  place-items: center;
}

.partner-card img {
  width: 160px;
  max-height: 80px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.partners .partners-grid {
  gap: 26px;
}

.partner-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.11);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.product-card .product-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.4s var(--ease);
}

.product-card .product-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-card .product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-icon {
  transform: rotate(15deg);
}

.product-card .product-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card .product-desc {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ============================================
   4. PROMOÇÕES DO GÁS
   ============================================ */
.promotions {
  position: relative;
  overflow: hidden;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  justify-items: center;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px 28px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  text-align: center;
}

.promo-card .promo-img {
  width: min(320px, 100%);
  margin: 0 auto 20px;
  display: block;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.promo-card .promo-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.promo-card .promo-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.promo-card.gold-accent .promo-badge {
  background: rgba(240, 190, 0, 0.15);
  color: var(--gold);
}

.promo-card.red-accent .promo-badge {
  background: rgba(211, 49, 0, 0.15);
  color: var(--red);
}

.promo-card .promo-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  white-space: nowrap;
}

.promo-card.gold-accent .promo-title {
  color: var(--gold);
}

.promo-card.red-accent .promo-title {
  color: var(--red);
}

.promo-card .promo-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.promotions .morph-blob {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

/* ============================================
   5. SOBRE NÓS
   ============================================ */
.about {
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-text {
  font-size: 18px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 49, 0, 0.15);
  color: var(--red);
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(211, 49, 0, 0.3);
}

.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item .stat-number {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-number .stat-suffix {
  color: var(--red);
}

.stat-item .stat-label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light-gray);
}

/* ============================================
   6. CLIENTES / DEPOIMENTOS
   ============================================ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(211, 49, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}

.testimonial-info .testimonial-name {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
}

.testimonial-info .testimonial-location {
  font-size: 13px;
  color: var(--light-gray);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.carousel-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--red);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.carousel-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 999px;
}

/* ============================================
   7. ONDE ESTAMOS
   ============================================ */
.location {
  background: var(--bg-subtle);
  position: relative;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--red);
  margin-bottom: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.location-card .loc-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.location-card .loc-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.location-card .loc-text {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ============================================
   8. CONTATO / CTA FINAL
   ============================================ */
.contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--text-primary), var(--gold), var(--red), var(--text-primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s linear infinite;
}

.contact-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main-cta {
  position: relative;
  display: inline-block;
  margin-bottom: 64px;
}

.contact-main-cta .pulse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(211, 49, 0, 0.2) 0%, transparent 70%);
  animation: pulseDot 3s infinite;
  pointer-events: none;
}

.contact-main-cta .btn-solid {
  position: relative;
  z-index: 2;
  padding: 20px 48px;
  font-size: 14px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-card .cc-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card .cc-label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light-gray);
  margin-bottom: 4px;
}

.contact-card .cc-value {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 500;
}

/* ============================================
   9. FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  color: var(--white);
  border-top: none;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
}

.footer-brand .footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.footer-phones a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s var(--ease);
}

.footer-phones a:hover {
  color: #ffffff;
}

.footer-brand .footer-tagline {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer-col {
  text-align: left;
}

.footer-col .footer-col-title {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-location {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 49, 0, 0.1);
  color: var(--red);
  font-family: var(--font-label);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(211, 49, 0, 0.2);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .about .container {
    grid-template-columns: 1fr;
  }

  .location-info {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-padding {
    padding: 80px 0;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 64px);
  }

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

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

  .stats-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-container iframe {
    height: 250px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(32px, 12vw, 48px);
  }

  .map-container iframe {
    height: 200px;
  }
}
