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

/* ===================================================================
   DUAL GIRO BIKE — CSS redesign
   Paleta: Navy #0f1923 / Verde #45A2DB / Branco #fff
   Tipografia: Inter (Google Fonts) com fallback de fontes de sistema
   =================================================================== */

:root {
  --primary:      #000000;
  --secondary:    #0d0d0d;
  --accent:       #45A2DB;
  --accent-dark:  #2D7FB0;
  --accent-glow:  rgba(69,162,219,.25);
  --white:        #ffffff;
  --gray-light:   #f4f6f8;
  --gray:         #666666;
  --text:         #1a1a1a;
  --border:       #e2e8f0;
  --green:        #25D366;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 50px rgba(0,0,0,.18);
  --shadow-green: 0 8px 30px rgba(69,162,219,.35);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background-color: #ffffff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }

.reveal-left {
  opacity:0;
  transform: translateX(-50px);
  transition: opacity .7s .1s cubic-bezier(.4,0,.2,1), transform .7s .1s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity:1; transform:translateX(0); }

.reveal-right {
  opacity:0;
  transform: translateX(50px);
  transition: opacity .7s .1s cubic-bezier(.4,0,.2,1), transform .7s .1s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

.reveal-scale {
  opacity:0;
  transform: scale(.92);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible { opacity:1; transform:scale(1); }

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay:.05s; }
.stagger > *:nth-child(2) { transition-delay:.12s; }
.stagger > *:nth-child(3) { transition-delay:.19s; }
.stagger > *:nth-child(4) { transition-delay:.26s; }
.stagger > *:nth-child(5) { transition-delay:.33s; }
.stagger > *:nth-child(6) { transition-delay:.40s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(69,162,219,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(69,162,219,0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes ripple {
  0%   { transform:scale(.8); opacity:1; }
  100% { transform:scale(2.5); opacity:0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ===== TOP BAR ===== */
.header-top {
  background: var(--accent);
  text-align: center;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .3px;
}
.header-top a { color:var(--white); text-decoration:underline; }

/* ===== HEADER ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo fix — sem quadrado */
.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  transition: transform .3s ease;
}
.logo-img img:hover { transform: scale(1.04); }

/* Nav */
nav { display:flex; gap:4px; align-items:center; }

nav a {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  border-radius: 2px;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(69,162,219,.12);
}
nav a:hover::after, nav a.active::after { transform:scaleX(1); }

.btn-whatsapp {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition) !important;
}
.btn-whatsapp:hover {
  background: #1eb854 !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-green) !important;
}
.btn-whatsapp::after { display:none !important; }

.btn-loja {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition) !important;
}
.btn-loja:hover {
  background: #3689bd !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-green) !important;
}
.btn-loja::after { display:none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  color: var(--white);
  padding: 80px 20px 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69,162,219,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,162,219,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Decorative glow orbs */
.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(69,162,219,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orb-left {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(69,162,219,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero-fachada-bg.jpg');
  background-size: cover;
  background-position: center 25%;
  opacity: .16;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(69,162,219,.12);
  border: 1px solid rgba(69,162,219,.35);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: .5px;
  animation: fadeSlideUp .6s ease both, pulseBadge 3s ease 1.5s infinite;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  animation: fadeSlideUp .7s .15s ease both;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  animation: borderSpin 1s .9s forwards;
}
@keyframes borderSpin {
  to { transform: scaleX(1); }
}

/* ===== HERO VIDEO ===== */
.hero-video-wrap {
  margin: 0 auto 36px;
  max-width: 820px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(69,162,219,.2), 0 30px 60px rgba(0,0,0,.6);
  position: relative;
  animation: fadeSlideUp .8s .3s ease both;
  transition: box-shadow .4s ease, transform .4s ease;
}
.hero-video-wrap:hover {
  box-shadow: 0 0 0 2px rgba(69,162,219,.5), 0 0 40px rgba(69,162,219,.15), 0 30px 60px rgba(0,0,0,.6);
  transform: translateY(-4px);
}

/* Green top accent bar */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 2;
}

.hero-video-ratio {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.hero-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeSlideUp .7s .45s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp .7s .55s ease both;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: float 1.8s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(69,162,219,.45);
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: #1eb854;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--accent);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07) 50%, transparent);
  animation: shimmer 4s ease infinite;
  background-size: 200% auto;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 0;
}

.stat-item {
  color: var(--white);
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
  z-index: 1;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,.08); }

.stat-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 12px;
  opacity: .85;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== SECTION ===== */
.section { padding: 80px 20px; }
.section-alt { background: var(--gray-light); }

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-header p {
  color: var(--gray);
  font-size: 17px;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(69,162,219,.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69,162,219,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}
.brand-card:hover::after { opacity: 1; }

.brand-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.brand-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.brand-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== WHY US SECTION ===== */
.why-section {
  background: var(--primary);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-item {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(69,162,219,.4);
  background: rgba(69,162,219,.06);
  transform: translateY(-5px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(69,162,219,.15);
  border: 1px solid rgba(69,162,219,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: rgba(69,162,219,.25);
  transform: scale(1.1);
}

.why-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }

/* ===== REGIONS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s ease;
}

.region-card:hover {
  border-color: rgba(69,162,219,.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.region-card:hover::before { transform: scaleY(1); }

.region-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.region-card p { font-size: 12px; color: var(--gray); }

.region-card .arrow {
  color: var(--accent);
  font-size: 20px;
  float: right;
  margin-top: -28px;
  font-weight: 700;
  transition: transform .2s;
}
.region-card:hover .arrow { transform: translateX(4px); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2235 50%, var(--secondary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: var(--white);
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(69,162,219,.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.cta-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 30px;
}

/* ===== INFO BOXES ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card p, .info-card a {
  color: var(--gray);
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  transition: color .2s;
}
.info-card a:hover { color: var(--accent); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--accent); font-weight: 600; }
.breadcrumb span { margin: 0 6px; color: #bbb; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69,162,219,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,162,219,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero h1 {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 span { color: var(--accent); }

.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

/* ===== REGION PAGE ===== */
.region-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.region-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 16px;
}
.region-text h2:first-child { margin-top: 0; }

.region-text p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.85;
}

.region-text ul { list-style: none; margin-bottom: 20px; }

.region-text ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  font-size: 15px;
  display: flex;
  gap: 10px;
  transition: color .2s;
}
.region-text ul li:hover { color: var(--primary); }
.region-text ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.sidebar-info-item { font-size: 14px; color: var(--gray); }
.sidebar-info-item strong {
  display: block;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.sidebar-btns { display: flex; flex-direction: column; gap: 10px; }
.sidebar-btns .btn { justify-content: center; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: #f9fafb; }
.faq-q::after { content: '+'; color: var(--accent); font-size: 22px; font-weight: 400; }

.faq-a {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  background: #08111a;
  color: #8899aa;
  padding: 60px 20px 24px;
  border-top: 1px solid rgba(69,162,219,.2);
}

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

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

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.footer-logo span { color: var(--accent); }

.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; color: #7a8898; }

.footer-social a {
  color: #7a8898;
  font-size: 14px;
  transition: color .2s;
}
.footer-social a:hover { color: var(--accent); }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #7a8898;
  transition: var(--transition);
  padding-left: 0;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #4a5a6a;
}
.footer-bottom a { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: ripple 2s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, #f0f9e8 0%, #e8f5d6 100%);
  border: 1px solid rgba(69,162,219,.25);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}
.highlight-box h3 { color: var(--primary); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.highlight-box p { color: var(--gray); font-size: 15px; }

/* ===== BADGES ROW ===== */
.badges-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }

.badge {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
}
.badge.orange { background: var(--accent); }
.badge.green  { background: #2e7d32; }

/* ===== TAG CHIP (categoria do blog) ===== */
.tag-chip {
  display: inline-block;
  background: #eaf5fc;
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: block;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px 20px 22px; }
.blog-card-body h3 { font-size: 17px; line-height: 1.35; margin: 12px 0 10px; color: var(--primary); font-weight: 800; }
.blog-card-body p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.blog-card-read { color: var(--accent-dark); font-weight: 700; font-size: 13.5px; }

/* ===== ARTIGO (tipografia de corpo longo, reaproveita .region-content/.region-text) ===== */
.article-hero-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; margin-bottom: 26px; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-top: 14px; }
.article-lead { font-size: 18px; color: var(--gray); line-height: 1.75; margin-bottom: 22px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .region-content { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero-img { aspect-ratio: 4/3; }
}

@media (max-width: 700px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(69,162,219,.2);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 8px; }
  nav a::after { display:none; }
  .hamburger { display: flex; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 16px 120px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .scroll-indicator { display: none; }
  .section { padding: 56px 16px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 20px 12px; }
  .stat-num { font-size: 28px; }
  .header-top { display: none; }
}

/* ===== HILLARY FLOAT CTA ===== */
.hillary-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.35));
}

.hillary-photo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform .25s ease;
}
.hillary-photo-wrap:hover { transform: scale(1.06); }
.hillary-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hillary-bubble {
  background: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 16px 10px 20px;
  margin-left: -10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  min-width: 190px;
}

.hillary-bubble span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.hillary-bubble small {
  font-size: 11px;
  color: var(--gray);
}

.hillary-wa-btn {
  background: var(--green);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .2s;
  white-space: nowrap;
}
.hillary-wa-btn:hover { background: #1eb854; }

/* ===== STATS BAR COM ONDA ===== */
.stats-wave-section {
  position: relative;
  background: transparent;
  margin: -70px 0 0;
  z-index: 2;
}

.stats-wave-top svg,
.stats-wave-bottom svg {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 0;
}

.stats-wave-top svg { fill: var(--accent); }
.stats-wave-bottom svg { fill: var(--accent); }

.stats-bar {
  background: var(--accent);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel-section {
  padding: 0;
  overflow: hidden;
}

.banner-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.banner-carousel-track::-webkit-scrollbar { display: none; }

.banner-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-slide img.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 60%, transparent 100%);
}

.banner-slide-content {
  position: relative;
  z-index: 1;
  padding: 48px 64px;
  color: var(--white);
  max-width: 560px;
}

.banner-slide-content .section-label { color: var(--accent); }

.banner-slide-content h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 10px 0 16px;
  color: var(--white);
}

.banner-slide-content p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  line-height: 1.65;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 0;
  background: var(--primary);
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
}
.banner-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* Nav arrows */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.35);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.banner-nav:hover { background: rgba(69,162,219,.7); }
.banner-nav.prev { left: 14px; }
.banner-nav.next { right: 14px; }

