@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  --red-primary: #E8000A;
  --red-dark: #B8000A;
  --red-deeper: #8B0000;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #F0F0F0;
  --mid-gray: #CCCCCC;
  --dark-text: #1A1A1A;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header__logo img {
  height: 95px;
  width: auto;
  transition: transform 0.3s var(--ease-smooth), opacity 0.2s var(--ease-smooth);
}

/* Micro-fade durante o swap de logo */
.header__logo img.logo-swapping {
  opacity: 0;
}

.header__logo:hover img { transform: scale(1.04); }

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

.header__nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
  position: relative;
}

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

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
  transform-origin: left;
}
.header__nav a:hover::after { transform: scaleX(1); }

.header__cta {
  background: var(--white);
  color: var(--red-primary) !important;
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header.scrolled .header__cta {
  background: var(--red-primary);
  color: var(--white) !important;
}

.header__cta:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 32px rgba(232, 0, 10, 0.35) !important;
}

.header__cta::after { display: none !important; }

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.header__menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s var(--ease-smooth);
}
.header.scrolled .header__menu-toggle span { background: var(--dark-text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #0a0a0a;
  /* overflow visible: a wave pode extravasar ligeiramente para baixo */
  overflow: visible;
  /* Sem margin/padding — a seção abraça exatamente o banner-wrap */
  line-height: 0;
}

/* ---- Banner full-bleed ---- */
.hero__banner-wrap {
  position: relative;
  width: 100%;
  /* Altura mínima: viewport. Cresce se o conteúdo precisar */
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Imagem ocupa exatamente o tamanho do container — sem gap preto */
.hero__banner-wrap > picture {
  grid-area: 1 / 1;
  display: contents;
}
.hero__banner-img {
  grid-area: 1 / 1;
  width: 100%;
  /* Preenche toda a altura do wrapper */
  height: 100%;
  min-height: 100vh;
  display: block;
  object-fit: cover;
  /* Banner2 é ~16:9 com personagem à direita/centro */
  object-position: right center;
}

/* Gradiente escuro à esquerda para legibilidade do texto */
.hero__banner-wrap::before {
  content: '';
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8,8,8,0.90) 0%,
    rgba(8,8,8,0.68) 36%,
    rgba(8,8,8,0.18) 60%,
    rgba(8,8,8,0.0) 78%
  );
  pointer-events: none;
}

/* ---- Copy overlay — sobreposto via grid na mesma célula ---- */
.hero__overlay-content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  padding: 90px 40px 80px;
}

.hero__overlay-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge removido do HTML — regra mantida vazia para não quebrar nada */
.hero__badge { display: none; }
.hero__badge-dot { display: none; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.75s var(--ease-fluid) forwards;
}
.hero__headline .line:nth-child(1) span { animation-delay: 0.2s; }
.hero__headline .line:nth-child(2) span { animation-delay: 0.32s; }
.hero__headline .line:nth-child(3) span { animation-delay: 0.44s; }

.hero__headline .accent {
  color: var(--red-primary);
  font-style: italic;
}

.hero__sub {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-fluid) 0.58s forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-fluid) 0.72s forwards;
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), background 0.2s;
  box-shadow: 0 8px 32px rgba(232,0,10,0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 16px 48px rgba(232,0,10,0.55); background: var(--red-dark); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: scale(1.03); }

/* ---- Wave divider — ocupa a mesma célula do grid, alinhada ao fundo ---- */
.hero__wave {
  grid-area: 1 / 1;
  align-self: end;       /* gruda no fundo da célula */
  justify-self: stretch;
  position: relative;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
  /* Margem negativa para sobrepor 1px e eliminar gap entre sections */
  margin-bottom: -1px;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ---- Stats removidos do hero (agora na trust band) ---- */
.hero__stats { display: none; }

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--white);
  padding: 40px 40px 56px;
  position: relative;
  z-index: 5;
}

.trust-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  /* Pill container único envolvendo todos os itens */
  display: flex;
  align-items: stretch;
  background: #F2F4F7;
  border-radius: 100px;
  overflow: hidden;
  /* Borda sutil */
  border: 1px solid #E4E7EC;
}

/* Cada item ocupa espaço igual */
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  position: relative;
  transition: background 0.25s var(--ease-smooth);
}

.trust-item:hover {
  background: #EAEDF2;
}

/* Separador vertical entre itens */
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #D0D5DD;
}

/* Texto à esquerda */
.trust-item__text {
  flex: 1;
}

.trust-item__text strong {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1A2340;
  line-height: 1.3;
  margin-bottom: 2px;
}

.trust-item__text span {
  font-size: 0.78rem;
  color: #667085;
  font-weight: 400;
}

/* Ícone circular preto à direita */
.trust-item__icon {
  width: 52px;
  height: 52px;
  background: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s var(--ease-smooth);
}

.trust-item:hover .trust-item__icon {
  background: var(--red-primary);
  transform: scale(1.08);
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark-text);
}

.section-sub {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--off-white);
  padding: 100px 40px;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-dark), var(--red-primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.products__header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.products__header-left .section-headline { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
.products__header-left .section-sub { max-width: 480px; margin-top: 16px; }

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

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid);
  cursor: pointer;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 64px rgba(232,0,10,0.15);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-fluid);
}
.product-card:hover .product-card__image { transform: scale(1.04); }

.product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-fluid);
}
.product-card:hover .product-card__overlay { transform: translateY(0); }

.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red-primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  transition: background 0.2s;
}
.product-card__cta:hover { background: var(--red-dark); }

@media (max-width: 768px) {
  .product-card__cta { font-size: 0.78rem; padding: 10px 14px; gap: 6px; }
  .product-card__cta .cta-full { display: none; }
}

