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

:root {
  --navy:       #1B2D5E;
  --navy-dark:  #111E42;
  --orange:     #F08020;
  --orange-dk:  #D4701A;
  --teal:       #1ABCCE;
  --green:      #5DB844;
  --gold:       #F7C227;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --white:      #FFFFFF;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.14);
  --t:          .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

/* Labels */
.label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: #FFF3E0;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.label-light {
  color: var(--gold);
  background: rgba(247,194,39,.15);
}

/* Section header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--gray-400); max-width: 580px; margin: 0 auto; font-size: 1rem; }
.text-white { color: var(--white) !important; }
.text-muted-light { color: rgba(255,255,255,.6) !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240,128,32,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,128,32,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--orange-dk); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 76px;
}
.nav-logo {
  height: 48px;
  width: auto;
  transition: var(--t);
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  transition: var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1A4A8A 100%);
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(26,188,206,.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(240,128,32,.12) 0%, transparent 70%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(93,184,68,.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(93,184,68,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(93,184,68,.1); }
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 640px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.hcard {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
  min-width: 180px;
  transition: var(--t);
}
.hcard:hover { background: rgba(255,255,255,.14); transform: translateX(-4px); }
.hcard-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.hcard-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-logo-card {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-card img { max-width: 280px; width: 100%; height: auto; }
.about-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.about-pill-1 { top: -18px; right: -18px; }
.about-pill-2 { bottom: -18px; left: -18px; }
.about-text h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.about-text p { margin-bottom: 14px; font-size: .98rem; }
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-800);
}
.badge-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== DIFERENCIAIS ===== */
.diff { position: relative; }
.diff-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  z-index: 0;
}
.diff-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 0% 100%, rgba(26,188,206,.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 0%, rgba(240,128,32,.10) 0%, transparent 60%);
}
.diff .container { position: relative; z-index: 1; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.diff-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
}
.diff-icon { margin-bottom: 20px; }
.diff-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* Destaque colete */
.diff-card-highlight {
  border: 1.5px solid rgba(247,194,39,.4);
  background: rgba(247,194,39,.06);
}
.diff-card-highlight h3 { color: var(--gold); }

/* ===== EQUIPE ===== */
.team { background: var(--white); }
.team-groups { display: flex; flex-direction: column; gap: 56px; }
.team-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 20px 24px;
  transition: var(--t);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange); }
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-photo-placeholder {
  background: linear-gradient(135deg, var(--navy), #2255A0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.6);
}
.photo-badge {
  position: absolute;
  bottom: 2px; right: 2px;
  font-size: .85rem;
  background: var(--white);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.team-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.team-photo-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-400);
  font-size: .85rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .team-cards { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .team-photo { width: 72px; height: 72px; }
  .team-card { padding: 20px 12px 16px; }
}
@media (max-width: 480px) {
  .team-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== ROTAS ===== */
.routes { background: var(--gray-50); }
.routes-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.route-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.route-card:hover { box-shadow: var(--shadow-md); }
.route-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}
.route-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  padding: 5px 14px;
  border-radius: 99px;
  flex-shrink: 0;
}
.route-info { flex: 1; }
.route-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--navy);
}
.route-info span { font-size: .82rem; color: var(--gray-400); font-weight: 500; }
.route-toggle {
  color: var(--gray-400);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.route-card.open .route-toggle { transform: rotate(180deg); }
.route-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.route-card.open .route-body {
  max-height: 600px;
  padding: 0 28px 24px;
}
.route-stops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  padding-top: 4px;
}
.stop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
}
.stop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.route-dest {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
}
.routes-cta {
  text-align: center;
  background: var(--white);
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.routes-cta p { color: var(--gray-600); font-size: .95rem; text-align: left; max-width: 560px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--gray-50); }

/* Resumo / média */
.rev-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  margin-bottom: 48px;
}
.rev-avg { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.rev-big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rev-avg-right { display: flex; flex-direction: column; gap: 4px; }
.rev-stars-display { font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.rev-avg-right span { font-size: .82rem; color: var(--gray-400); font-weight: 600; }
.rev-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; }
.rev-bar-row > span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-600);
  width: 24px;
  text-align: right;
}
.rev-bar-row > span:last-child {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
  width: 20px;
}
.rev-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  transition: width .6s ease;
}

/* Cards */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.rev-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--t);
  animation: fadeInUp .45s ease both;
}
.rev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rev-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), #2255A0);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rev-author-info strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--navy); font-weight: 700; }
.rev-author-info span { font-size: .76rem; color: var(--gray-400); }
.rev-stars { font-size: 1rem; color: var(--gold); letter-spacing: 1px; }
.rev-text { font-size: .9rem; color: var(--gray-600); line-height: 1.65; font-style: italic; }
.rev-linha-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  background: #FFF3E0;
  padding: 3px 10px;
  border-radius: 99px;
}
.rev-date { font-size: .72rem; color: var(--gray-400); margin-top: 8px; }

/* Botão ver mais */
.rev-more-wrap { text-align: center; margin-bottom: 56px; }
.btn-more {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  cursor: pointer;
  transition: var(--t);
}
.btn-more:hover { border-color: var(--orange); color: var(--orange); }

/* Formulário de avaliação */
.rev-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.rev-form-header { margin-bottom: 28px; }
.rev-form-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.rev-form-header p { color: var(--gray-400); font-size: .92rem; }

/* Star picker */
.star-picker { display: flex; gap: 6px; margin-bottom: 6px; }
.star-btn {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--gray-200);
  cursor: pointer;
  line-height: 1;
  transition: color .15s, transform .15s;
  padding: 0 2px;
}
.star-btn:hover,
.star-btn.active { color: var(--gold); transform: scale(1.2); }
.star-label { font-size: .8rem; color: var(--gray-400); font-style: italic; }

/* Responsive reviews */
@media (max-width: 1024px) {
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rev-summary { flex-direction: column; align-items: flex-start; gap: 28px; padding: 28px 20px; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-form-wrap { padding: 28px 20px; }
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--gray-400); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--t);
  color: inherit;
}
.contact-item:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--navy); font-weight: 700; }
.contact-item span { font-size: .83rem; color: var(--gray-400); }

/* Form */
.contact-form {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  outline: none;
  transition: var(--t);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,128,32,.12);
}
.form-success {
  display: none;
  margin-top: 16px;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  color: #166534;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo { height: 52px; width: auto; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-links a,
.footer-links span {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: var(--t);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}

/* ===== FAB WhatsApp ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--t);
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.65); }

/* ===== REVEAL ANIMATION ===== */
[data-reveal], [data-reveal-delay] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal-delay] { transition-delay: .2s; }
[data-reveal].visible, [data-reveal-delay].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hcard { flex: 1; min-width: 140px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-pill-1, .about-pill-2 { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: 32px 28px;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open a {
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  .diff-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .routes-cta { flex-direction: column; text-align: center; }
  .routes-cta p { text-align: center; }
  .route-stops { grid-template-columns: 1fr 1fr; }
  .about-badges { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hcard { min-width: 100%; }
  .route-stops { grid-template-columns: 1fr; }
}
