/* Importação de Fontes Google - Otimizada */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

:root {
  /* Paleta de Cores - Azul Marinho Acinzentado + Bege Acinzentado - Atualizada - v2.3 */
  --navy-primary: #1e2e3b;      /* Azul marinho acinzentado principal */
  --navy-dark: #1a2835;         /* Azul marinho acinzentado escuro */
  --navy-light: #2a3d4f;        /* Azul marinho acinzentado claro */
  --navy-accent: #243649;       /* Azul marinho acinzentado de destaque */
  --navy-muted: #5a6b7a;        /* Azul marinho acinzentado suavizado */
  
  --off-white: #FFFFFF;         /* Branco puro */
  --off-white-warm: #FFFFFF;    /* Branco puro */
  --off-white-cool: #FFFFFF;    /* Branco puro */
  --off-white-subtle: #FFFFFF;  /* Branco puro */
  
  --gray-light: #e8e9e3;        /* Cinza claro com tom bege */
  --gray-medium: #a8a9a3;       /* Cinza médio */
  --gray-dark: #3a3b35;         /* Cinza escuro */
  
  /* Sistema de Tipografia - Titillium Web */
  --font-primary: 'Titillium Web', sans-serif;
  --font-heading: 'Titillium Web', sans-serif;
  --font-h2: 'Titillium Web', sans-serif;
  
  /* Tamanhos de Fonte - Escala Responsiva */
  --font-size-xs: clamp(0.75rem, 2vw, 0.875rem);      /* 12-14px */
  --font-size-sm: clamp(0.875rem, 2.5vw, 1rem);       /* 14-16px */
  --font-size-base: clamp(1rem, 3vw, 1.125rem);       /* 16-18px */
  --font-size-lg: clamp(1.125rem, 3.5vw, 1.25rem);    /* 18-20px */
  --font-size-xl: clamp(1.25rem, 4vw, 1.5rem);        /* 20-24px */
  --font-size-2xl: clamp(1.5rem, 5vw, 2rem);          /* 24-32px */
  --font-size-3xl: clamp(1.875rem, 6vw, 2.5rem);      /* 30-40px */
  --font-size-4xl: clamp(2.25rem, 7vw, 3rem);         /* 36-48px */
  --font-size-5xl: clamp(3rem, 8vw, 4rem);            /* 48-64px */
  --font-size-6xl: clamp(3.75rem, 10vw, 5rem);        /* 60-80px */
  
  /* Breakpoints consistentes */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;
  
  /* Pesos de Fonte - Titillium Web */
  --font-weight-light: 300;      /* Light - Peso principal */
  --font-weight-normal: 400;     /* Regular */
  --font-weight-semibold: 600;   /* Semi Bold */
  --font-weight-bold: 700;       /* Bold */
  
  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  
  /* Cores Principais */
  --primary-color: var(--navy-primary);
  --primary-dark: var(--navy-dark);
  --primary-light: var(--navy-light);
  --secondary-color: var(--navy-muted);
  --accent-color: var(--navy-accent);
  --success-color: var(--navy-primary);
  --text-primary: var(--navy-primary);
  --text-secondary: var(--gray-dark);
  --text-muted: var(--gray-medium);
  --bg-primary: var(--off-white);
  --bg-secondary: var(--off-white-warm);
  --bg-tertiary: var(--off-white-cool);
  
  /* Cores sólidas - Sem gradientes */
  --bg-solid: var(--off-white);
  --bg-hero: var(--off-white-warm);
  --bg-card: var(--off-white);
  --bg-navy: var(--navy-primary);
  --bg-subtle: var(--off-white-subtle);
  
  /* Sombras com tons de azul marinho acinzentado */
  --shadow-sm: 0 1px 2px 0 rgba(30, 46, 59, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(30, 46, 59, 0.08), 0 2px 4px -2px rgba(30, 46, 59, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(30, 46, 59, 0.1), 0 4px 6px -4px rgba(30, 46, 59, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(30, 46, 59, 0.12), 0 8px 10px -6px rgba(30, 46, 59, 0.12);
  --shadow-2xl: 0 25px 50px -12px rgba(30, 46, 59, 0.15);
  
  /* Bordas e Transições */
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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


html {
  scroll-padding-top: 100px; /* Offset para compensar o menu fixo */
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%; /* Previne ajuste automático de fonte no iOS */
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Fundo branco */
body {
  background: #ffffff;
  color: var(--text-primary);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  -webkit-tap-highlight-color: rgba(30, 46, 59, 0.1); /* Cor de destaque ao tocar em mobile */
  -webkit-touch-callout: none; /* Desabilita callout ao segurar link */
}

/* Fundo simples sem ondas */
body::after {
  display: none;
}


/* Títulos com Titillium Web e sombra do +400 */
h1 {
  font-family: 'Titillium Web';
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Titillium Web';
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Titillium Web';
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.01em;
}

h4 {
  font-family: 'Titillium Web';
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.01em;
}

/* Main content wrapper */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(30, 46, 59, 0.05);
  pointer-events: auto;
}

.navbar.scrolled {
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(30, 46, 59, 0.05);
  box-shadow: 0 4px 30px rgba(30, 46, 59, 0.05);
}

.navbar.scrolled img {
  height: 20px;
  opacity: 0.6;
}

.navbar img {
  height: 20px;
  pointer-events: auto;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
  pointer-events: auto;
}

.navbar li {
  position: relative;
  pointer-events: auto;
}

.navbar nav {
  pointer-events: auto;
}

.navbar .logo {
  pointer-events: auto;
}

.navbar a {
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
  padding: 0.5rem 0;
  pointer-events: auto;
  cursor: pointer;
}

.navbar a:hover {
  color: var(--text-secondary);
}

.navbar a.active {
  color: #909397;
  font-weight: var(--font-weight-semibold);
}

.navbar a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #d1d5db;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(1);
  border-radius: 1px;
  transition: var(--transition);
}

.navbar a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(1);
  border-radius: 1px;
  transition: var(--transition);
}

.navbar a:not(.active):not(:hover)::after {
  transform: translateY(-50%) scaleX(0);
}

/* === MENU HAMBURGER === */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none !important;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  color: var(--navy-primary);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(30, 46, 59, 0.2);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--navy-primary) !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
}

