/* ============================================================
   ALTAFINI — CSS Global
   Cores: #2e4b9b (azul) + #FFFFFF (branco)
   ============================================================ */

:root {
  --blue:          #2e4b9b;
  --blue-dark:     #1e3a8a;
  --blue-light:    #3b5ec4;
  --blue-faint:    #eef2fb;
  --blue-faint2:   #dce5f7;
  --bg:            #FFFFFF;
  --bg-section:    #f5f7fb;
  --bg-topbar:     #1e3078;
  --text:          #1a2340;
  --text-mid:      #3d5080;
  --text-muted:    #64748b;
  --border:        #dde4f0;
  --border-blue:   rgba(46,75,155,0.2);
  --nav-h:         72px;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 2px 16px rgba(46,75,155,0.12);
  --shadow-md:     0 6px 32px rgba(46,75,155,0.16);
  --transition:    0.3s ease;
  --container:     1200px;
  --accent:        #fbbf24;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============================================================
   CONTAINER PADRÃO
   Toda seção envolve o conteúdo em .container
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg-topbar);
  height: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar i { color: rgba(255,255,255,0.6); margin-right: 6px; font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(46,75,155,0.18);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; }
.nav-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue);
  background: var(--blue-faint);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 230px;
  white-space: nowrap;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--blue); background: var(--blue-faint); }
.dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.5; }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-left: 8px;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 40px);
  left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--blue);
  padding: 16px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h) - 40px);
  overflow-y: auto;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--blue); background: var(--blue-faint); }
.nav-mobile .mobile-submenu { padding-left: 16px; }
.nav-mobile .mobile-submenu a { font-size: 14px; color: var(--text-muted); }
.nav-mobile .mobile-cta {
  margin-top: 12px;
  background: var(--blue);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-mobile .mobile-cta:hover { background: var(--blue-dark) !important; }

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-top: 12px;
  line-height: 1.15;
}
.page-hero h1 span { color: rgba(255,255,255,0.8); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   SEÇÕES
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-faint);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--blue-faint2);
}

.section-title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}
.section-title span { color: var(--blue); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,75,155,0.35);
}
.btn-hero {
  background: #fff;
  color: var(--blue);
}
.btn-hero:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--blue);
}
.btn-white:hover {
  background: var(--blue-faint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn i { font-size: 14px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   ICON BOX
   ============================================================ */
.icon-box {
  width: 56px; height: 56px;
  background: var(--blue-faint);
  border: 1px solid var(--blue-faint2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.card:hover .icon-box {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 60%, #0f2060 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/transporte-viagens-turismo-sao-paulo-01.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.08;
  pointer-events: none;
}
/* Padrão geométrico sutil */
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 25px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
}
.hero-title span { color: #a8c1ff; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
}
.hero-image-badge {
  position: absolute;
  bottom: 62px;
  left: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-image-badge .num { font-size: 26px; font-weight: 900; color: var(--blue); line-height: 1; }
.hero-image-badge .lbl { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--blue);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); }
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover .icon-box { background: var(--blue); color: #fff; border-color: var(--blue); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

/* ============================================================
   FLEET CARDS
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fleet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.fleet-card img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--transition); }
.fleet-card:hover img { transform: scale(1.03); }
.fleet-card-body { padding: 24px; }
.fleet-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.fleet-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag {
  background: var(--blue-faint);
  color: var(--blue);
  border: 1px solid var(--blue-faint2);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   FEATURES / SPLIT
   ============================================================ */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.features-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--blue-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-band .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   CONTENT SECTION (páginas internas)
   ============================================================ */
.content-section { padding: 64px 0; }

.content-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.content-block h2 span { color: var(--blue); }
.content-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-faint2);
}
.content-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-block ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.content-block ul li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-section);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.content-block ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.content-image { border-radius: var(--radius-lg); overflow: hidden; margin: 20px 0; }
.content-image img { width: 100%; border-radius: var(--radius-lg); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,75,155,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   DESTINATIONS / ROTEIROS
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.dest-card:hover { border-color: var(--border-blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-card-body { padding: 22px; }
.dest-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.dest-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.dest-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
  background: var(--bg-section); padding: 5px 10px; border-radius: 6px;
  border: 1px solid var(--border);
}
.dest-meta-item i { color: var(--blue); font-size: 11px; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.info-box:hover { border-color: var(--border-blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-box .icon-box { margin: 0 auto 18px; }
.info-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.info-box p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.info-box a:not(.btn) { color: var(--blue); font-weight: 600; }
.info-box a:not(.btn):hover { text-decoration: underline; }
.info-box .btn { color: #fff; }
.info-box .btn:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #fff;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a i { font-size: 10px; color: rgba(255,255,255,0.35); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOAT (removido — substituído por botão inline)
   ============================================================ */
/*.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}*/

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .features-split { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .topbar { display: none; }
  .navbar .container { padding: 0 20px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 56px 20px; }
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .content-block ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-band .cta-actions .btn { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .content-block { padding: 24px 20px; }
  .form-card { padding: 24px 20px; }
}