/* ===== BRAND LOGOS ===== */
.brand-card img.brand-logo {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

/* ===== MOBILE CAROUSEL FOR SERVICE/BRAND CARDS ===== */
@media (max-width: 700px) {
  .services-grid.mobile-carousel,
  .brands-grid.mobile-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding-bottom: 8px;
  }
  .services-grid.mobile-carousel::-webkit-scrollbar,
  .brands-grid.mobile-carousel::-webkit-scrollbar { display: none; }

  .services-grid.mobile-carousel > *,
  .brands-grid.mobile-carousel > * {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .banner-slide { min-height: 280px; }
  .banner-slide-content { padding: 32px 24px; }
  .banner-nav { display: none; }
}

/* ===== SOCIAL ICONS IN HEADER ===== */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.nav-social a {
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  transition: color .2s, background .2s, transform .2s;
}
.nav-social a svg { width: 22px; height: 22px; }
.nav-social a:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}
.nav-social a::after { display: none !important; }

/* ===== OGGI PRODUCT PAGE ===== */

.oggi-hero {
  background: linear-gradient(135deg, #060d14 0%, var(--primary) 40%, #0d1f10 100%);
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
  color: var(--white);
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oggi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69,162,219,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,162,219,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.oggi-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(69,162,219,.15) 0%, transparent 65%);
  pointer-events: none;
}

