/* ================================================================
   OPENCEL — STYLE.CSS
   Identidade Visual: Verde Limão #8BC53F · Cinza #3A3A3A · Branco
   Tipografia: Outfit (Google Fonts)
   ================================================================ */

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

:root {
  --green:       #8BC53F;
  --green-dark:  #6fa32e;
  --green-light: #a8d85a;
  --green-glow:  rgba(139, 197, 63, 0.25);
  --dark:        #3A3A3A;
  --dark-2:      #2a2a2a;
  --dark-3:      #1e1e1e;
  --mid:         #6b6b6b;
  --light:       #f8f9f4;
  --white:       #ffffff;
  --border:      #e8eee0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 32px rgba(139, 197, 63, 0.25);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
blockquote { quotes: none; }

/* ── CONTAINER ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY UTILITIES ─────────────────────────────────────── */
.accent { color: var(--green); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(139, 197, 63, 0.30);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 197, 63, 0.4);
}

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

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

/* ── SECTION BASE ─────────────────────────────────────────────── */
.section {
  padding: 96px 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  background: rgba(139, 197, 63, 0.12);
  color: var(--green-dark);
  border: 1px solid rgba(139, 197, 63, 0.3);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── HEADER ───────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 197, 63, 0.15);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

.header__logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.header__logo:hover img { opacity: 0.85; }

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

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark);
  transition: all var(--transition);
}
.header__nav-link:hover {
  background: rgba(139, 197, 63, 0.12);
  color: var(--green-dark);
}

.nav__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--green-dark);
  transition: transform var(--transition);
}
.header__nav-link:hover .nav__icon,
.header__mobile-menu li a:hover .nav__icon {
  transform: scale(1.15);
}

.header__mobile-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
}


.header__cta { font-size: 0.88rem; padding: 10px 20px; }

/* Mobile hamburger */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.header__menu-btn:hover { background: var(--light); }
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__menu-btn.open span:nth-child(2) { opacity: 0; }
.header__menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header__mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.header__mobile-menu.open { display: block; }
.header__mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.header__mobile-menu li a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background var(--transition);
}
.header__mobile-menu li a:hover { background: var(--light); }
.header__mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.circuit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.circuit-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Subtle gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(139, 197, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 197, 63, 0.12);
  border: 1px solid rgba(139, 197, 63, 0.25);
  color: var(--green-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero__title-accent {
  color: var(--green);
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero__subtitle strong { color: var(--green-light); font-weight: 600; }

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__ctas .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero__ctas .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero__stats {
  display: flex;
  gap: 0;
  align-items: center;
}

.hero__stat {
  text-align: center;
  padding: 0 24px;
}
.hero__stat:first-child { padding-left: 0; }

.hero__stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone {
  width: 220px;
  height: 420px;
  background: linear-gradient(160deg, #2a2a2a, #1a1a1a);
  border-radius: 36px;
  border: 2px solid rgba(139, 197, 63, 0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.hero__phone:hover { transform: translateY(-8px) rotate(-2deg); }

.hero__phone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.6;
}

.hero__phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 44px 14px 10px;
  overflow: hidden;
}

.hero__phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--dark-3);
  border-radius: 3px;
}

/* Ícone no topo */
.hero__phone-icon-top {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero__phone-icon-top svg { width: 100%; height: 100%; }

/* Label "Diagnóstico Gratuito" */
.hero__phone-label {
  font-size: 0.72rem;
  color: var(--green-light);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Janela do ticker — altura fixa, overflow oculto */
.hero__ticker-window {
  width: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(139, 197, 63, 0.1);
}

/* Fade superior e inferior para efeito de desvanecimento */
.hero__ticker-window::before,
.hero__ticker-window::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.hero__ticker-window::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(42,42,42,0.95), transparent);
}
.hero__ticker-window::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.95), transparent);
}

/* Lista que faz o scroll contínuo para cima */
.hero__ticker-list {
  list-style: none;
  margin: 0; padding: 0;
  animation: ticker-scroll 10s linear infinite;
  will-change: transform;
}

.hero__ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.hero__ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}
.hero__ticker-dot--alt {
  background: #5bc2e7;
  animation-delay: 1.2s;
}

/* Barra de progresso animada na base */
.hero__phone-progress {
  flex-shrink: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.hero__phone-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  animation: progress-fill 10s linear infinite;
}

/* Floating badges */
.hero__float {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 197, 63, 0.25);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float-anim 3s ease-in-out infinite;
}

