/* ========================================================================
   TRANSRIOS — Site institucional
   Paleta: azul marinho + dourado (extraído da identidade visual)
   Fontes: Fraunces (display serif) + Inter (body sans)
   ======================================================================== */

:root {
  --navy-deepest: #050D1F;
  --navy-900: #0A1A33;
  --navy-800: #0D1F3D;
  --navy-700: #16294E;
  --navy-600: #1E3A6B;
  --navy-500: #2C4D80;

  --gold-600: #C99320;
  --gold-500: #D4A02C;
  --gold-400: #E8B339;
  --gold-50:  #FAF3E0;

  --off-white: #FAFAF8;
  --paper:     #F4F2EC;
  --line:      #E6E2D6;
  --line-dark: rgba(255, 255, 255, 0.12);

  --text:      #0A0A0A;
  --text-soft: #4A4A4A;
  --text-mute: #7A7A7A;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-light-mute: rgba(255, 255, 255, 0.55);

  --maxw: 1300px;
  --header-h: 84px;

  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--transition); }

ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TIPOGRAFIA UTILITÁRIA ========== */

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
  display: block;
}

.eyebrow-light { color: var(--gold-400); }

.section-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  margin-bottom: 24px;
}

.title-light { color: #fff; }

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: gap 0.3s var(--transition);
}

.link-arrow svg { width: 16px; height: 16px; }

.link-arrow:hover { gap: 14px; }

/* ========== BOTÕES ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s var(--transition);
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 44, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-block { width: 100%; }

/* ========== TOPBAR (acima do header) ========== */

.topbar {
  background: var(--navy-deepest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 99;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.topbar-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: transparent;
  border: 1px solid rgba(212, 160, 44, 0.4);
  border-radius: 6px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s var(--transition);
}

.topbar-cta:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.topbar-cta svg { width: 12px; height: 12px; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s var(--transition);
}

.topbar-social a:hover { color: var(--gold-400); transform: translateY(-2px); }

.topbar-social svg { width: 16px; height: 16px; }

/* ========== HEADER ========== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(5, 13, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
}

.logo-wrap { display: flex; align-items: center; }

.logo { height: 44px; width: auto; }

.site-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.3s var(--transition);
}

.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { width: 100%; }

.header-cta {
  padding: 12px 22px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: all 0.25s var(--transition);
}

.header-cta:hover { background: var(--gold-400); }

/* ========== MOBILE HAMBURGER + MENU ========== */

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s var(--transition);
}

.mobile-menu-toggle span:nth-child(1) { top: 13px; }
.mobile-menu-toggle span:nth-child(2) { top: 19px; }
.mobile-menu-toggle span:nth-child(3) { top: 25px; }

.mobile-menu-toggle.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background: var(--gold-400);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  background: var(--gold-400);
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deepest);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.mobile-menu-label.spaced { margin-top: 28px; }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}

.mobile-menu-nav a {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s var(--transition);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus { color: var(--gold-400); }

.mobile-menu-nav a svg {
  width: 14px;
  height: 14px;
  opacity: 0.35;
  transition: all 0.25s var(--transition);
}

.mobile-menu-nav a:hover svg {
  opacity: 1;
  color: var(--gold-400);
  transform: translateX(4px);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.mobile-menu-ctas .btn {
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-contact a,
.mobile-menu-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 7px 0;
  transition: color 0.25s var(--transition);
}

.mobile-menu-contact a:hover { color: var(--gold-400); }

.mobile-menu-contact svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex-shrink: 0;
  opacity: 0.9;
}

.mobile-menu-social {
  display: flex;
  gap: 10px;
}

.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s var(--transition);
}

.mobile-menu-social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.mobile-menu-social svg {
  width: 17px;
  height: 17px;
}

/* ========== HERO (SLIDER) ========== */

.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  color: #fff;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  display: block !important;
  overflow: hidden;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  image-orientation: from-image;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.swiper-slide-active .hero-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(10, 26, 51, 0.82) 0%,
      rgba(10, 26, 51, 0.55) 35%,
      rgba(10, 26, 51, 0.18) 65%,
      rgba(10, 26, 51, 0.05) 100%),
    linear-gradient(180deg,
      rgba(10, 26, 51, 0.05) 0%,
      transparent 30%,
      rgba(10, 26, 51, 0.35) 100%);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero content sempre visível (anti-flicker se swiper falhar) */