/* === HAMBURGER HOVER E ACTIVE === */
.hamburger-menu:hover {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
}

.hamburger-menu:hover .hamburger-line {
  background-color: white !important;
}

.hamburger-menu:active {
  transform: scale(0.95);
}

/* === MENU MOBILE FECHADO === */
.nav-menu {
  display: flex;
  gap: 1.5rem;
}

/* Overlay para menu mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  height: 100vh;
  height: 100svh; /* mobile viewport fix */
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

/* Hero CTA Buttons - Adaptação para fundo de imagem */
.hero .cta-buttons {
  margin-top: 0.25rem;
  z-index: 15;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}


.hero .btn-cta-primary {
  background: var(--navy-primary);
  box-shadow: 0 8px 25px rgba(30, 46, 59, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-cta-secondary {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(30, 46, 59, 0.15);
}

/* Estilos específicos para o botão "Ver Cotações" */
.hero .hero-cta-secondary {
  margin-left: 0;
  color: var(--navy-primary);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 46, 59, 0.2);
}

.hero .hero-cta-secondary i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.hero .hero-cta-secondary:hover i {
  transform: translateY(2px);
}

.hero-content {
  z-index: 20;
  color: var(--text-primary);
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  text-align: left;
}

.hero-content-left {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 15;
  padding-top: 50px;
}

.hero h1 {
  font-size: 72px;
  font-weight: var(--font-weight-light);
  margin-bottom: 0;
  margin-top: 0;
  line-height: var(--line-height-tight);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.02em;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  text-align: center;
  position: relative;
  z-index: 15;
}

.hero h1 .highlight {
  color: var(--navy-primary);
}

.hero p {
  font-family: 'Titillium Web';
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0.5rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0.95;
  max-width: 450px;
  text-shadow: 0 2px 12px rgba(30, 46, 59, 0.6), 0 1px 4px rgba(30, 46, 59, 0.5);
  position: relative;
  z-index: 15;
}

.hero-image {
  width: 100%;
  height: 100vh;
  height: 100svh; /* mobile viewport fix */
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh; /* mobile viewport fix */
  overflow: hidden;
  z-index: 1;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Filtros específicos para harmonizar as cores das imagens do carrossel */
.hero-carousel .hero-image {
  filter: grayscale(100%);
}

.hero-carousel .hero-image.active {
  opacity: 1;
  z-index: 3;
}

/* Hero CTA Main Button */
.hero-cta-main {
  background: var(--navy-primary);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 2.5rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  max-width: 350px;
}

.hero-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-cta-main:hover::before {
  left: 100%;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  text-align: left;
}

.cta-text strong {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  color: white;
}

.cta-text small {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  font-weight: var(--font-weight-normal);
  color: rgba(255, 255, 255, 0.9);
}

/* Fade In/Out Animation - Otimizada */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in.animate-out {
  opacity: 0 !important;
  transform: translateY(-30px) !important;
}

/* Once animated, keep visible */
.fade-in.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
  will-change: auto; /* Remove will-change após animação */
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.scale-in.animate-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.scale-in.animate-out {
  opacity: 0 !important;
  transform: scale(0.8) !important;
}

/* Once animated, keep visible */
.scale-in.animated {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Stagger Animation Delays - Transpes Style */
.stagger-1 { transition-delay: 0.2s; }
.stagger-2 { transition-delay: 0.4s; }
.stagger-3 { transition-delay: 0.6s; }
.stagger-4 { transition-delay: 0.8s; }
.stagger-5 { transition-delay: 1.0s; }
.stagger-6 { transition-delay: 1.2s; }


/* Hero content - sem efeito parallax */
.hero-content {
  transform: none;
  transition: none;
}

/* Enhanced card hover effects with animation */
.card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(30, 46, 59, 0.15);
}

/* Enhanced stat item animations */
.stat-item {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.02);
}

/* SOBRE SECTION - Integrada ao sistema padronizado */
.sobre {
  /* Herda estilos do sistema padronizado acima */
  overflow: visible;
  position: relative;
  z-index: 5;
}

/* Efeito Parallax para imagem de fundo */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.parallax-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.sobre .container {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
  min-height: 60vh;
  position: relative;
  z-index: 7;
}

.sobre-texto {
  text-align: left;
  padding: 32px 32px 32px 32px;
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.sobre-titulo-container {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 150px;
  position: relative;
  z-index: 10;
}

.sobre-titulo-principal {
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 100px;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  white-space: normal;
  font-size: clamp(3rem, 8vw, 6rem) !important;
  position: relative;
  z-index: 15;
}

.sobre-descricao {
  margin: 2rem 0;
}

.sobre-descricao p {
  font-family: 'Titillium Web';
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-loose);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
  text-align-last: left;
}

.sobre-valores {
  margin-top: 3rem;
  padding-bottom: 2rem;
  background: transparent;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.valores-titulo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.sobre-valores h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  text-align: right;
  letter-spacing: -0.005em;
  white-space: pre-line;
}

.valores {
  /* Herda estilos do sistema padronizado */
  padding: 0 2rem;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0;
  padding: 40px 20px;
  align-items: stretch;
}

.valor-icon {
  width: 80px;
  height: 80px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Efeito de brilho removido */

.valor-icon i {
  font-size: 2.5rem;
  color: #1e2e3b !important;
  z-index: 2;
  position: relative;
}

.valor-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.valor-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-primary);
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 1;
}