.oggi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.oggi-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(69,162,219,.12);
  border: 1px solid rgba(69,162,219,.35);
  color: var(--accent);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeSlideUp .6s ease both;
}

.oggi-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeSlideUp .7s .1s ease both;
}

.oggi-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.oggi-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeSlideUp .7s .2s ease both;
}

.oggi-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeSlideUp .7s .3s ease both;
}

.oggi-feature-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Models grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.model-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(69,162,219,.3);
}

/* Colored top bar per tier */
.model-card-header {
  padding: 32px 28px 24px;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Decorative number watermark */
.model-card-header::before {
  content: attr(data-model);
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}

.model-tier {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.tier-entry   { background: rgba(69,162,219,.25); color: #9de040; border: 1px solid rgba(69,162,219,.4); }
.tier-sport   { background: rgba(52,168,240,.2);  color: #5dc8ff; border: 1px solid rgba(52,168,240,.4); }
.tier-advanced{ background: rgba(255,165,0,.2);   color: #ffc94d; border: 1px solid rgba(255,165,0,.4); }
.tier-elite   { background: rgba(220,60,60,.2);   color: #ff8080; border: 1px solid rgba(220,60,60,.4); }
.tier-pro     { background: rgba(180,80,255,.2);  color: #c47fff; border: 1px solid rgba(180,80,255,.4); }

.model-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.model-name span {
  color: var(--accent);
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.model-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.model-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.model-specs {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.model-specs li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: var(--gray-light);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.model-specs li strong {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-card-footer {
  padding: 0 28px 28px;
  margin-top: auto;
}

.model-price {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.model-price::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--border);
}

.model-cta {
  display: flex;
  gap: 10px;
}

.model-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 12px 16px;
}

/* Hoje highlight — OGGI page intro strip */
.oggi-strip {
  background: var(--accent);
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
}

.oggi-strip a { color: var(--white); text-decoration: underline; }

@media (max-width: 700px) {
  .models-grid { grid-template-columns: 1fr; }
  .model-specs { grid-template-columns: 1fr 1fr; }
  .model-cta { flex-direction: column; }
}

/* ===================================================================
   ADIÇÕES — redesign 2026
   =================================================================== */

/* Exclamação verde no H1 do hero */
.hero h1 .excl { color: var(--accent); font-style: normal; }

/* ===== TARJA — OGGI + CALOI LADO A LADO (mesmo tamanho) ===== */
.tarja-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.tarja-brands img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* ===== BRAND CARD — logo sobre fundo escuro (Street Go) ===== */
.brand-logo-dark {
  background: var(--primary);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}
.brand-logo-dark img { height: 56px; width: auto; max-width: 170px; object-fit: contain; margin: 0; }

/* ===== HILLARY — MENSAGENS QUE BROTAM ===== */
.hillary-msgs {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  max-width: 260px;
}
.hillary-msg {
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: auto;
  cursor: pointer;
}
.hillary-msg.show { opacity: 1; transform: translateY(0) scale(1); }
.hillary-msg::before {
  content: '💬';
  margin-right: 6px;
}

/* ===== SEÇÃO CONTATO — "FALA DA HILLARY" (reutilizável em todas as páginas) ===== */
.hillary-section {
  padding: 80px 20px;
  background: var(--gray-light);
}
.hillary-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: hidden;
}
.hillary-card-photo {
  position: relative;
  min-height: 340px;
  background: var(--primary);
}
.hillary-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hillary-card-body {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hillary-card-body .section-label { justify-content: flex-start; }
.hillary-quote {
  position: relative;
  background: var(--gray-light);
  border-left: 4px solid var(--accent);
  border-radius: 4px 14px 14px 4px;
  padding: 18px 22px;
  margin: 4px 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary);
  font-weight: 500;
}
.hillary-name {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 2px;
}
.hillary-role { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.hillary-section-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hillary-section-btns .btn { flex: 1 1 auto; justify-content: center; }
.hillary-section-btns .btn-outline { color: var(--primary); border-color: var(--border); }
.hillary-section-btns .btn-outline:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 700px) {
  .hillary-card { grid-template-columns: 1fr; }
  .hillary-card-photo { min-height: 260px; }
  .hillary-card-body { padding: 28px 24px; }
  .hillary-msgs { bottom: 130px; right: 16px; max-width: 62vw; }
}

/* ===== GRID 3x2 (bicicletas) ===== */
@media (min-width: 701px) {
  .services-grid.bikes-3 { grid-template-columns: repeat(3, 1fr); justify-content: center; }
}

/* ===== CARDS CENTRALIZADOS (serviços) ===== */
@media (min-width: 701px) {
  .services-grid.cards-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-grid.cards-center > .service-card { flex: 0 1 300px; }
}

/* ===== GRID 4 COLUNAS x 2 LINHAS (serviços) ===== */
@media (min-width: 701px) {
  .services-grid.services-4up { grid-template-columns: repeat(4, 1fr); }
}

.service-card-cta {
  background: var(--accent);
  border-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card-cta h3 { color: var(--white); font-size: 20px; margin: 0; }
.service-card-cta:hover { border-color: var(--accent-dark); }
.service-card-cta::before { display: none; }

/* ===== MINIATURA DE BIKE NO TOPO DOS CARDS OGGI ===== */
.model-thumb {
  background: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  border-bottom: 1px solid var(--border);
}
.model-thumb img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===== MISSÃO / VISÃO / VALORES (sobre) ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(69,162,219,.12);
  border: 1px solid rgba(69,162,219,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.mvv-card h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.mvv-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.mvv-values { list-style: none; }
.mvv-values li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--gray); }
.mvv-values li:last-child { border-bottom: none; }
.mvv-values strong { color: var(--primary); }
@media (max-width: 860px) { .mvv-grid { grid-template-columns: 1fr; } }

/* ===== INFO CARDS (contato) — visual melhorado ===== */
.info-card {
  border-left: none;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  padding: 30px 26px;
}
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.info-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(69,162,219,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.info-card .btn { margin-top: 8px; }

/* ===== CONTACT CARDS (contato) — redesign dedicado ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(69,162,219,.35);
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.contact-card:hover .contact-card-icon { background: var(--accent); transform: scale(1.06); }
.contact-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}
.contact-card p, .contact-card a { color: var(--gray); font-size: 14.5px; line-height: 1.6; }
.contact-card a.contact-card-link { color: var(--primary); font-weight: 700; display: block; margin-bottom: 4px; transition: color .2s; }
.contact-card a.contact-card-link:hover { color: var(--accent); }
.contact-card .btn { margin-top: 14px; }

/* ===================================================================
   EQUIPE / VENDEDORES — Colina Bike Center
   Substitui o padrão "Hillary" (rosto único) por 5 vendedores iguais
   =================================================================== */

/* ---- Botão flutuante ---- */
.team-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.35));
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

.team-float-avatars {
  display: flex;
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.team-float-avatars img {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .25s ease;
}
.team-float-avatars img:nth-child(1) { left: 0;  top: 0;  z-index: 3; }
.team-float-avatars img:nth-child(2) { left: 18px; top: 8px; z-index: 2; }
.team-float-avatars img:nth-child(3) { left: 36px; top: 0; z-index: 1; }
.team-float:hover .team-float-avatars img { transform: translateY(-3px); }

.team-float-bubble {
  background: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 16px 10px 20px;
  margin-left: -6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  min-width: 190px;
  text-align: left;
}
.team-float-bubble span { font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.team-float-bubble small { font-size: 11px; color: var(--gray); }

/* ---- Painel com os 5 vendedores ---- */
.team-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  pointer-events: none;
}
.team-panel.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.team-panel-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
}
.team-panel-header strong { display: block; color: var(--primary); font-size: 15px; font-weight: 800; }
.team-panel-header span { font-size: 12px; color: var(--gray); }
.team-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  color: var(--gray);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}
.team-panel-list { padding: 8px; }
.team-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s;
}
.team-row:hover { background: var(--gray-light); }
.team-row img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.team-row-info { flex: 1; min-width: 0; }
.team-row-info strong { display: block; font-size: 14px; color: var(--primary); font-weight: 800; }
.team-row-info span {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.team-row-wa {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.team-row-wa:hover { background: #1eb854; transform: scale(1.08); }

/* ---- Seção "Nossa Equipe" (grid completo) ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(69,162,219,.3);
}
.team-card-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--primary);
}
.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.06); }
.team-card-body { padding: 20px 16px 22px; }
.team-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgba(69,162,219,.12);
  color: var(--accent-dark);
}
.team-card-tag.eletrica { background: rgba(0,0,0,.06); color: var(--primary); }
.team-card-name { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
.team-card-role { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.team-card .btn { width: 100%; justify-content: center; font-size: 13px; padding: 10px 14px; }

@media (max-width: 700px) {
  .team-panel { right: 16px; width: calc(100vw - 32px); }
  .team-float-bubble { display: none; }
}

/* ===== ÍCONES (substituem emojis) ===== */
.ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.btn .ico, .btn-whatsapp .ico, .contact-card-link .ico, .footer-col a .ico, .sidebar-btns .ico, .team-row-wa .ico, .oggi-strip .ico { margin-right: 6px; margin-top: -2px; }
.header-top .ico, .footer-bottom .ico { margin: 0 2px -3px 0; }
.service-icon.ico-wrap, .mvv-icon, .contact-card-icon { display: flex; align-items: center; justify-content: center; }
.service-icon.ico-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(69,162,219,.1); color: var(--accent-dark); margin-bottom: 18px; }

/* ===== GALERIA DE FOTOS — grade em mosaico com rotação por fade ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid a.wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s ease, transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid img.fading { opacity: 0; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid a.wide { grid-column: span 2; }
}

/* ===== FOTO DA EQUIPE COMPLETA (banner acima dos cards) ===== */
.team-photo-banner {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-photo-banner img { width: 100%; height: auto; max-height: 420px; object-fit: cover; object-position: center 25%; display: block; }

/* ===== EVITAR CARD ÓRFÃO — 6 itens sempre em grid par ===== */
.brands-grid.cols-3, .team-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 860px) {
  .brands-grid.cols-3, .team-grid.cols-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px) {
  .brands-grid.cols-3, .team-grid.cols-3 { grid-template-columns: 1fr !important; }
}

/* ===== MENSAGENS FLUTUANTES DA EQUIPE (substituem "Hillary msgs") ===== */
.team-msgs {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  max-width: 270px;
}
.team-msg {
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-msg img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-msg.show { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 700px) {
  .team-msgs { bottom: 130px; right: 16px; max-width: 62vw; }
}