.hero-content > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.hero-swiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .hero-content > * {
  opacity: 0;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before { display: none; }

.hero-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 18ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 58ch;
  margin-bottom: 44px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Setas laterais */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.hero-nav svg { width: 22px; height: 22px; }

.hero-nav-prev { left: 32px; }
.hero-nav-next { right: 32px; }

.hero-nav.swiper-button-disabled { opacity: 0.3; cursor: not-allowed; }

/* Dots */
.hero .swiper-pagination {
  position: absolute;
  bottom: 40px !important;
  left: 32px !important;
  text-align: left;
  width: auto !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s var(--transition);
  margin: 0 6px 0 0 !important;
}

.hero .swiper-pagination-bullet-active {
  background: var(--gold-500);
  width: 56px;
}

/* Counter "01 / 03" */
.hero-counter {
  position: absolute;
  bottom: 40px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'General Sans', 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-counter .current { color: var(--gold-400); font-size: 1.1rem; }
.hero-counter .divider { width: 36px; height: 1px; background: rgba(255, 255, 255, 0.4); }
.hero-counter .total { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* ========== ACTIVE NAV STATE ========== */

.site-nav a.active {
  color: var(--gold-400);
}
.site-nav a.active::after {
  width: 100%;
  background: var(--gold-400);
}

/* ========== PAGE HERO (páginas internas) ========== */

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 31, 0.65) 0%, rgba(5, 13, 31, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 13, 31, 0.4) 0%, transparent 60%);
  z-index: -1;
}

.page-hero-content {
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s var(--transition);
}

.breadcrumb a:hover { color: var(--gold-400); }

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--gold-400);
}

.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-hero-eyebrow::before { display: none; }

.page-hero-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 24ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

/* ========== PROCESSO (página operações) ========== */

.process {
  padding: 100px 0;
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.process-step {
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(10, 26, 51, 0.12);
}

.process-step-number {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-step-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.process-step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ========== GALERIA EXPANDIDA (página frota) ========== */

/* ===== DIFERENCIAIS DA FROTA (substitui Especificacoes Tecnicas) ===== */

.fleet-diferencial {
  padding: 100px 0;
  background: var(--navy-900);
  color: #fff;
}

.fleet-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.fleet-diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 26px;
  transition: all 0.3s var(--transition);
}

.fleet-diff-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 160, 44, 0.4);
  transform: translateY(-3px);
}

.fleet-diff-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-400);
  margin-bottom: 22px;
}

.fleet-diff-icon svg { width: 100%; height: 100%; }

.fleet-diff-card h3 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.fleet-diff-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light-mute);
  margin: 0;
}

@media (max-width: 1024px) {
  .fleet-diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fleet-diff-grid { grid-template-columns: 1fr; }
  .fleet-diferencial { padding: 64px 0; }
}

.fleet-vitrine-alt { background: var(--off-white); border-top: 1px solid var(--line); }

.fleet-vitrine {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.vitrine-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--transition);
  display: flex;
  flex-direction: column;
}

.vitrine-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  box-shadow: 0 22px 44px rgba(10, 26, 51, 0.12);
}

.vitrine-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
}

.vitrine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.vitrine-card:hover .vitrine-img img { transform: scale(1.06); }

.vitrine-info {
  padding: 24px 26px 28px;
}

.vitrine-info h3 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}