.valor-item:hover::before {
  transform: scaleX(1);
}

.valor-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: none;
  border-color: transparent;
}

.valor-item h4 {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 2;
}

.valor-item p {
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin: 0;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

/* Sistema de Seções Padronizadas - Visualização por Página */
.equipe, .numeros, .clientes, .servicos, .sobre, .valores {
  min-height: 50vh;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Ajuste específico de espaçamento entre Serviços e Equipe */
.servicos {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.equipe {
  padding-top: 20px;
  margin-top: 0;
}

/* Margens padronizadas para containers internos */
.equipe .container,
.numeros .container,
.clientes .container,
.servicos .container,
.sobre .container,
.valores .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}


.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.01em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  white-space: normal;
}

/* Título específico para Nossos Valores - seguindo o padrão do "quem somos" */
.valores .section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 50px;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  white-space: pre-line;
  font-size: 85px;
  font-weight: 600;
}

/* Estilo para strong dentro do título de valores */
.valores .section-title strong {
  font-weight: var(--font-weight-bold);
  display: inline;
  line-height: inherit;
}

/* Título específico para Nossos Serviços - centralizado */
.servicos .section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
  margin-bottom: 50px;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  white-space: pre-line;
  font-size: 75px;
  font-weight: 600;
}

/* Decorative lines removed */

.section-subtitle {
  font-family: 'Titillium Web';
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.card {
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(30, 64, 175, 0.03);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  letter-spacing: -0.005em;
}

.card p {
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}

/* Equipe Header - Integrada ao sistema padronizado */
.equipe-header {
  text-align: center;
  margin-bottom: 3rem;
  /* Herda estilos do sistema padronizado */
}

/* Founder Section - ETHAN */
.founder-section {
  margin-bottom: 4rem;
  display: flex;
  justify-content: flex-start;
}

.founder-card {
  background: transparent;
  border-radius: 0;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 100%;
  width: 100%;
  box-shadow: none !important;
  border: none;
  position: relative;
  overflow: hidden;
}

.founder-card::before,
.founder-card::after {
  display: none !important;
}

.founder-card *::before,
.founder-card *::after {
  display: none !important;
}

.founder-image-wrapper {
  position: relative;
  flex-shrink: 0;
  box-shadow: none !important;
  border: none !important;
}

.founder-image-wrapper::before,
.founder-image-wrapper::after {
  display: none !important;
}

.founder-image {
  width: 345px;
  height: 600px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
  outline: none !important;
}

/* Remover qualquer linha vertical que possa aparecer */
.founder-section *,
.founder-card *,
.founder-image-wrapper *,
.founder-info * {
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
}

.founder-section::before,
.founder-section::after,
.founder-info::before,
.founder-info::after {
  display: none !important;
}


@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.founder-info {
  text-align: left;
  width: 100%;
  flex: 1;
}

.founder-title {
  font-family: 'Titillium Web';
  font-size: 35px;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.founder-name {
  font-family: 'Titillium Web';
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--navy-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.founder-description {
  font-family: 'Titillium Web';
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 500px;
  margin: 0;
}

/* Team Grid */
.team-grid {
  text-align: center;
}

.team-subtitle {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  position: relative;
}

.team-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--navy-primary);
  border-radius: 2px;
}

/* Números - Integrada ao sistema padronizado */
.numeros {
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
  /* Herda padding do sistema padronizado */
}

/* Fleet Stats - Nova seção simplificada */
.fleet-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  box-sizing: border-box;
  gap: 30px;
}

