/* ============================================================
   COLORINDO MINHA CIDADE – CSS PRINCIPAL
   Estilo vibrante, colorido e moderno para projeto educacional
   ============================================================ */

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

:root {
  --blue:      #1BAAF0;
  --blue-dark: #0e7abf;
  --green:     #4CAF50;
  --green-dark:#388E3C;
  --orange:    #FF8C00;
  --orange-light:#FFB347;
  --yellow:    #FFD700;
  --red:       #E53935;
  --purple:    #7B1FA2;
  --purple-light:#AB47BC;
  --teal:      #00897B;
  --pink:      #E91E63;
  --white:     #ffffff;
  --bg-light:  #F0F8FF;
  --bg-cream:  #FFFBF0;
  --text-dark: #1a2535;
  --text-mid:  #445566;
  --text-light:#7f9ab2;
  --shadow:    0 8px 32px rgba(27,170,240,0.13);
  --shadow-lg: 0 16px 48px rgba(27,170,240,0.18);
  --radius:    18px;
  --radius-lg: 28px;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Baloo 2', cursive;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; }

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

/* ============================================================
   NAVBAR
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .4s;
  background: transparent;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; }
.logo-color { color: #d60be8; font-size: 30px;}
.logo-white { color: var(--white); }
.logo-orange{ color: var(--orange); }
#header.scrolled .logo-white { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all .3s;
}
#header.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { background: rgba(255,255,255,.2); color: #fff; }
#header.scrolled .nav-links a:hover { background: var(--bg-light); color: var(--blue); }

.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(255,140,0,.4);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,140,0,.5) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 4px;
  transition: all .3s;
}
#header.scrolled .hamburger span { background: var(--text-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1BAAF0 0%, #00D4FF 40%, #4CAF50 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}
.shape-1 { width:500px; height:500px; background: radial-gradient(#fff,transparent); top:-100px; right:-100px; }
.shape-2 { width:300px; height:300px; background: radial-gradient(#FFD700,transparent); bottom:100px; left:-80px; }
.shape-3 { width:200px; height:200px; background: radial-gradient(#FF8C00,transparent); top:200px; left:30%; }
.shape-4 { width:150px; height:150px; background: radial-gradient(#E91E63,transparent); bottom:200px; right:20%; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}
.title-colorindo {
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,.15);
  -webkit-text-stroke: 1px rgba(255,255,255,.3);
}
.title-minha  { color: #FFD700; }
.title-cidade { color: #fff; }

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,140,0,.45);
  transition: all .3s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,140,0,.55); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.btn-secondary:hover { background: rgba(255,255,255,.35); transform: translateY(-3px); }

.hero-stores {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stores span {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.store-badge { height: 38px; border-radius: 8px; }

/* --- Phone Mockup --- */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.phone-mockup { position: relative; }

.phone-frame {
  width: 280px;
  height: 520px;
  background: #1a1a2e;
  border-radius: 40px;
  border: 8px solid #2d2d4e;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), inset 0 0 20px rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px;
  background: #0a0a1a;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #87CEEB, #98FB98, #FFD700);
  overflow: hidden;
  position: relative;
}

.ar-animation {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-scene {
  position: relative;
  width: 220px;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.building {
  border-radius: 4px 4px 0 0;
  animation: building-pulse 3s ease-in-out infinite;
}
.b1 { width: 30px; height: 90px; background: linear-gradient(to top, #FF6B6B, #FF8E8E); animation-delay: 0s; }
.b2 { width: 40px; height: 130px; background: linear-gradient(to top, #4ECDC4, #74E3DC); animation-delay: .3s; }
.b3 { width: 35px; height: 110px; background: linear-gradient(to top, #A78BFA, #C4B5FD); animation-delay: .6s; }
.b4 { width: 28px; height: 75px; background: linear-gradient(to top, #FCD34D, #FDE68A); animation-delay: .9s; }
.tree { font-size: 2rem; position: absolute; animation: tree-sway 2s ease-in-out infinite; }
.t1 { bottom: 40px; left: 15px; animation-delay: 0s; }
.t2 { bottom: 40px; right: 15px; animation-delay: .5s; }
.kids { font-size: 1.5rem; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); animation: kids-bounce 1.5s ease-in-out infinite; }

.ar-label {
  position: absolute;
  top: 20px;
  right: 16px;
  background: rgba(27,170,240,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--orange), #FF6B00);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255,140,0,.5);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float-badge 3s ease-in-out infinite;
}
.badge-brinde {
  bottom: 30px; left: -30px;
  background: linear-gradient(135deg, #E53935, #FF5252);
  box-shadow: 0 8px 24px rgba(229,57,53,.5);
  animation-delay: .5s;
}
.badge-ar {
  top: 60px; right: -25px;
  background: linear-gradient(135deg, #7B1FA2, #AB47BC);
  box-shadow: 0 8px 24px rgba(123,31,162,.5);
}

.hero-features-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 340px;
}
.feat-mini {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  transition: all .3s;
}
.feat-mini i { font-size: 1.2rem; }
.feat-mini:hover { background: rgba(255,255,255,.35); transform: translateY(-4px); }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes building-pulse {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.04); }
}
@keyframes tree-sway {
  0%,100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
@keyframes kids-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up .8s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }
.delay-5 { animation-delay: .7s; }
.animate-fade-right {
  opacity: 0;
  transform: translateX(60px);
  animation: fade-right .9s .3s ease forwards;
}
@keyframes fade-up   { to { opacity:1; transform:translateY(0); } }
@keyframes fade-right{ to { opacity:1; transform:translateX(0); } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.22,.61,.36,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), #00D4FF);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.highlight { color: var(--blue); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { background: var(--bg-light); }

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

.sobre-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .4s;
  border-top: 5px solid transparent;
}
.sobre-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-blue  { border-top-color: var(--blue); }
.card-green { border-top-color: var(--green); }
.card-orange{ border-top-color: var(--orange); }
.card-purple{ border-top-color: var(--purple); }

.card-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.card-blue   .card-icon { background: #E3F6FF; color: var(--blue); }
.card-green  .card-icon { background: #E8F5E9; color: var(--green); }
.card-orange .card-icon { background: #FFF3E0; color: var(--orange); }
.card-purple .card-icon { background: #F3E5F5; color: var(--purple); }

.sobre-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.sobre-card p { font-size: .95rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   PROBLEMA / SOLUÇÃO
   ============================================================ */
.problema-solucao {
  background: linear-gradient(135deg, #1BAAF0 0%, #0e8fcc 100%);
  padding: 80px 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ps-block {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  transition: all .4s;
}
.ps-block:hover { background: rgba(255,255,255,.18); transform: scale(1.02); }

.ps-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(229,57,53,.3);
  border: 2px solid rgba(229,57,53,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #FF8A80;
}
.solucao-icon {
  background: rgba(76,175,80,.3);
  border-color: rgba(76,175,80,.5);
  color: #A5D6A7;
}

.ps-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ps-list li:last-child { border-bottom: none; }
.ps-list i { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.problema  .ps-list i { color: #FF8A80; }
.solucao   .ps-list i { color: #A5D6A7; }

.ps-arrow {
  font-size: 2.5rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona { background: #fff; 
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 16px;
  overflow: visible;
  position: relative;
    padding-top: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all .4s;
}
.step:hover { transform: translateY(-10px); background: linear-gradient(135deg, #E3F6FF, #F0F8FF); box-shadow: var(--shadow-lg); }

.step-number {
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,170,240,.4);
}

.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), #00D4FF);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 18px auto 20px;
  box-shadow: 0 8px 24px rgba(27,170,240,.35);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

.step-connector {
  color: var(--blue);
  font-size: 1.5rem;
  flex-shrink: 0;
  opacity: .5;
}

/* ============================================================
   DIFERENCIAIS / RECURSOS
   ============================================================ */
.diferenciais { background: var(--bg-cream); }

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

.recurso-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: all .4s;
  cursor: default;
}
.recurso-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.recurso-item h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  margin: 14px 0 8px;
  color: var(--text-dark);
}
.recurso-item p { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

.recurso-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto;
}
.r-blue  { background: #E3F6FF; color: var(--blue); }
.r-green { background: #E8F5E9; color: var(--green); }
.r-orange{ background: #FFF3E0; color: var(--orange); }
.r-red   { background: #FFEBEE; color: var(--red); }
.r-purple{ background: #F3E5F5; color: var(--purple); }
.r-teal  { background: #E0F2F1; color: var(--teal); }
.r-yellow{ background: #FFFDE7; color: #F57F17; }
.r-pink  { background: #FCE4EC; color: var(--pink); }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.beneficios { padding: 0; }

.beneficios-bg {
  background: linear-gradient(135deg, #1a2535 0%, #0e3d5a 100%);
  padding: 96px 0;
}

.section-header.light .section-title { color: #fff; }
.section-header.light .section-desc  { color: rgba(255,255,255,.7); }
.light-tag { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.white { color: #fff !important; }
.highlight-light { color: var(--orange); }

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

.beneficio-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  transition: all .4s;
}
.beneficio-card:hover { background: rgba(255,255,255,.12); transform: translateY(-8px); }
.beneficio-card.main-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: rgba(255,255,255,.2);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(27,170,240,.4);
}
.beneficio-card.main-card:hover { transform: scale(1.04) translateY(-8px); }

.beneficio-card > i {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  color: var(--orange);
}
.beneficio-card.main-card > i { color: #FFD700; }

.beneficio-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.beneficio-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.beneficio-card ul li::before {
  content: '✓';
  color: #A5D6A7;
  font-weight: 800;
  flex-shrink: 0;
}
.beneficio-card.main-card ul li { border-color: rgba(255,255,255,.15); }
.beneficio-card.main-card ul li::before { color: #FFD700; }

/* ============================================================
   PROCESSO / TIMELINE
   ============================================================ */
.processo { background: #fff; }

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--green), var(--orange));
  border-radius: 4px;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  align-items: flex-start;
}
.timeline-item.left  { flex-direction: row-reverse; }
.timeline-item.right { flex-direction: row; }

.timeline-marker {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #00D4FF);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(27,170,240,.4);
  border: 3px solid #fff;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  max-width: calc(50% - 60px);
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .4s;
}
.timeline-item.left .timeline-content  { text-align: right; }
.timeline-item.right .timeline-content { text-align: left; }
.timeline-content:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.timeline-step {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.timeline-content p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   MUNICÍPIOS / CTA
   ============================================================ */
.municipios { background: var(--bg-light); }

.cta-municipio {
  background: linear-gradient(135deg, #fff 0%, #E3F6FF 100%);
  border: 2px solid rgba(27,170,240,.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  transition: all .4s;
}
.cta-municipio:hover { box-shadow: var(--shadow-lg); }

.cta-icon {
  width: 80px; height: 80px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(27,170,240,.4);
}

.cta-text { flex: 1; min-width: 240px; }
.cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cta-text p { color: var(--text-mid); font-size: .95rem; line-height: 1.6; }

.features-highlight {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.fh-item {
  background: #fff;
  border: 2px solid rgba(27,170,240,.15);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
  transition: all .3s;
}
.fh-item i { color: var(--blue); }
.fh-item:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { background: #fff; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contato-info h3,
.contato-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--bg-light);
}

.contato-pessoa {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: all .3s;
}
.contato-pessoa:hover { box-shadow: var(--shadow); transform: translateX(4px); }

.pessoa-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.pessoa-info { flex: 1; }
.pessoa-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.pessoa-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-mid);
  padding: 3px 0;
  transition: color .3s;
}
.pessoa-info a:hover { color: var(--blue); }
.pessoa-info a i { color: var(--blue); width: 14px; text-align: center; }

.contato-apps {
  margin-top: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
}
.contato-apps h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contato-apps h4 i { color: var(--blue); }
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge img { height: 40px; transition: all .3s; }
.app-badge:hover img { transform: scale(1.08); }

/* Form */
.contato-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr .4fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0eaf2;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27,170,240,.15);
}
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s;
  box-shadow: 0 8px 24px rgba(27,170,240,.4);
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(27,170,240,.5); }
.btn-submit:active { transform: translateY(0); }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0e1a2b;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.55);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all .3s;
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links ul a i { color: var(--blue); font-size: .85rem; }
.footer-links ul a:hover { color: var(--blue); }

.footer-apps h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}
.app-badge-footer {
  display: block;
  margin-bottom: 10px;
}
.app-badge-footer img { height: 38px; filter: brightness(0.9); transition: all .3s; }
.app-badge-footer:hover img { filter: brightness(1.1); transform: scale(1.05); }

.powered {
  margin-top: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.powered strong { color: var(--blue); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: all .3s;
  animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 12px 32px rgba(37,211,102,.6); }

@keyframes pulse-whatsapp {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,.8); }
}

.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sobre-grid { grid-template-columns: repeat(2, 1fr); }
  .recursos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-btns { justify-content: center; }
  .hero-stores { justify-content: center; }
  .hero-badge { margin: 0 auto 18px; }

  .ps-grid { grid-template-columns: 1fr; gap: 24px; }
  .ps-arrow { transform: rotate(90deg); }

  .beneficios-grid { grid-template-columns: 1fr; }
  .beneficio-card.main-card { transform: none; }

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

  .timeline::before { display: none; }
  .timeline-item { flex-direction: column !important; gap: 16px; }
  .timeline-marker { position: static; transform: none; margin-bottom: 8px; }
  .timeline-content { max-width: 100%; text-align: left !important; }

  .steps-container { flex-direction: column; align-items: stretch; }
  .step-connector { transform: rotate(90deg); text-align: center; }

  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 700px) {
  .navbar { padding: 14px 20px; }
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(14,26,43,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #fff !important; padding: 12px 16px; border-radius: 10px; }
  .hamburger { display: flex; }

  section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.2rem; }

  .sobre-grid { grid-template-columns: 1fr; }
  .recursos-grid { grid-template-columns: 1fr 1fr; }

  .cta-municipio { flex-direction: column; text-align: center; }
  .cta-icon { margin: 0 auto; }

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

  .form-row { grid-template-columns: 1fr; }
  .contato-form { padding: 24px; }

  .phone-frame { width: 220px; height: 410px; }
  .hero-features-mini { grid-template-columns: repeat(4, 1fr); max-width: 280px; }
  .feat-mini { padding: 8px 4px; font-size: .7rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .recursos-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}


/* ======= VIDEO SECTION ======= */
.video-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* BOTÃO PRINCIPAL */
.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
}

/* BOTÃO SECUNDÁRIO */
.btn-secondary {
  background: #fff;
  color: #4f46e5;
  border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
  transform: translateY(-3px);
  border-color: #c7d2fe;
}