.vitrine-info p {
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.fleet-gallery {
  padding: 100px 0;
  background: var(--off-white);
}

.fleet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.fleet-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.fleet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.fleet-gallery-item:hover img { transform: scale(1.05); }

/* ========== HIDROVIAS DETALHADAS (página operações) ========== */

.hidrovias {
  padding: 100px 0;
  background: var(--navy-900);
  color: #fff;
}

.hidrovias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hidrovia-card {
  padding: 32px 28px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s var(--transition);
}

.hidrovia-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hidrovia-name {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.hidrovia-states {
  font-size: 0.78rem;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.hidrovia-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ========== TEAM (página sobre) ========== */

.team {
  padding: 100px 0;
  background: var(--navy-800);
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.team-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

/* ========== RESPONSIVO PÁGINAS INTERNAS ========== */

@media (max-width: 1024px) {
  .page-hero { min-height: 50vh; padding: 100px 0 60px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .fleet-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hidrovias-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .vitrine-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 44vh; padding: 80px 0 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .fleet-gallery-grid { grid-template-columns: 1fr; }
  .hidrovias-grid { grid-template-columns: 1fr; }
  .vitrine-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process, .hidrovias, .team, .fleet-gallery, .fleet-vitrine { padding: 64px 0; }
}

/* ========== NUMBERS (cards brancos elevados sobrepostos ao hero) ========== */

.numbers {
  position: relative;
  z-index: 5;
  margin-top: -90px;
  padding-bottom: 70px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 90px,
    var(--off-white) 90px,
    var(--off-white) 100%
  );
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.number-card {
  background: #fff;
  padding: 40px 32px;
  border-top: 3px solid var(--gold-500);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(10, 26, 51, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.number-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -12px rgba(10, 26, 51, 0.25);
}

.number-value {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.025em;
}

.number-label {
  font-size: 0.88rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ========== ABOUT INTRO ========== */

.about-intro {
  padding: 40px 0 80px;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-500);
  border-radius: 14px;
  transform: translate(16px, 16px);
  z-index: -1;
}

/* ========== SERVICES ========== */

.services {
  padding: 90px 0;
  background: var(--off-white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-head-row {
  text-align: left;
  max-width: 100%;
  margin: 0 0 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  background: #fff;
  padding: 48px 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: 0 24px 48px rgba(10, 26, 51, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--navy-700);
  margin-bottom: 32px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ========== DIFFERENTIATOR ========== */

.differentiator {
  padding: 100px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: clip;
}

.differentiator .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.differentiator::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 160, 44, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.differentiator::after {
  content: '';
  position: absolute;
  bottom: -180px; right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(30, 58, 107, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.diff-header {
  position: sticky;
  top: 120px;
  z-index: 1;
  margin-bottom: 0;
  align-self: start;
}

.diff-headline {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

.diff-headline .highlight {
  color: var(--gold-400);
  font-weight: 700;
}

.diff-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 62ch;
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.diff-list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s var(--transition);
}

.diff-list-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.diff-list-item:hover { padding-left: 16px; }

.diff-list-num {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--gold-400);
  letter-spacing: -0.02em;
  line-height: 1;
}

.diff-list-body h3 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.diff-list-body p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-light-mute);
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .differentiator .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .diff-header { position: relative; top: auto; }
  .diff-list-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .diff-list-num { font-size: 1.6rem; }
  .diff-list-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
  .diff-list-body p { font-size: 0.95rem; }
}

/* legado bento - mantido caso volte */
.diff-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.diff-bento-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--transition);
}

.diff-bento-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 44, 0.35);
  transform: translateY(-3px);
}

.diff-bento-featured {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  background: linear-gradient(140deg, rgba(212, 160, 44, 0.12) 0%, rgba(30, 58, 107, 0.35) 60%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(212, 160, 44, 0.45);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.diff-bento-featured::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 160, 44, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.diff-bento-featured:hover {
  border-color: rgba(212, 160, 44, 0.7);
  background: linear-gradient(140deg, rgba(212, 160, 44, 0.18) 0%, rgba(30, 58, 107, 0.45) 60%, rgba(255, 255, 255, 0.06) 100%);
}

.bento-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(212, 160, 44, 0.18);
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 44, 0.3);
}

.bento-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon svg { width: 100%; height: 100%; }

.bento-icon-lg {
  width: 64px;
  height: 64px;
  margin-top: 8px;
}

.diff-bento-card h3 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}

.diff-bento-featured h3 {
  font-size: 1.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.diff-bento-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light-mute);
  margin: 0;
}

.diff-bento-featured p {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 52ch;
}

.diff-bento-featured strong {
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-list li {
  font-size: 0.92rem;
  color: var(--text-light-mute);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.bento-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--gold-400);
}

/* legado: mantido para compatibilidade caso outra pagina ainda use .diff-card */
.diff-card {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s var(--transition);
}

.diff-card:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.diff-card:hover { padding-left: 12px; }

.diff-card h3 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 0;
  transition: color 0.3s var(--transition);
}

.diff-card:hover h3 { color: var(--gold-400); }

.diff-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-light-mute);
  max-width: 56ch;
}