.fleet-number-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fleet-number {
  font-family: 'Titillium Web';
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--navy-primary);
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  position: relative;
  overflow: visible;
  white-space: nowrap;
}

.fleet-number::before {
  display: none;
}

.fleet-text-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fleet-text {
  font-family: 'Titillium Web';
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  opacity: 0.9;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0;
}

/* Números CTA Buttons */
.numeros .cta-buttons {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.numeros .btn-cta-primary {
  background: var(--navy-primary);
  box-shadow: 0 8px 25px rgba(30, 46, 59, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.numeros .btn-cta-outline {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid var(--navy-primary);
  box-shadow: 0 8px 25px rgba(30, 46, 59, 0.1);
}

/* Background da seção números */

.numeros .section-title,
.numeros .section-subtitle {
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(30, 46, 59, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover::after {
  width: 200px;
  height: 200px;
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px rgba(30, 46, 59, 0.15);
  border-color: rgba(30, 46, 59, 0.2);
}

.stat-item .number,
.stat-item .label {
  position: relative;
  z-index: 1;
}

.stats .number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  display: block;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(30, 46, 59, 0.1);
  animation: numberGlow 4s ease-in-out infinite;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.stats .number::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: numberShine 3s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.1);
    transform: scale(1.02);
  }
}

@keyframes numberShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes counterComplete {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.stats .label {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  opacity: 0.8;
  text-shadow: 0 1px 5px rgba(30, 46, 59, 0.1);
}

/* Título da seção - em itálico e minúsculo */
#clientes .section-title {
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-transform: lowercase;
}

/* Container do logo da Riverlog */
.riverlog-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.riverlog-logo {
  height: 45px;
  width: auto;
  filter: grayscale(100%) contrast(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.riverlog-logo:hover {
  filter: grayscale(100%) contrast(1.0);
  opacity: 1;
  transform: scale(1.05);
}

/* Container principal do carrossel */
.companies-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.companies-carousel-wrapper {
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 2rem 0;
}

.companies-carousel-track {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grupos de empresas */
.companies-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  opacity: 0;
  transform: translateX(100px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.companies-group.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.companies-group.prev {
  transform: translateX(-100px) scale(0.8);
  opacity: 0;
}

.companies-group.next {
  transform: translateX(100px) scale(0.8);
  opacity: 0;
}

/* Itens individuais das empresas */
.company-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.company-logo {
  max-width: 120px;
  max-height: 60px;
  height: auto;
  width: auto;
  filter: grayscale(100%) contrast(0.8);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logo-item:hover .company-logo {
  filter: grayscale(100%) contrast(1.0);
  opacity: 0.9;
  transform: scale(1.05);
}


/* Estilos removidos - controles e indicadores não são mais necessários */

.servicos .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.servicos-content {
  display: block;
  max-width: 800px;
  margin: 2rem auto 0;
}

.servicos-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  margin-bottom: 1.5rem;
  text-align: center;
}

.servicos-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Grade de Ícones Ilustrativos */
.icons-grid-section {
  padding: 20px 20px;
  background: transparent;
  margin: 60px auto;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin-bottom: 130px;
}

/* Pseudo-elementos da seção de ícones removidos - usando fundo global */

.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.icon-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.icon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-primary);
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 1;
}

.icon-item:hover::before {
  transform: scaleX(1);
}

.icon-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: none;
  border-color: transparent;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: #1e2e3b !important;
  z-index: 2;
  position: relative;
}

.icon-item h4 {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
  transition: var(--transition);
}

.icon-item:hover h4 {
  color: var(--navy-primary);
  transform: translateY(-2px);
}

.icon-item p {
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin: 0;
  transition: var(--transition);
  flex: 1;
}

.icon-item:hover p {
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Efeito de ripple para interação */
.icon-item {
  position: relative;
  overflow: hidden;
}

.icon-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(30, 46, 59, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.icon-item:active::after {
  width: 300px;
  height: 300px;
}


/* Logo Section */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  background: transparent;
  position: relative;
  width: 100%;
  min-height: 60px;
  margin: 0 auto;
  max-width: 1200px;
}

.logo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}

.logo-branca {
  width: 100%;
  max-width: none;
  margin-top: 100px !important;
  margin-bottom: 0px;
  height: auto;
  max-height: 80px;
  opacity: 0.2;
  filter: 
    grayscale(100%) 
    contrast(0.6) 
    brightness(0.8)
    drop-shadow(0 2px 4px rgba(30, 46, 59, 0.2));
  background: linear-gradient(135deg, 
    rgba(30, 46, 59, 0.8) 0%, 
    rgba(30, 46, 59, 0.4) 50%, 
    rgba(30, 46, 59, 0.1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  position: relative;
  object-fit: contain;
}

/* Diferenciais Section */




/* Footer Simplificado */
.footer {
  background: transparent;
  color: var(--text-primary);
  padding: 2rem 1.5rem;
  position: relative;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-content {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-section {
  text-align: center;
  flex: 0 0 auto;
}

.footer-section h4 {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}

.contact-info {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
  justify-content: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.contact-info .contact-item i {
  color: #1e2e3b;
  font-size: var(--font-size-base);
  width: 16px;
  text-align: center;
}

.contact-info .contact-item i.fa-envelope {
  margin-left: 0;
}

.contact-info .contact-item i.fa-clock {
  margin-left: 0;
}

.contact-info .contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-info .contact-item a:hover {
  color: var(--navy-primary);
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Titillium Web';
  transition: var(--transition);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .social-links a:hover {
    color: var(--navy-primary);
    background: var(--off-white-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-light);
  }

/* Footer Copyright */
.footer-copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 46, 59, 0.1);
  text-align: center;
}

.copyright-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.copyright-text p {
  font-family: 'Titillium Web';
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  color: var(--text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
}

.copyright-text a {
  color: var(--navy-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-fast);
}

.copyright-text a:hover {
  color: var(--navy-dark);
  text-decoration: underline;
}

/* ===== ONDAS ESCURAS E GRADIENTES DINÂMICOS ===== */
.dark-wave-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-wave-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse 800px 400px at 20% 30%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 70%);
  animation: wave-movement 20s ease-in-out infinite;
}

.dark-wave-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 600px 300px at 80% 70%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
  animation: wave-movement 25s ease-in-out infinite reverse;
}

@keyframes wave-movement {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-20px, -30px) rotate(2deg);
  }
  50% {
    transform: translate(10px, -20px) rotate(-1deg);
  }
  75% {
    transform: translate(-10px, 10px) rotate(1deg);
  }
}

.dark-wave-content {
  position: relative;
  z-index: 2;
  color: #000;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.dark-wave-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
  line-height: 1.1;
  color: #000;
}

.dark-wave-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
  color: #000;
}

.dark-wave-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
  color: #000;
}

/* Onda escura flutuante */
.floating-dark-wave {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 80%);
  border-radius: 50%;
  animation: float-wave 15s ease-in-out infinite;
}