.hero__float--1 { top: 20%; right: -20px; animation-delay: 0s; }
.hero__float--2 { top: 50%; left: -30px; animation-delay: 1s; }
.hero__float--3 { bottom: 22%; right: -15px; animation-delay: 2s; }

/* ── SERVICES ─────────────────────────────────────────────────── */
.services { background: var(--light); }

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

/* Card centralizado com logo */
.services__logo-card-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.services__logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  cursor: default;
  /* Mesmo tamanho de um card da grid (1/3 da largura - gaps) */
  width: calc((100% - 48px) / 3);
  min-height: 230px;
}

/* Remove o efeito de hover de link do logo card */
.services__logo-card:hover {
  transform: translateY(-6px);
}

.services__logo-card-img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(139,197,63,0.18));
  transition: filter var(--transition), transform var(--transition);
}
.services__logo-card:hover .services__logo-card-img {
  filter: drop-shadow(0 6px 18px rgba(139,197,63,0.32));
  transform: scale(1.04);
}

.services__logo-card-text {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.4;
}

.services__logo-card-badge {
  display: inline-block;
  background: rgba(139, 197, 63, 0.1);
  border: 1px solid rgba(139, 197, 63, 0.25);
  color: var(--green-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 197, 63, 0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  background: rgba(139, 197, 63, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 197, 63, 0.15);
  transition: all var(--transition);
}
.service-card:hover .service-card__icon-wrap {
  background: rgba(139, 197, 63, 0.15);
  border-color: rgba(139, 197, 63, 0.3);
}

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--dark);
}

.service-card__circuit {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 24px; height: 24px;
  opacity: 0.5;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap var(--transition), color var(--transition);
  gap: 4px;
}
.service-card__cta:hover {
  color: var(--green);
  gap: 8px;
}

/* Brands */
.services__brands {
  margin-top: 48px;
  text-align: center;
}
.services__brands-label {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services__brands-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.brand-chip:hover {
  border-color: var(--green);
  background: rgba(139, 197, 63, 0.06);
  color: var(--green-dark);
}

/* ── WHY SECTION ──────────────────────────────────────────────── */
.why { background: var(--white); }

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

.why__card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}

.why__card:hover {
  border-color: rgba(139, 197, 63, 0.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(139, 197, 63, 0.1);
  transform: translateY(-4px);
  background: rgba(139, 197, 63, 0.02);
}

.why__card-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(139,197,63,0.12), rgba(139,197,63,0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(139, 197, 63, 0.15);
  transition: all var(--transition);
}
.why__card:hover .why__card-icon-wrap {
  background: rgba(139, 197, 63, 0.18);
  transform: scale(1.05);
}
.why__card-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--dark);
}

.why__card-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why__card-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}
.why__card-desc strong { color: var(--dark); font-weight: 600; }

/* ── PRODUCTS ─────────────────────────────────────────────────── */
.products { background: var(--dark-3); }
.products .section__title { color: var(--white); }
.products .section__subtitle { color: rgba(255,255,255,0.55); }
.products .section__tag {
  background: rgba(139, 197, 63, 0.15);
  border-color: rgba(139, 197, 63, 0.2);
  color: var(--green-light);
}

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

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(139,197,63,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  background: rgba(139, 197, 63, 0.06);
  border-color: rgba(139, 197, 63, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.product-card:hover::before { opacity: 1; }

.product-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.product-card:hover .product-card__icon { color: var(--white); }
.product-card__icon svg { width: 56px; height: 56px; }

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

.product-card__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-card__tag {
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── STORES ───────────────────────────────────────────────────── */
.stores { background: var(--light); }

.stores__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.store-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 197, 63, 0.25);
  transform: translateY(-4px);
}

.store-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--green);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.store-card__badge--2 { background: var(--dark); }

.store-card__header {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.store-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--green);
}
.store-card__icon svg { width: 52px; height: 52px; }

.store-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.store-card__address {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

.store-card__contacts {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-card__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color var(--transition);
}
.store-card__phone svg { width: 16px; height: 16px; color: var(--green); }
.store-card__phone:hover { color: var(--green-dark); }

.store-card__map {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
  transition: color var(--transition);
}
.store-card__map:hover { color: var(--green-dark); }

/* Hours */
.hours {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
}

.hours__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.hours__title svg { width: 22px; height: 22px; }

.hours__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours__table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--light);
  color: var(--mid);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours__table th:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.hours__table th:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.hours__table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-weight: 500;
}
.hours__table tr:last-child td { border-bottom: none; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.status--open {
  background: rgba(139, 197, 63, 0.12);
  color: var(--green-dark);
  border: 1px solid rgba(139, 197, 63, 0.2);
}
.status--open::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}
.status--closed {
  background: rgba(220,50,50,0.08);
  color: #c0392b;
  border: 1px solid rgba(220,50,50,0.15);
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews { background: var(--white); }

.reviews__rating-hero {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 197, 63, 0.15);
}