/* ========== FROTA TÉCNICA (specs) ========== */

.fleet-tech {
  padding: 100px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fleet-tech::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 44, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.fleet-tech-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 64ch;
  margin: 0 auto;
}

.fleet-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.fleet-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s var(--transition), transform 0.3s var(--transition);
}

.fleet-tech-card:hover {
  border-color: rgba(212, 160, 44, 0.3);
  transform: translateY(-4px);
}

.fleet-tech-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.fleet-tech-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.fleet-tech-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.fleet-tech-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-tech-count {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -0.02em;
}

.fleet-tech-name {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.fleet-tech-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.fleet-tech-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.fleet-tech-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-tech-specs div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-tech-specs dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.fleet-tech-specs dd {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.spec-pending {
  color: rgba(212, 160, 44, 0.6);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
}

/* ========== OPERAÇÃO RESPONSÁVEL ========== */

.responsibility {
  padding: 90px 0;
  background: var(--off-white);
}

.responsibility-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.responsibility-card {
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.responsibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(10, 26, 51, 0.15);
}

.responsibility-icon {
  width: 44px;
  height: 44px;
  color: var(--navy-700);
  margin-bottom: 24px;
}

.responsibility-icon svg { width: 100%; height: 100%; }

.responsibility-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--navy-800);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.responsibility-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ========== COVERAGE (mapa Região Norte) ========== */

.coverage-map {
  position: relative;
  width: 100%;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.map-states .state,
.map-states .north-state {
  transition: fill 0.35s var(--transition), stroke 0.35s var(--transition);
  cursor: default;
}

.map-states .north-state:not(.north-state-am):hover {
  fill: #2a4d8a;
}

.map-states .north-state-am {
  filter: drop-shadow(0 0 24px rgba(212, 160, 44, 0.35));
}

.pin-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.4s ease-out infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.city-pin-major .pin-pulse { animation-duration: 2s; }
.city-pin text { pointer-events: none; }

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat-value {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}

/* ========== PARTNERS (carrossel de logos) ========== */

.partners {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.partners-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--line);
}

.partners-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.partners-swiper { overflow: hidden; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 0 32px;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.4s var(--transition), transform 0.4s var(--transition);
}

.partner-logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}

/* ========== FLEET PREVIEW ========== */

.fleet-preview {
  padding: 90px 0;
  background: var(--off-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}

.fleet-item {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.fleet-large {
  grid-row: span 2;
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.fleet-item:hover img { transform: scale(1.05); }

.fleet-item figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(10, 26, 51, 0.85);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.img-placeholder small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Card CTA dentro da galeria de frota */
.fleet-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--transition);
}

.fleet-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 160, 44, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.fleet-cta:hover { transform: translateY(-4px); }

.fleet-cta-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.fleet-cta-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.fleet-cta-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.025em;
}

.fleet-cta-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: gap 0.3s var(--transition), color 0.25s var(--transition);
  position: relative;
  z-index: 1;
}

.fleet-cta-link:hover { gap: 14px; color: var(--gold-500); }

.fleet-cta-link svg { width: 16px; height: 16px; }

/* ========== COVERAGE ========== */

.coverage {
  padding: 100px 0;
  background: var(--navy-800);
  color: #fff;
  position: relative;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.coverage-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-top: 12px;
  max-width: 52ch;
}

/* ========== FAQ ========== */

.faq {
  padding: 100px 0;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 42ch;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.3s var(--transition);
}

.faq-item:hover { background: rgba(255, 255, 255, 0.4); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary:hover { color: var(--gold-600); }

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--navy-600);
  flex-shrink: 0;
  transition: transform 0.35s var(--transition), color 0.3s var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-500);
}