.floating-dark-wave:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-dark-wave:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.floating-dark-wave:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float-wave {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.8;
  }
}


/* Animação suave para as ondas do fundo */
@keyframes wave-float {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  25% {
    transform: translateX(-30px) translateY(-10px) scale(1.02);
  }
  50% {
    transform: translateX(20px) translateY(-15px) scale(0.98);
  }
  75% {
    transform: translateX(-15px) translateY(8px) scale(1.01);
  }
}

/* Animação específica para ondas SVG */
@keyframes wave-svg {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  25% {
    background-position: 25% 25%, 30% 20%, 20% 30%;
  }
  50% {
    background-position: 50% 50%, 60% 40%, 40% 60%;
  }
  75% {
    background-position: 75% 25%, 80% 20%, 70% 30%;
  }
  100% {
    background-position: 100% 0%, 100% 0%, 100% 0%;
  }
}

.organic-dark-content {
  position: relative;
  z-index: 2;
  color: #000;
  text-align: center;
}

/* ===== BOTÃO FLUTUANTE DO WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 1000;
}

.whatsapp-button {
  font-family: 'Titillium Web';
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-primary);
  color: var(--off-white);
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--off-white);
}

.whatsapp-text {
  font-size: 14px;
  font-weight: 500;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */

/* Container do botão voltar ao topo */
.back-to-top-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
}

/* Botão voltar ao topo */
.back-to-top-btn {
  font-family: 'Titillium Web';
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 18px 32px;
  background: var(--navy-primary);
  color: var(--off-white);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}