/* ===== ONDE ESTAMOS ===== */
.location {
  background: var(--off-white);
  padding: 100px 40px;
}

.location__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

/* Conteúdo esquerdo */
.location__content .section-tag { margin-bottom: 16px; }
.location__content .section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}
.location__content .section-sub { margin-bottom: 36px; }

.location__info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.location__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__info-icon {
  width: 44px;
  height: 44px;
  background: var(--red-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location__info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.location__info-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-text);
  margin-bottom: 3px;
}
.location__info-text span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.location__btn {
  align-self: flex-start;
  width: fit-content;
}

/* Mapa direito */
.location__map-wrap { position: relative; }

/* ===== MAP CARD ===== */
.map-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Fundo SVG */
.map-card__bg {
  position: absolute;
  inset: 0;
}

.map-card__streets {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Glow na avenida principal */
.map-card__glow {
  position: absolute;
  top: calc(50% - 4px);
  left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,0,10,0.12) 20%, rgba(232,0,10,0.18) 50%, rgba(232,0,10,0.12) 80%, transparent 100%);
  filter: blur(6px);
}

/* Vignette nas bordas */
.map-card__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.75) 100%);
}

/* Pin central */
.map-card__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.map-card__pin-pulse {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,0,10,0.2);
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.6); opacity: 0; }
}

.map-card__pin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--red-primary);
  box-shadow: 0 4px 20px rgba(232,0,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.map-card__pin-icon svg {
  transform: rotate(45deg);
}

.map-card__pin-label {
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Info overlay topo */
.map-card__overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.map-card__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
}

.map-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.8);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.map-card__address {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.map-card__address-street {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.map-card__address-city {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

/* Botão CTA */
.map-card__cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(232,0,10,0.45);
  transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth), background 0.2s;
}

.map-card__cta:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.04);
  box-shadow: 0 14px 40px rgba(232,0,10,0.6);
  background: var(--red-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .location__container { grid-template-columns: 1fr; gap: 48px; }
  .map-card { height: 380px; }
}
@media (max-width: 768px) {
  .location { padding: 72px 24px; }
  .map-card { height: 320px; }
  .map-card__address { display: none; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
  padding: 100px 40px;
}

.testimonials__header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.testimonials__header .section-headline { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px; }

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

.testi-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-fluid), box-shadow 0.3s;
  border: 1px solid transparent;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(232,0,10,0.12);
}

.testi-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testi-card__star {
  width: 18px; height: 18px;
  background: var(--red-primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-card__quote {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-card__name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-text);
}
.testi-card__role {
  font-size: 0.8rem;
  color: #888;
}

/* ===== FAQ ===== */
.faq {
  background: var(--white);
  padding: 100px 40px;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
}
.faq__header .section-headline { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red-primary); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.3s var(--ease-smooth);
  font-size: 1.2rem;
  color: var(--dark-text);
}
.faq-item.open .faq-icon {
  border-color: var(--red-primary);
  background: var(--red-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-fluid), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--red-primary);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.final-cta::after {
  content: 'NICOLL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
}

.final-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}

.final-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 48px;
}

.final-cta__btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s, background 0.2s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  margin: 8px auto 0;
}
.final-cta__btn--whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}

.final-cta__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 72px 40px 32px;
  color: var(--white);
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: var(--red-primary); border-color: var(--red-primary); transform: translateY(-2px); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links li a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-fluid), transform 0.8s var(--ease-fluid);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ===== KEYFRAMES ===== */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__overlay-content { padding: 120px 48px 100px 48px; max-width: 580px; }
  /* Trust band: 2 itens por linha no tablet */
  .trust-band__inner { flex-wrap: wrap; border-radius: 20px; }
  .trust-item { flex: 1 1 calc(50% - 1px); min-width: 0; }
  .trust-item:nth-child(2)::before { display: block; }
  .trust-item:nth-child(3)::before { top: 0; left: 16px; right: 16px; width: auto; height: 1px; }
  .trust-item:nth-child(4)::before { display: block; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header { padding: 14px 24px; }
  .header__nav { display: none; gap: 20px; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(232,0,10,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    z-index: 99;
    gap: 32px;
  }
  .header__nav.open a { font-size: 1.3rem; }
  .header__menu-toggle { display: flex; z-index: 100; }

  /* Hero banner mobile — volta para cover para preencher tela */
  .hero__banner-wrap {
    /* Grid continua, só ajustamos a imagem */
  }
  .hero__banner-img {
    /* No mobile usa imagem portrait — cover centralizado (mesma proporção do smartbanner) */
    height: 100svh;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    min-height: unset;
    max-height: unset;
  }
  .hero__banner-wrap::before {
    display: none;
  }
  .hero__overlay-content {
    padding: 60px 24px 160px 24px;
    max-width: 100%;
    justify-content: center;
  }
  .hero__wave svg { height: 44px; }

  .trust-band { padding: 28px 20px 44px; }
  /* Pill vira coluna no mobile */
  .trust-band__inner {
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
  }
  .trust-item {
    padding: 16px 20px;
    min-width: unset;
  }
  /* Separador horizontal no mobile */
  .trust-item + .trust-item::before {
    top: 0; left: 16px; right: 16px;
    width: auto; height: 1px;
  }

  .products { padding: 72px 24px; }
  .products__header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .testimonials { padding: 72px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .faq { padding: 72px 24px; }
  .final-cta { padding: 72px 24px; }
  .final-cta__btn--whatsapp { width: 100%; justify-content: center; }

  .footer { padding: 56px 24px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