.faq-item[open] summary { color: var(--gold-600); }

.faq-answer {
  padding: 8px 64px 32px 28px;
  border-left: 2px solid var(--gold-500);
  margin-left: 4px;
  animation: faqFadeIn 0.35s var(--transition);
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== CTA BANNER CINEMATOGRÁFICO ========== */

.cta-banner {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.02);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 31, 0.92) 0%, rgba(5, 13, 31, 0.7) 50%, rgba(5, 13, 31, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 13, 31, 0.4) 0%, rgba(5, 13, 31, 0.6) 100%);
  z-index: -1;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.cta-banner-eyebrow::before { display: none; }

.cta-banner-title {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
  max-width: 22ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-banner-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 56ch;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-whatsapp:hover {
  background: #1FB856;
  border-color: #1FB856;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ========== CONTACT ========== */

.contact-cta {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 48px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.channel-value {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

a.channel-value:hover { color: var(--gold-600); }

/* ========== FORM ========== */

.contact-form {
  background: #fff;
  padding: 48px 44px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label.full { width: 100%; }

.contact-form span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--text);
  outline: none;
  transition: all 0.2s var(--transition);
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy-600);
  background: #fff;
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form .form-whatsapp { margin-top: 12px; }

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-feedback.ok {
  display: block;
  background: rgba(38, 166, 91, 0.1);
  color: #1e7a44;
  border: 1px solid rgba(38, 166, 91, 0.28);
}

.form-feedback.err {
  display: block;
  background: rgba(192, 57, 43, 0.09);
  color: #b03a2e;
  border: 1px solid rgba(192, 57, 43, 0.28);
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--navy-deepest);
  color: var(--text-light);
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1.4fr;
  gap: 64px;
  padding: 80px 32px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-light-mute);
  max-width: 28ch;
  margin-top: 20px;
  line-height: 1.6;
}

.footer-logo {
  height: 96px;
  width: auto;
  filter: brightness(1.4);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-social-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-mute);
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.25s var(--transition);
}

.footer-social-icons a:hover {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col li,
.footer-col a {
  font-size: 0.92rem;
  color: var(--text-light-mute);
  line-height: 1.5;
}

.footer-col a:hover { color: var(--gold-400); }

.footer-hours {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hours-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  font-weight: 600;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
  list-style: none;
}

.footer-bottom {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom small {
  color: var(--text-light-mute);
  font-size: 0.82rem;
}

.footer-credit-inline {
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 0.04em;
}

.footer-credit-inline a {
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-left: 4px;
  transition: color 0.25s var(--transition);
}

.footer-credit-inline a:hover { color: var(--gold-500); }

/* ========== LEGAL PAGES (Política, Termos) ========== */

.legal-page {
  padding: 80px 0 120px;
  background: var(--off-white);
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
}

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-weight: 500;
}

.legal-container h2 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--navy-800);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.legal-container h2:first-of-type { margin-top: 0; }

.legal-container p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.legal-container ul {
  margin: 16px 0 24px 0;
  padding-left: 24px;
}

.legal-container ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 10px;
  list-style: disc;
}

.legal-container strong {
  color: var(--navy-800);
  font-weight: 600;
}

.legal-container a {
  color: var(--gold-600);
  border-bottom: 1px solid var(--gold-500);
  transition: color 0.2s var(--transition);
}

.legal-container a:hover {
  color: var(--navy-700);
  border-color: var(--navy-700);
}

/* ========== COOKIES BANNER (LGPD) ========== */

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deepest);
  border-top: 1px solid rgba(212, 160, 44, 0.25);
  z-index: 95;
  transform: translateY(110%);
  transition: transform 0.45s var(--transition);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.cookies-banner.visible { transform: translateY(0); }

.cookies-content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.cookies-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold-400);
}

.cookies-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.cookies-text a {
  color: var(--gold-400);
  border-bottom: 1px solid rgba(212, 160, 44, 0.4);
  transition: color 0.25s var(--transition);
}

.cookies-text a:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.cookies-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookies-btn {
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s var(--transition);
  white-space: nowrap;
}

.cookies-btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.cookies-btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-1px);
}