.reviews__rating-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.reviews__rating-stars {
  font-size: 1.8rem;
  color: #f5c518;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.reviews__rating-count {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 197, 63, 0.2);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__avatar--2 { background: linear-gradient(135deg, #3498db, #1a6fa3); }
.review-card__avatar--3 { background: linear-gradient(135deg, #e91e63, #9c1040); }
.review-card__avatar--4 { background: linear-gradient(135deg, #ff9800, #e65100); }
.review-card__avatar--5 { background: linear-gradient(135deg, #9c27b0, #5c1060); }
.review-card__avatar--6 { background: linear-gradient(135deg, #00bcd4, #00838f); }

.review-card__name {
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.review-card__stars {
  font-size: 0.8rem;
  color: #f5c518;
  letter-spacing: 1px;
}

.review-card__google {
  margin-left: auto;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
}

.review-card__date {
  font-size: 0.78rem;
  color: rgba(107,107,107,0.6);
  font-weight: 500;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { background: var(--light); }

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

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] {
  border-color: rgba(139, 197, 63, 0.3);
  box-shadow: 0 4px 20px rgba(139, 197, 63, 0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--dark);
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}
.faq__question:hover { background: rgba(139, 197, 63, 0.04); }
.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq__answer p { padding-top: 16px; }
.faq__answer strong { color: var(--dark); }

/* ── CTA FINAL ────────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--dark), #1a3d0a, var(--dark-3));
  overflow: hidden;
}

.cta-final__inner {
  position: relative;
  text-align: center;
  padding: 48px 40px;
  z-index: 1;
}

.cta-final__circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-final__circuit svg { width: 100%; height: 100%; }

.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-final__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--dark-3);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.footer__circuit {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.footer__circuit svg { width: 100%; height: 100%; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 6px 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  display: block;
  object-fit: contain;
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
}
.footer__logo:hover {
  opacity: 0.92;
  box-shadow: 0 6px 24px rgba(139,197,63,0.25);
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 260px;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.footer__instagram:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.footer__info-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 20px;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__address-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.65;
}
.footer__address-line svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }

.footer__link {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--green-light); }

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav-list li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer__nav-list li a:hover {
  color: var(--green-light);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-inner strong { color: rgba(255,255,255,0.55); }

/* Barra do desenvolvedor */
.footer__dev {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 10px 0;
  text-align: center;
}
.footer__dev-inner {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}
.footer__dev-link {
  color: #8BC53F;
  font-weight: 700;
  margin-left: 4px;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer__dev-link:hover {
  color: #a8d85a;
  text-shadow: 0 0 8px rgba(139,197,63,0.5);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1fa756;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { color: var(--white); }

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ── ANIMATIONS ───────────────────────────────────────────────── */

/* Hero: texto sempre visível — apenas desliza levemente do eixo Y */
@keyframes heroSlide {
  from { transform: translateY(-10px); }
  to   { transform: translateY(0); }
}

/* Hero visual (phone): sobe suavemente */
@keyframes heroSlideUp {
  from { transform: translateY(14px); }
  to   { transform: translateY(0); }
}

/* Outros elementos do site (seções de conteúdo) */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}


@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(139,197,63,0.3)); }
  50%       { filter: drop-shadow(0 0 12px rgba(139,197,63,0.7)); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Ticker scroll: desloca a lista 50% para cima (6 itens dos 12 totais) */
@keyframes ticker-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Barra de progresso que preenche de 0 a 100% e reinicia */
@keyframes progress-fill {
  0%   { width: 0%;   opacity: 1; }
  90%  { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid,
  .products__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  /* Logo card: metade da largura em tablet */
  .services__logo-card {
    width: calc((100% - 24px) / 2);
  }
}

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

  .header__nav { display: none; }
  .header__cta  { display: none; }
  .header__menu-btn { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__stat { text-align: left; padding: 0; }

  .services__grid,
  .products__grid,
  .why__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  /* Logo card ocupa largura total no mobile */
  .services__logo-card { width: 100%; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__inner { padding: 32px 20px; }

  .section__title { font-size: 1.7rem; }

  .hours__table { font-size: 0.85rem; }
  .hours__table th, .hours__table td { padding: 10px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__badge { font-size: 0.75rem; }
  .store-card { padding: 24px 20px; }
  .hours { padding: 24px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