.back-to-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.back-to-top-btn:hover::before {
  left: 100%;
}

.back-to-top-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--off-white);
  text-decoration: none;
}

.back-to-top-btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.back-to-top-btn i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover i {
  transform: translateY(-2px);
}

/* Responsividade do botão voltar ao topo - MOVED TO CONSOLIDATED MEDIA QUERIES BELOW */

.cotacao-riverlog {
  background: transparent;
  padding: 4rem 2rem;
  font-family: 'Titillium Web';
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cotação Stats - Seguindo o padrão da seção de números */
.cotacao-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  gap: 100px;
}

.cotacao-title-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
}

.cotacao-title {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.8;
  color: var(--navy-primary);
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(30, 46, 59, 0.3);
  position: relative;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.cotacao-form-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* --- Formulário de Cotação --- */
.formulario-simples {
  width: 100%;
  max-width: 450px;
  padding: 30px 30px;
  margin: 0;
  position: relative;
  text-align: left;
  background: #ffffff;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cotacao-titulo {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--navy-primary);
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  white-space: normal;
  text-transform: lowercase;
}


.form-subtitle {
  font-family: 'Titillium Web';
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--navy-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  color: var(--navy-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.form-background-text {
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(30, 46, 59, 0.05);
  text-transform: uppercase;
  pointer-events: none;
}

/* --- Inputs --- */
.formulario-simples .form-group {
  margin-bottom: 30px;
  text-align: left;
}

.formulario-simples label {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.formulario-simples input,
.formulario-simples textarea {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid var(--navy-primary);
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-primary);
}

.formulario-simples input:focus,
.formulario-simples textarea:focus {
  border-bottom-color: #F5F6EE;
  background: transparent;
  box-shadow: none;
}

.formulario-simples input:not(:placeholder-shown),
.formulario-simples textarea:not(:placeholder-shown) {
  border-bottom-color: #F5F6EE;
  background: transparent;
  box-shadow: none;
}

.formulario-simples input::placeholder,
.formulario-simples textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Estilo para campos preenchidos */
.formulario-simples input:valid:not(:placeholder-shown),
.formulario-simples textarea:not(:placeholder-shown) {
  border-bottom-color: #F5F6EE;
}

/* Benefícios removidos - não são mais necessários */

/* --- Botão de Cotação --- */
.btn-cotacao {
  width: 100%;
  padding: 18px 32px;
  background: var(--navy-primary);
  color: var(--off-white);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.btn-cotacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cotacao:hover::before {
  left: 100%;
}

.btn-cotacao:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}


/* Melhorias de Legibilidade para Mobile - MOVED TO CONSOLIDATED MEDIA QUERIES BELOW */

/* Aplicar filtro de preto e branco a todas as imagens */
img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* Filtros específicos para diferentes tipos de imagem */

.founder-image {
  filter: none;
}

.member-image {
  filter: grayscale(100%);
}

.logo-image {
  filter: grayscale(100%);
}

.navbar img {
  filter: grayscale(100%) contrast(1.2);
}

.logo-branca {
  filter: grayscale(100%) contrast(0.4) brightness(0.7);
}

.btn-cta-primary {
  padding: 1rem 2rem;
  background: var(--navy-primary);
  color: var(--off-white);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: 'Titillium Web';
  line-height: var(--line-height-normal);
  border: 2px solid var(--navy-primary);
  white-space: nowrap;
  min-height: 48px;
  box-shadow: var(--shadow-lg);
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cta-primary:hover::before {
  left: 100%;
}

.btn-cta-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--off-white);
  text-decoration: none;
}

.btn-cta-primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Botão CTA Secundário - Branco para fundos escuros/coloridos */
.btn-cta-secondary {
  font-family: 'Titillium Web';
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  color: var(--navy-primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}

.btn-cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 46, 59, 0.1), transparent);
  transition: left 0.5s;
}

.btn-cta-secondary:hover::before {
  left: 100%;
}

.btn-cta-secondary:hover {
  background: var(--off-white-warm);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: var(--off-white-warm);
  text-decoration: none;
}

.btn-cta-secondary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Botão CTA Outline - Para fundos neutros */
.btn-cta-outline {
  font-family: 'Titillium Web';
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--navy-primary);
  text-decoration: none;
  border: 2px solid var(--navy-primary);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  box-shadow: var(--shadow-lg);
}

.btn-cta-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy-primary);
  transition: left 0.3s;
  z-index: -1;
}

.btn-cta-outline:hover::before {
  left: 0;
}

.btn-cta-outline:hover {
  color: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-cta-outline:active {
  transform: translateY(-1px);
}

/* Botão CTA Grande - Para destaques especiais */
.btn-cta-large {
  font-family: 'Titillium Web';
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--navy-primary);
  color: var(--off-white);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 56px;
}