.cookies-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}

.cookies-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

@media (max-width: 768px) {
  .cookies-content {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
    align-items: flex-start;
  }
  .cookies-text { font-size: 0.82rem; }
  .cookies-actions { width: 100%; }
  .cookies-btn { flex: 1; padding: 12px; font-size: 0.78rem; }
  .cookies-icon { width: 22px; height: 22px; }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */

.whatsapp-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.whatsapp-floating:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.whatsapp-floating svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: whatsappPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-floating { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-floating svg { width: 28px; height: 28px; }
}

/* ========== RESPONSIVO ========== */

@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .topbar { display: none; }

  .site-nav { display: none; }

  .header-cta { display: none; }

  .mobile-menu-toggle { display: block; }

  .numbers { margin-top: -60px; padding-bottom: 50px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 16px; }
  .number-card { padding: 32px 24px; }
  .number-value { font-size: 2.6rem; }
  .number-label { font-size: 0.82rem; }

  .responsibility-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fleet-tech-grid { grid-template-columns: 1fr; gap: 24px; }

  .cta-banner { padding: 90px 0; }
  .cta-banner-overlay {
    background: linear-gradient(180deg, rgba(5, 13, 31, 0.85) 0%, rgba(5, 13, 31, 0.95) 100%);
  }

  .topbar-inner { flex-direction: column; gap: 12px; padding: 12px 24px; }
  .topbar-social { padding-left: 0; border-left: none; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .topbar-left { justify-content: center; text-align: center; flex-wrap: wrap; }
  .topbar-text { font-size: 0.78rem; text-align: center; width: 100%; }

  .diff-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .diff-bento-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    padding: 36px 28px;
  }

  .diff-bento-featured h3 { font-size: 1.55rem; }

  .about-grid,
  .coverage-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .diff-header { margin-bottom: 48px; }

  .faq-intro { position: static; }

  .services-grid { grid-template-columns: 1fr; }

  .fleet-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }

  .fleet-large { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero-nav { width: 44px; height: 44px; }
  .hero-nav-prev { left: 16px; }
  .hero-nav-next { right: 16px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .hero { height: calc(100vh - var(--header-h)); min-height: 540px; }

  .hero-title { font-size: 2rem; max-width: 100%; }

  .hero-subtitle { font-size: 0.95rem; }

  .hero-actions { flex-direction: column; }

  .hero-actions .btn { width: 100%; }

  .hero-nav { display: none; }

  .hero .swiper-pagination { bottom: 24px !important; left: 20px !important; }

  .hero-counter { bottom: 24px; right: 20px; gap: 8px; }

  .hero-counter .divider { width: 20px; }

  /* Mantém 2 colunas em mobile pequeno (3 fica apertado < 640px) */
  .numbers-grid { grid-template-columns: 1fr; gap: 10px; }
  .number-card { padding: 20px 16px; }
  .number-value { font-size: 2rem; }
  .number-label { font-size: 0.72rem; }

  .responsibility-grid { grid-template-columns: 1fr; gap: 12px; }
  .responsibility-card { padding: 28px 24px; }

  .fleet-tech-body { padding: 28px 24px; }
  .fleet-tech-specs { grid-template-columns: 1fr 1fr; gap: 14px 16px; }

  .cta-banner { padding: 64px 0; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; }

  .about-intro, .services, .differentiator, .fleet-preview, .coverage, .contact-cta, .faq, .responsibility, .fleet-tech {
    padding: 64px 0;
  }

  .footer-grid { padding: 56px 20px 40px; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    padding: 28px 20px 36px;
    text-align: center;
  }

  .footer-bottom small,
  .footer-credit-inline {
    width: 100%;
  }

  .faq-item summary { font-size: 1.05rem; padding: 22px 0; }
  .faq-answer { padding-right: 32px; }

  .section-head-row { flex-direction: column; align-items: flex-start; }

  .coverage-content { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* Arredondamento consistente em imagens e cards (padrao 12px) */
.fleet-gallery-item,
.fleet-item,
.hidrovia-card,
.contact-form,
.process-step,
.responsibility-card { border-radius: 12px; }
