/* ==========================================================================
   SSTransportadora - Portal de Agregação de Frotas
   Design System & Estilização Moderna
   ========================================================================== */

:root {
  /* Paleta Corporativa */
  --color-primary: #0b1e36;
  --color-primary-dark: #071324;
  --color-primary-light: #162f52;
  
  --color-accent: #f97316; /* Laranja Logística de Alta Energia */
  --color-accent-hover: #ea580c;
  --color-accent-light: #ffedd5;

  --color-cold: #0284c7; /* Azul Ciano Especial Cadeia do Frio / Refrigerada */
  --color-cold-bg: #e0f2fe;
  --color-dry: #d97706; /* Âmbar Carga Seca */
  --color-dry-bg: #fef3c7;

  --color-success: #10b981;
  --color-success-dark: #059669;
  --color-success-bg: #d1fae5;

  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;
  --color-border-dark: #cbd5e1;

  /* Efeitos e Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-orange: 0 10px 20px -5px rgba(249, 115, 22, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Contêiner Base */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Barra Superior */
.top-announcement {
  background: var(--color-primary-dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  font-size: 0.82rem;
}

.top-contacts a:hover {
  color: var(--color-accent);
}

/* Header Principal */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header-main.scrolled {
  box-shadow: var(--shadow-md);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
}

.logo-text span {
  color: var(--color-accent);
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: -3px;
}

/* Menu de Navegação */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-main);
  position: relative;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: white;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background: var(--color-primary);
  color: white;
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border-dark);
}

.btn-outline:hover {
  background: white;
  border-color: var(--color-primary);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Menu Hambúrguer (Mobile) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071424 0%, #0c233f 60%, #153860 100%);
  color: white;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(249, 115, 22, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fed7aa;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--color-accent);
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Métricas / Badges da Hero */
.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
}

.hero-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* SEÇÃO GERAL */
.section {
  padding: 5rem 0;
}

.section-muted {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* SEÇÃO CATEGORIAS DE VEÍCULOS */
.vehicles-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.vehicle-tab-btn {
  background: white;
  border: 1px solid var(--color-border);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.vehicle-tab-btn.active, .vehicle-tab-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.vehicle-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.vehicle-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vehicle-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-accent);
}

.vehicle-badge-profile {
  background: #f1f5f9;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.vehicle-title {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.vehicle-models {
  font-size: 0.88rem;
  color: var(--color-accent-hover);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.vehicle-specs-list {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vehicle-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.vehicle-spec-item .spec-label {
  color: var(--color-text-muted);
}

.vehicle-spec-item .spec-val {
  font-weight: 600;
  color: var(--color-primary);
}

.vehicle-body-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.body-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.body-tag.dry {
  background: var(--color-dry-bg);
  color: #92400e;
}

.body-tag.cold {
  background: var(--color-cold-bg);
  color: #0369a1;
}

.body-tag.universal {
  background: #f1f5f9;
  color: var(--color-text-main);
}

.vehicle-card-action {
  margin-top: auto;
}

/* SEÇÃO CARGA SECA & REFRIGERADA */
.cargo-types-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cargo-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.cargo-box:hover {
  box-shadow: var(--shadow-lg);
}

.cargo-box.dry-box {
  border-top: 5px solid var(--color-dry);
}

.cargo-box.cold-box {
  border-top: 5px solid var(--color-cold);
}

.cargo-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cargo-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.dry-box .cargo-icon-lg {
  background: var(--color-dry-bg);
  color: var(--color-dry);
}

.cold-box .cargo-icon-lg {
  background: var(--color-cold-bg);
  color: var(--color-cold);
}

.cargo-box-title {
  font-size: 1.6rem;
}

.cargo-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cargo-feature-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cargo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-main);
}

.cargo-feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.dry-box .cargo-feature-item svg {
  color: var(--color-dry);
}

.cold-box .cargo-feature-item svg {
  color: var(--color-cold);
}

.cargo-box-highlight {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  font-size: 0.88rem;
  margin-top: 1.5rem;
  border-left: 3px solid;
}

.dry-box .cargo-box-highlight {
  border-left-color: var(--color-dry);
}

.cold-box .cargo-box-highlight {
  border-left-color: var(--color-cold);
}

/* SEÇÃO GALPÕES & LOGÍSTICA INTELIGENTE EM SP */
.hubs-section {
  background: white;
}

.hubs-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hubs-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hubs-info p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hubs-callout {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.hubs-callout h4 {
  color: #15803d;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hubs-callout p {
  color: #166534;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.region-pills-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.region-pill {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.region-pill.active, .region-pill:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.hub-details-card {
  background: var(--color-primary-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hub-details-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  pointer-events: none;
}

.hub-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hub-region-title {
  color: white;
  font-size: 1.4rem;
}

.hub-status-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hub-status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
}

.hub-points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hub-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hub-point-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.hub-point-item strong {
  display: block;
  font-size: 0.95rem;
  color: #f8fafc;
}

.hub-point-item span {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* VANTAGENS DE AGREGAR CONOSCO */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.advantage-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  font-size: 0.9rem;
}

/* COMO FUNCIONA (PASSO A PASSO) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 10px rgba(11, 30, 54, 0.25);
}

.step-card:nth-child(even) .step-number {
  background: var(--color-accent);
  box-shadow: var(--shadow-orange);
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* REQUISITOS E DOCUMENTAÇÃO */
.requirements-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.req-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary);
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.req-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.req-item strong {
  color: var(--color-primary);
}

/* SEÇÃO DE PRÉ-CADASTRO (FORMULÁRIO INTELIGENTE) */
.form-section {
  background: linear-gradient(135deg, #071324 0%, #0d223c 100%);
  color: white;
  padding: 5rem 0;
}

.form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  color: var(--color-text-main);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-label span.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

select.form-control {
  cursor: pointer;
}

.form-checkboxes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.form-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
  user-select: none;
}

.form-check-label input[type="checkbox"], 
.form-check-label input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-submit-actions {
  grid-column: 1 / -1;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-notice {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Modal de Confirmação & Alertas */
.form-feedback {
  display: none;
  background: var(--color-success-bg);
  border: 1px solid #86efac;
  color: #065f46;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  text-align: center;
}

.form-feedback.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form-feedback h4 {
  color: #065f46;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-feedback p {
  color: #047857;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* FAQ (PERGUNTAS FREQUENTES) */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* FOOTER */
.footer {
  background: var(--color-primary-dark);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-col h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.88rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #94a3b8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hubs-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cargo-types-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-announcement {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 1.25rem;
    align-items: flex-start;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .hero {
    padding: 3.5rem 0 3rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 1.75rem;
  }
  .requirements-card {
    padding: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