.btn-cta-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cta-large:hover::before {
  left: 100%;
}

.btn-cta-large:hover {
  background: var(--navy-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  color: var(--off-white);
  text-decoration: none;
}

.btn-cta-large:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Ícones para botões CTA */
.btn-cta-primary i,
.btn-cta-secondary i,
.btn-cta-outline i,
.btn-cta-large i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-secondary:hover i,
.btn-cta-outline:hover i,
.btn-cta-large:hover i {
  transform: translateX(2px);
}

/* Container para grupos de botões CTA */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.cta-buttons.cta-buttons-left {
  justify-content: flex-start;
}

.cta-buttons.cta-buttons-right {
  justify-content: flex-end;
}

.cta-buttons.cta-buttons-vertical {
  flex-direction: column;
  align-items: stretch;
}

.cta-buttons.cta-buttons-vertical .btn-cta-primary,
.cta-buttons.cta-buttons-vertical .btn-cta-secondary,
.cta-buttons.cta-buttons-vertical .btn-cta-outline,
.cta-buttons.cta-buttons-vertical .btn-cta-large {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* ===========================
   RESPONSIVO (MOBILE)
   =========================== */
@media (max-width: 992px) {
  /* Ajuste do scroll padding para mobile */
  html {
    scroll-padding-top: 70px;
  }

  /* HEADER */
  .navbar {
    justify-content: space-between;
    padding: 12px 20px;
  }

  .logo img {
    height: 18px;
    width: auto;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--navy-primary);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    color: var(--navy-primary);
    box-shadow: 0 2px 10px rgba(30, 46, 59, 0.3);
    width: 40px;
    height: 40px;
  }

  .hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--navy-primary) !important;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
  }

  /* Menu Mobile */
  .nav-menu {
    position: fixed;
    top: 358%;
    right: -100%;
    width: 65%;
    max-width: 280px;
    height: auto;
    max-height: 60vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 20px 20px;
    border-radius: 12px 12px 12px 12px;
    transform: translateY(-50%);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: var(--navy-primary);
    font-weight: 500;
    padding: 12px 16px;
    display: block;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }
  
  .nav-menu a:hover {
    background: rgba(30, 46, 59, 0.1);
    transform: translateY(-2px);
  }
  
  /* WhatsApp button no menu mobile */
  .nav-menu .whatsapp-button {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    width: auto;
    min-width: 140px;
    justify-content: center;
  }

  /* Overlay do menu */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 80px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    gap: 30px;
  }

  .hero-content-left {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-content-left h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-content-right {
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }

  .hero .cta-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-right: 0;
    align-items: stretch;
  }

  .hero-cta-main {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .hero .btn-cta-outline {
    width: 100%;
  }

  /* ESPAÇAMENTO GERAL ENTRE SEÇÕES - MOBILE */
  .equipe, .numeros, .clientes, .servicos, .sobre, .valores {
    padding: 50px 20px;
    margin: 40px auto;
  }

  /* SOBRE */
  .sobre {
    padding: 50px 20px;
    min-height: auto;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .sobre-titulo-container {
    margin-left: 0;
    order: -1;
    justify-content: center;
  }

  .sobre-titulo-principal {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    text-align: center;
    margin-bottom: 30px;
  }

  .sobre-texto {
    padding: 0;
    order: 1;
  }

  .sobre-descricao p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  /* VALORES */
  .valores {
    padding: 50px 20px;
    min-height: auto;
  }

  .valores-header {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .valores .section-title {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    text-align: center;
    margin-bottom: 40px;
    justify-content: center;
  }

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 0;
  }

  .valor-item {
    padding: 30px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .valor-icon {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }

  .valor-item h4 {
    margin-bottom: 1rem;
    text-align: center;
  }

  .valor-item p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
  }

  .valores .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* SERVIÇOS */
  .servicos {
    padding: 50px 20px;
    min-height: auto;
  }

  .servicos .section-title {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    text-align: center;
    margin-bottom: 40px;
  }

  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
  }

  .icon-item {
    padding: 30px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }

  .icon-wrapper i {
    font-size: 2.5rem;
  }

  .icon-item h4 {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    text-align: center;
  }

  .icon-item p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
    text-align: center;
    flex: 1;
  }

  .logo-section {
    margin-top: 20px;
    min-height: 40px;
    padding: 0.5rem 1rem;
  }

  .logo-branca {
    margin-top: 5px;
    max-height: 60px;
  }

  /* EQUIPE */
  .equipe {
    padding: 50px 20px;
    min-height: auto;
  }

  .founder-section {
    margin-bottom: 0;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 30px;
  }

  .founder-image {
    width: 280px;
    height: 400px;
  }

  .founder-info {
    text-align: center;
    padding: 0 10px;
  }

  .founder-title {
    font-size: 28px;
  }

  .founder-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .founder-description {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.7;
  }

  /* NÚMEROS */
  .numeros {
    padding: 50px 20px;
    min-height: auto;
  }

  .fleet-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .fleet-number-container {
    width: 100%;
  }

  .fleet-number {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .fleet-text-container {
    width: 100%;
  }

  .fleet-text {
    font-size: clamp(1.25rem, 5vw, 2rem);
    text-align: left;
  }

  /* COTAÇÃO */
  .cotacao-riverlog {
    padding: 40px 20px;
    min-height: auto;
  }

  .cotacao-stats {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .cotacao-title-container {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cotacao-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
    text-align: center;
  }

  .cotacao-form-container {
    width: 100%;
    justify-content: center;
  }

  .formulario-simples {
    width: 100%;
    max-width: 100%;
    padding: 30px 24px;
  }

  .formulario-simples input,
  .formulario-simples textarea {
    font-size: 1rem;
    padding: 14px 0;
  }

  .btn-cotacao {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* FOOTER */
  .footer {
    padding: 40px 20px 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-item {
    font-size: 0.9rem;
    text-align: left;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .social-links {
    gap: 24px;
    align-self: center;
    width: 100%;
    justify-content: center;
  }

  .back-to-top-container {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .back-to-top-btn {
    padding: 16px 24px;
    min-height: 48px;
  }

  /* BOTÕES GERAIS */
  .btn-cta-primary,
  .btn-cta-outline,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* BOTÃO WHATSAPP FIXO */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    padding: 12px 16px;
    gap: 8px;
  }

  .whatsapp-button svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-text {
    font-size: 0.9rem;
  }

  /* Seções gerais */
  .equipe, .numeros, .clientes, .servicos, .sobre, .valores {
    min-height: auto;
    padding: 40px 20px;
  }

  .section-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* Mobile pequeno - ajustes adicionais */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 16px;
  }

  .navbar a {
    padding: 12px 20px; /* Área de toque maior */
    min-height: 44px; /* Mínimo recomendado para touch */
  }

  .logo img {
    height: 16px;
  }

  .hero {
    padding: 70px 16px 30px;
  }

  .hero-content-left h1 {
    font-size: clamp(1.75rem, 10vw, 2.5rem) !important;
  }

  .icons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .icon-item {
    padding: 30px 20px; /* Área de toque maior */
    min-height: 220px;
  }

  .valor-item {
    min-height: 220px;
  }

  .sobre, .valores, .servicos, .equipe, .numeros, .cotacao-riverlog {
    padding: 40px 16px;
  }

  .founder-image {
    width: 240px;
    height: 340px;
  }

  .fleet-number {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .cotacao-title {
    font-size: clamp(2.2rem, 12vw, 4rem);
    text-align: center;
  }

  .formulario-simples {
    padding: 24px 20px;
    width: 320px;
  }

  .formulario-simples input,
  .formulario-simples textarea {
    padding: 16px 0; /* Maior área de toque */
    min-height: 48px;
    font-size: 16px; /* Previne zoom automático no iOS */
  }

  .btn-cotacao,
  .btn-cta-primary,
  .btn-cta-outline {
    min-height: 48px; /* Altura mínima para toques confortáveis */
    padding: 16px 24px;
  }

  .footer {
    padding: 30px 16px 24px;
  }

  .contact-item {
    font-size: 0.85rem;
    padding: 8px; /* Área de toque */
  }

  .social-links a {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-button {
    padding: 12px;
    border-radius: 50%;
    width: 56px; /* Tamanho maior para melhor usabilidade */
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .back-to-top-btn {
    min-height: 48px;
    padding: 16px 24px;
  }

  /* Footer Copyright Mobile */
  .footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .copyright-text {
    padding: 0 1rem;
  }

  .copyright-text p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Tablet - ajustes intermediários */
@media (min-width: 577px) and (max-width: 992px) {
  .hero-content-left h1 {
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icon-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper i {
    font-size: 2.5rem;
  }

  .icon-item h4 {
    margin-bottom: 1rem;
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valor-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .valor-icon {
    margin-bottom: 1.5rem;
  }

  .founder-image {
    width: 300px;
    height: 450px;
  }

  .formulario-simples {
    max-width: 500px;
  }

  .fleet-stats {
    align-items: center;
    text-align: center;
  }

  .fleet-text {
    text-align: center;
  }
}

/* Landscape mobile */
@media (max-width: 992px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-content-left h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
  }

  .founder-image {
    width: 200px;
    height: 300px;
  }

  .equipe, .numeros, .valores {
    min-height: auto;
    padding: 50px 20px;
  }
}
  