/* ==========================================================================
   Galáxia — SISTEMA DE ESTILOS ORGANIZADO POR SEÇÕES
   ==========================================================================
   ÍNDICE DE SEÇÕES CSS:
   01. VARIÁVEIS E CORES (Altere a paleta de cores aqui)
   02. RESET E ESTILOS GERAIS DA PÁGINA
   03. BOTÕES E ELEMENTOS COMUNS
   04. SEÇÃO 01: CABEÇALHO (HEADER)
   05. SEÇÃO 02: DESTAQUE PRINCIPAL (HERO)
   06. SEÇÃO 03: QUEM SOMOS
   07. SEÇÃO 04: MISSÃO, VISÃO E VALORES (PILARES)
   08. SEÇÃO 05: SERVIÇOS E FROTA
   09. SEÇÃO 06: CTA E FORMULÁRIO DE CONTATO
   10. SEÇÃO 07: RODAPÉ (FOOTER)
   11. RESPONSIVIDADE E DISPOSITIVOS MÓVEIS (CELULAR/TABLET)
   12. ANIMAÇÕES (SCROLL REVEAL)
   ========================================================================== */


/* ==========================================================================
   01. VARIÁVEIS E CORES (PALETA DE CORES CORPORATIVA)
   Dica para alteração: Para mudar a cor principal do site, edite --navy-800 e --navy-600
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Tons Principais da Empresa (Azul Marinho Naval) */
  --navy-900: #151D2E; /* Cor mais escurecida (Títulos H1 a H6 e tipografia principal) */
  --navy-800: #2C3A5C; /* Cor Primária (Headers, footers, menus, blocos de destaque, botões primários) */
  --navy-700: #24314e;
  --navy-600: #1E2840; /* Hover de links/botões Primários */
  --navy-500: #2C3A5C;
  --navy-400: #3D507D; /* Cor de detalhes azuis */
  --navy-300: #5c72a8;
  --navy-200: #9cb0dc;
  --navy-100: #d1dcfa;
  --navy-50:  #F0F4F8; /* Fundo de ícones e cards suaves */

  /* Tons Neutros (Fundos, Bordas, Textos) */
  --white: #ffffff;
  --gray-50:  #FFFFFF; /* Fundo Principal (Background geral do site e cards) */
  --gray-100: #F0F4F8; /* Fundo Secundário (Seções de contraste leve, fundos de formulário) */
  --gray-200: #e2e6ed; /* Cor das bordas e divisórias */
  --gray-300: #c8cdd8;
  --gray-400: #9ca3b3;
  --gray-500: #475569; /* Corpo de Texto (Parágrafos e descrições) */
  --gray-600: #475569; /* Corpo de Texto (Parágrafos e descrições) */
  --gray-700: #334155;
  --gray-800: #1f2937;

  /* Cores de Destaque / Detalhe */
  --accent-blue: #F6B032; /* Cor Secundária / Destaque (Botões de CTA, ícones, badges) */
  --accent-cyan: #F6B032; /* Cor Secundária / Destaque */

  /* Espaçamentos e Estrutura */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Efeitos e Sombras */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16);

  /* Arredondamento de Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transições de Animação */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================================
   02. RESET E ESTILOS GERAIS DA PÁGINA
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy-900);
  background-color: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

img, video {
  display: block;
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color:var(--accent-blue)
}

.section-label svg {
  width: 18px;
  height: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
}


/* ==========================================================================
   03. BOTÕES E ELEMENTOS COMUNS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn-primary:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-orange {
  background: #F6B032;
  color: #ffffff;
  border-color: #F6B032;
}

.btn-orange:hover {
  background: #e5a022;
  border-color: #e5a022;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-white:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}


/* ==========================================================================
   04. SEÇÃO 01: CABEÇALHO (HEADER)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-medium);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  
}
@media(max-width: 768px){ .header-logo {justify-content: center; } } 
.header-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}


.header-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-medium);
}

.header-logo-text span {
  color: var(--accent-blue); /* Cor Secundária / Destaque */
  transition: color var(--transition-medium);
}

.header.scrolled .header-logo-text {
  color: var(--navy-900);
}

.header.scrolled .header-logo-text span {
  color: var(--navy-600);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.header-nav a {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: black;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--navy-800);
  background: var(--gray-300);
  box-shadow: var(--shadow-sm);
}

/* Dropdown Menu no Header (QSMS) */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  padding: 8px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  color: black;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle:focus {
  color: var(--navy-800);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 270px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 120px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
  transition: all var(--transition-fast);
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-blue);
  color: var(--white);
  padding-left: 24px;
  box-shadow: none;
}

/* Ocultar elementos exclusivos do drawer mobile no desktop */
.nav-mobile-cta,
.nav-mobile-lang {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 19px;
  border-radius: 3px;
  overflow: hidden;
  transition: all var(--transition-fast);
  opacity: 0.45;
  filter: grayscale(40%);
}

.lang-flag:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.lang-flag.active {
  opacity: 1;
  filter: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.96rem;
  white-space: nowrap;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header.scrolled .menu-toggle {
  background: rgba(44, 58, 92, 0.1);
  border-color: rgba(44, 58, 92, 0.2);
}

.header.scrolled .menu-toggle:hover {
  background: rgba(44, 58, 92, 0.18);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.header.scrolled .menu-toggle span,
.menu-toggle.open span {
  background: var(--navy-900);
}

.menu-toggle.open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay escuro por trás do menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Bloquear scroll da página quando menu aberto */
html.menu-open,
body.menu-open {
  overflow: hidden;
}


/* ==========================================================================
   05. SEÇÃO 02: DESTAQUE PRINCIPAL (HERO)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Camada escura de contraste sobre as imagens do carrossel */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.15) 0%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.75) 75%,
    rgba(10, 22, 40, 0.92) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Setas do carrossel */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* Indicadores / Bolinhas do carrossel */
.carousel-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 6px;
}


.hero .container {
  position: relative;
  z-index: 1;
  align-self: center;
  pointer-events: none; /* Permite que cliques nas áreas vazias passem para as setas do carrossel */
  width: 100%;
}

.hero-content {
  pointer-events: auto;/* Mantém os botões do hero clicáveis */
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center; 
  flex-direction: column;
}


.hero-title {
  font-size: clamp(2.5rem, 3.5vw, 3.75rem);
    line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
 
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.hero-scroll svg {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


/* ==========================================================================
   06. SEÇÃO 03: QUEM SOMOS
   ========================================================================== */
.about {
  padding: var(--section-padding);
  background: var(--gray-100);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-text .stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  text-align: left;
  
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-600);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}


/* ==========================================================================
   07. SEÇÃO 04: MISSÃO, VISÃO E VALORES (PILARES)
   ========================================================================== */
.mvv {
  padding: var(--section-padding);
  background: var(--white);
}

.mvv .container {
  text-align: center;
}

.mvv .section-title {
  margin-bottom: 60px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mvv-card {
  position: relative;
  padding: 48px 36px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: left;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F6B032, #D99621);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

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

.mvv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--navy-600);
  transition: all var(--transition-medium);
}

.mvv-card:hover .mvv-icon {
  background: var(--navy-600);
  color: var(--white);
}

.mvv-icon svg {
  width: 28px;
  height: 28px;
}

.mvv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ==========================================================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ========================================================================== */
.areas-atuacao {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--navy-800) 0%, #1E2840 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.areas-atuacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.areas-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.areas-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.areas-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  font-weight: 400;
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.area-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.area-card:hover::after {
  opacity: 1;
}

.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.area-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(246, 176, 50, 0.15);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.area-card:hover .area-icon {
  background: #D99621;
  color: var(--navy-900);
  transform: scale(1.08);
}

.area-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
}

.area-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}

.area-card p {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0;
}

.area-span-2 {
  grid-column: span 2;
}

.area-span-3 {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-span-2,
  .area-span-3 {
    grid-column: span 1;
  }
  .area-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .areas-atuacao {
    padding: 70px 0;
  }
  .areas-title {
    font-size: 1.85rem;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .area-span-2,
  .area-span-3,
  .area-card:nth-child(5) {
    grid-column: span 1;
  }
}


/* ==========================================================================
   08. SEÇÃO 05: SERVIÇOS E FROTA
   ========================================================================== */
.services {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

#canvas-servicos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .header-area {
  text-align: center;
  margin-bottom: 64px;
}

.services .section-subtitle {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-100);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.4), transparent 60%);
  pointer-events: none;
}

.service-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-500);
  margin-top: auto;
  transition: all var(--transition-fast);
}

.service-card:hover .service-link,
.service-link:hover {
  color: var(--navy-700);
  gap: 10px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg,
.service-link:hover svg {
  transform: translateX(4px);
}


/* ==========================================================================
   09. SEÇÃO 06: CTA E FORMULÁRIO DE CONTATO
   ========================================================================== */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  background: var(--navy-800);
  box-shadow: var(--shadow-xl);
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  color: var(--white);
}

.cta-content .section-label {
  color: var(--navy-200);
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.cta-content .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-form-wrapper {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--navy-300);
  background: rgba(255, 255, 255, 0.12);
}

.cta-form textarea {
  resize: vertical;
  min-height: 90px;
}

.cta-form .btn {
  align-self: flex-start;
  margin-top: 4px;
}


/* ==========================================================================
   10. SEÇÃO 07: RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background: var(--navy-800);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media(max-width: 768px){ .footer-brand {align-items: center;}} 
.footer-brand .header-logo {
  gap: 10px;
}

.footer-brand .header-logo img {
  width: 200px;
  height: 100px;
}

.footer-brand .header-logo-text {
  color: var(--white);
}

.footer-brand .header-logo-text span {
  color: var(--navy-300);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: all var(--transition-medium);
}

.footer-social a:hover {
  background: #f59e0b;
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.35);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.footer-social a:hover svg {
  transform: scale(1.1);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.footer-contact-item svg,
.footer-contact p svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact-item:hover,
.footer-contact p:hover {
  color: var(--white);
}

.footer-contact-item:hover svg,
.footer-contact p:hover svg {
  transform: scale(1.18);
  color: #fbbf24;
}

.footer-contact-item p {
  font-size: 0.9375rem;
  color: inherit;
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: center;
}

.footer-bottom a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-bottom p a:hover {
  color: var(--white);
}


/* ==========================================================================
   11. RESPONSIVIDADE E DISPOSITIVOS MÓVEIS (CELULAR/TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    order: -1;
  }

  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .mvv-card:nth-child(3) {
    grid-column: span 2;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1080px) {
  /* ── DRAWER LATERAL MOBILE ────────────────────────────────── */
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-left: 1px solid var(--gray-200);
    border-radius: 0;
    padding: 0;
    z-index: 999;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.38s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 48px rgba(10, 22, 40, 0.18);
  }

  .header-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* Cabeçalho interno do drawer */
  .header-nav::before {
    content: '';
    display: block;
    height: 72px;
    flex-shrink: 0;
  }

  /* Área de links do drawer */
  .header-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: 16px 28px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
    white-space: normal;
    background: none;
    box-shadow: none;
  }

  .header-nav > a:first-of-type {
    border-top: 1px solid var(--gray-200);
  }

  .header-nav a:hover,
  .header-nav a.active {
    color: var(--navy-800);
    background: var(--gray-100);
    padding-left: 36px;
    box-shadow: none;
  }

  /* Separador e CTA dentro do drawer */
  .nav-mobile-cta {
    margin: 24px 24px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nav-mobile-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 24px !important;
    border-radius: var(--radius-md) !important;
    background: var(--navy-800) !important;
    color: var(--white) !important;
    border: 2px solid var(--navy-800) !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .nav-mobile-cta .btn-primary:hover {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    color: var(--navy-900) !important;
    padding-left: 24px !important; /* evita que o botão deslize para o lado como os links do menu */
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-2px);
  }

  /* Seletor de idioma no drawer */
  .nav-mobile-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
  }

  .nav-mobile-lang span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .nav-mobile-lang .lang-flag {
    width: 32px !important;
    height: 22px !important;
    min-width: 32px !important;
    min-height: 22px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15) !important;
    border-radius: 2px !important;
  }
  
  .nav-mobile-lang .lang-flag:hover,
  .nav-mobile-lang .lang-flag.active {
    background: none !important;
    padding-left: 0 !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2) !important;
  }

  /* Dropdown QSMS no drawer */
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: 16px 28px;
    border-radius: 0;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 32px;
    background: transparent;
  }

  .dropdown-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: var(--navy-900);
    padding: 0;
    margin: 0;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
  }

  .nav-dropdown-menu a {
    display: block;
    width: 100%;
    height: auto !important;
    padding: 15px 32px 15px 44px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    white-space: normal;
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    background: var(--accent-blue);
    color: var(--navy-900);
    padding-left: 52px;
  }

  /* Overlay */
  .nav-overlay {
    display: block;
  }

  /* Header actions no mobile */
  .header-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .lang-selector {
    padding: 3px 6px;
  }

  .lang-flag {
    width: 24px;
    height: 16px;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
  }

  body {
    overflow-x: hidden;
  }

  /* 1. Sticky Header Compacto no Mobile */
  .header {
    padding: 10px 0;
  }

  .header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  }

  .header-logo img {
    width: 48px;
    height: 48px;
  }

  .header-logo-text {
    font-size: 1rem;
  }

  /* 2. Touch Targets (44x44px mínimo e ergonomia touch) */
  .btn, .service-link, .nav-dropdown-toggle, .header-nav a, .footer-links a, .footer-bottom a, .carousel-arrow {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
  }

  .btn {
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  .footer-links li a {
    padding: 8px 0;
    width: 100%;
  }

  /* 3. Estrutura de Layout e Grids (Harmonia para 1 coluna) */
  .hero {
    min-height: 85vh;
    padding-bottom: 48px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mvv-card:nth-child(3) {
    grid-column: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 4. Tipografia Escalonada e Alinhamento Centrado */
  .hero-content {
    text-align: center;
  }

  .hero-title, h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 28px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .section-title, h2 {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    text-align: center;
    margin-bottom: 24px;
  }

  .section-subtitle {
    text-align: center;
    margin: 0 auto 32px;
  }

  h3, .card-title {
    font-size: 1.125rem;
  }

  p, .section-subtitle, .about-text p, .service-card-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  input, select, textarea {
    font-size: 16px !important;
    min-height: 48px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-indicators { bottom: 48px; }

  .hero-scroll {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-text .stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .cta-content {
    padding: 32px 20px;
  }

  .cta-form-wrapper {
    padding: 0 20px 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact-item {
    flex-direction: column;
    align-items: center !important;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* ==========================================================================
   12. ANIMAÇÕES DE SCROLL E EFEITOS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

/* Barra de rolagem customizada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-600); }


/* ==========================================================================
   13. PÁGINA INTERNA: QUEM SOMOS (ESTILOS DEDICADOS)
   ========================================================================== */
.inner-page {
  background: var(--gray-50);
}

.page-header {
  position: relative;
  padding: 160px 0 100px;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.82) 100%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  letter-spacing: -0.03em;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-200);
  line-height: 1.6;
}

/* Trajetória & Expertise */
.about-detailed {
  padding: var(--section-padding);
  background: var(--white);
}

.about-detailed-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-block p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-block p.lead-text {
  font-size: 1.2rem;
  color: var(--navy-900);
  font-weight: 500;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  background: var(--gray-100);
  padding: 20px 16px;
  width: 100%;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
}

.media-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.media-badge span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-200);
  display: block;
  margin-bottom: 4px;
}

.media-badge strong {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Propósito & Direção */
.purpose-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.header-area {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.purpose-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.purpose-card::top {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy-800), var(--navy-500));
}

.purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-300);
}

.purpose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.purpose-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-icon svg {
  width: 28px;
  height: 28px;
}

.purpose-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--navy-50);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.purpose-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.purpose-quote {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}

/* Nossos Valores */
.values-section {
  padding: var(--section-padding);
  background: var(--navy-900);
  color: var(--white);
}

.values-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.values-header .section-title {
  color: var(--white);
}

.values-header .section-subtitle {
  color: var(--gray-300);
  margin-inline: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.value-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: var(--navy-400);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(246, 176, 50, 0.25);
}

.value-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0;
  transition: opacity var(--transition-fast);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-box:hover::after {
  opacity: 1;
}

.value-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-blue);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;

}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.value-box p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* Banner de CTA no final de Quem Somos */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.cta-banner-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 650px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Responsividade de Quem Somos */
@media (max-width: 1024px) {
  .about-detailed-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 130px 0 60px;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   14. PÁGINA INTERNA: NOSSA FROTA (GRID DE NAVIOS)
   ========================================================================== */

.frota.section-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fleet-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.fleet-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

/* Grid Responsivo: 3 colunas no Desktop */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Estrutura do Card de Navio */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

/* Efeito sutil de hover nos cards (elevação e borda) */
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-300);
}

.fleet-card-media {
  position: relative;
  width: 100%;
  height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
}

/* Imagem com object-fit cover e zoom suave no hover */
.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.fleet-card-media img.img-align-left {
  object-position: left;
}

.fleet-card:hover .fleet-card-media img {
  transform: scale(1.08);
}

.fleet-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
  z-index: 2;
}

.fleet-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.fleet-card-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-600);
  background: var(--navy-50);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Tipografia forte (bold) no nome do navio */
.fleet-ship-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.fleet-ship-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.fleet-card-footer {
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #059669;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.fleet-status.lay-up {
  color: #ea580c;
}

.status-dot.lay-up {
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Card CTA para Expansão da Frota */
.fleet-card-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, #1E2840 100%);
  color: var(--white);
  border: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fleet-cta-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.fleet-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
}

.fleet-cta-icon svg {
  width: 32px;
  height: 32px;
}

.fleet-cta-inner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.fleet-cta-inner p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Breakpoints do Grid: 2 colunas no Tablet, 1 coluna no Mobile */
@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .fleet-card-media {
    height: 240px;
  }
}

.btn-more-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--navy-50);
  transition: all var(--transition-fast);
}

.btn-more-info:hover {
  background: var(--accent-blue);
  color: var(--navy-900);
}

/* ==========================================================================
   15. PÁGINA DE DETALHES DO NAVIO (DATA-SHEET TÉCNICO)
   ========================================================================== */
.ship-detail-header {
  position: relative;
  padding: 140px 0 80px;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.ship-detail-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}

.ship-detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ship-detail-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-900) 40%, rgba(10, 22, 40, 0.7) 100%);
  z-index: 1;
}

.ship-detail-container {
  position: relative;
  z-index: 2;
}

/* Breadcrumbs limpos */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy-200);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--accent-blue);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.breadcrumbs a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--accent-blue);
  font-weight: 600;
}

.ship-detail-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ship-detail-title-info h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ship-detail-subtitle {
  font-size: 1.15rem;
  color: var(--navy-200);
}

.ship-header-image {
  width: 480px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
  position: relative;
}

.ship-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carrossel interativo com passagem automática */
.ship-img-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.ship-img-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

.ship-img-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ship-img-carousel .carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Setas de navegação */
.ship-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 20, 40, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  backdrop-filter: blur(4px);
}

.ship-img-carousel:hover .ship-carousel-arrow {
  opacity: 1;
}

.ship-carousel-arrow:hover {
  background: rgba(246, 176, 50, 0.75);
}

.ship-carousel-arrow svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ship-carousel-prev { left: 8px; }
.ship-carousel-next { right: 8px; }

/* Dots indicadores */
.ship-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
}

.ship-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  padding: 0;
}

.ship-carousel-dot.active {
  background: var(--gold, #F6B032);
  transform: scale(1.3);
}

/* Barra de progresso automática */
.ship-carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold, #F6B032);
  z-index: 10;
  transition: none;
}

.ship-carousel-progress.running {
  transition: width 4s linear;
  width: 100%;
}

/* Grid de Especificações (2 Blocos lado a lado em Desktop) */
.specs-section {
  padding: var(--section-padding);
  background: var(--white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.spec-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.spec-block-header {
  background: var(--navy-900);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-block-header svg {
  color: var(--gold);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.spec-block-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

/* Lista zebrada leve estilo data-sheet */
.spec-list {
  display: flex;
  flex-direction: column;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition-fast);
}

.spec-item:last-child {
  border-bottom: none;
}

/* Zebrado suave */
.spec-item:nth-child(even) {
  background: var(--gray-100);
}

.spec-item:hover {
  background: var(--navy-50);
}

/* Rótulo em negrito e azul marinho */
.spec-label {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
  padding-right: 16px;
}

/* Valor em peso normal e cinza escuro */
.spec-value {
  font-weight: 400;
  color: var(--gray-700);
  font-size: 0.95rem;
  text-align: right;
  font-family: 'Inter', sans-serif;
}

/* Botões de Ação no Rodapé do Navio */
.ship-detail-footer {
  padding: 40px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ship-detail-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ship-header-image {
    width: 100%;
    height: 240px;
  }
  .ship-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .ship-detail-footer .btn {
    width: 100%;
    justify-content: center;
  }
  .spec-item {
    flex-direction: column;
    gap: 4px;
  }
  .spec-value {
    text-align: left;
    font-weight: 600;
  }
}

::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }


/* ==========================================================================
   15. PÁGINA INTERNA: RESPONSABILIDADE SOCIAL (CSR)
   Dica de alteração: Estilos exclusivos da página Responsabilidade Social.
   Usa toques de verde para remeter à sustentabilidade.
   ========================================================================== */

/* --- Variáveis de cor verdes para a página CSR --- */
:root {
  --csr-green-900: #064e3b;
  --csr-green-800: #065f46;
  --csr-green-700: #047857;
  --csr-green-600: #059669;
  --csr-green-500: #10b981;
  --csr-green-400: #34d399;
  --csr-green-300: #6ee7b7;
  --csr-green-200: #a7f3d0;
  --csr-green-100: #d1fae5;
  --csr-green-50:  #ecfdf5;
  --csr-green-light: #a7f3d0;
}

/* --- Hero verde sutil --- */
.csr-hero .page-header-bg::after {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(6, 78, 59, 0.72) 100%
  );
}

/* --- Seção Nossos Compromissos --- */
.csr-commitments {
  padding: var(--section-padding);
  background: var(--white);
}

.csr-section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.csr-section-header .section-subtitle {
  margin: 0 auto;
}

/* Grid de Cards 3x2 */
.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card individual */
.csr-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.csr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--csr-green-500));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.csr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--csr-green-300);
}

.csr-card:hover::before {
  opacity: 1;
}

/* Ícone do Card */
.csr-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-medium);
}

.csr-card-icon svg {
  width: 28px;
  height: 28px;
}

/* Cores dos ícones por tipo */
.csr-icon-protection {
  background: linear-gradient(135deg, var(--navy-50), #e0e7ff);
  color: var(--navy-700);
}

.csr-icon-equality {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.csr-icon-transparency {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #3730a3;
}

.csr-icon-safety {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

.csr-icon-environment {
  background: linear-gradient(135deg, var(--csr-green-100), var(--csr-green-200));
  color: var(--csr-green-800);
}

.csr-icon-equity {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
}

.csr-card:hover .csr-card-icon {
  transform: scale(1.1);
}

.csr-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.csr-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Seção Meio Ambiente --- */
.csr-environment {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.csr-env-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 56px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.csr-env-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--csr-green-500), var(--navy-600));
  border-radius: 6px 0 0 6px;
}

.csr-env-icon-wrapper {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--csr-green-50), var(--csr-green-100));
  border: 2px solid var(--csr-green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--csr-green-700);
}

.csr-env-icon-wrapper svg {
  width: 52px;
  height: 52px;
}

.csr-env-content {
  flex: 1;
}

.csr-env-content .section-label {
  color: var(--csr-green-700);
}

.csr-env-text {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 680px;
}

.csr-env-highlights {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.csr-env-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
}

.csr-env-highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--csr-green-600);
  flex-shrink: 0;
}

/* --- Seção Transparência / CTA --- */
.csr-transparency {
  padding: 0 0 120px;
  background: var(--gray-50);
}

.csr-cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--csr-green-900) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.csr-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.csr-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 108, 184, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.csr-cta-content {
  position: relative;
  z-index: 1;
}

.csr-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.csr-cta-icon svg {
  width: 32px;
  height: 32px;
  color: var(--csr-green-300);
}

.csr-cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.csr-cta-content p {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.csr-cta-actions {
  display: flex;
  justify-content: center;
}

/* Botão de ação verde / CSR */
.btn-csr-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--csr-green-500), var(--csr-green-600));
  color: var(--white);
  border-color: var(--csr-green-500);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-csr-primary:hover {
  background: linear-gradient(135deg, var(--csr-green-400), var(--csr-green-500));
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.45);
}

.btn-csr-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-csr-primary:hover svg {
  transform: translateY(2px);
}


/* --- Responsividade CSR --- */
@media (max-width: 1024px) {
  .csr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .csr-env-block {
    padding: 48px 40px;
    gap: 40px;
  }

  .csr-cta-banner {
    padding: 56px 40px;
  }
}

@media (max-width: 768px) {
  .csr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .csr-card {
    padding: 32px 24px 28px;
  }

  .csr-env-block {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
    gap: 28px;
  }

  .csr-env-block::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    border-radius: 24px 24px 0 0;
  }

  .csr-env-icon-wrapper {
    width: 96px;
    height: 96px;
  }

  .csr-env-icon-wrapper svg {
    width: 40px;
    height: 40px;
  }

  .csr-env-highlights {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .csr-cta-banner {
    padding: 48px 24px;
  }

  .btn-csr-primary {
    font-size: 0.9rem;
    padding: 14px 24px;
  }

  .csr-transparency {
    padding: 0 0 80px;
  }
}


/* ==========================================================================
   16. PÁGINA INTERNA: FALE CONOSCO (CONTACT PAGE)
   Dica de alteração: Estilos exclusivos da página Fale Conosco.
   Formulário moderno com validação visual e layout de 2 colunas.
   ========================================================================== */

/* --- Seção principal de contato --- */
.contact-main {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* --- Coluna Esquerda: Informações de contato --- */
.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header .section-title {
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  margin-bottom: 16px;
  transition: all var(--transition-medium);
}

.contact-item:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact-item-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-item-content a {
  color: var(--navy-600);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-item-content a:hover {
  color: var(--navy-400);
}

.contact-item-detail {
  font-size: 0.8rem;
  color: var(--csr-green-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* WhatsApp Item especial */
.contact-item-whatsapp {
  border-color: #dcfce7;
  background: #f0fdf4;
}

.contact-item-whatsapp:hover {
  border-color: #86efac;
}

.contact-icon-whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: #25d366;
  color: var(--white);
  transition: all var(--transition-fast);
}

.btn-whatsapp-inline:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-whatsapp-inline svg {
  width: 16px;
  height: 16px;
}


/* --- Coluna Direita: Card do Formulário --- */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--navy-400));
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy-900);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 77, 140, 0.08);
}

/* Validação visual ao submeter */
.form-submitted .form-group input:invalid,
.form-submitted .form-group select:invalid,
.form-submitted .form-group textarea:invalid {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-submitted .form-group input:invalid:focus,
.form-submitted .form-group select:invalid:focus,
.form-submitted .form-group textarea:invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Select customizado */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botão de envio */
.btn-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Disclaimer abaixo do botão */
.form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
}

.form-disclaimer svg {
  color: var(--gray-400);
  flex-shrink: 0;
}


/* --- Seção do Mapa --- */
.contact-map {
  background: var(--gray-50);
}

.contact-map-header {
  padding: 80px 0 40px;
  text-align: center;
}

.contact-map-header .section-label {
  justify-content: center;
}

.contact-map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}


/* --- WhatsApp Floating Action Button (FAB) --- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: scale(0.7) translateY(20px);
  pointer-events: none;
}

.whatsapp-fab.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* Pulse animation */
.whatsapp-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: whatsapp-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}


/* --- Responsividade Contact --- */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 80px 0;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .contact-map-wrapper {
    height: 320px;
  }

  .contact-map-header {
    padding: 60px 0 28px;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}


/* ==========================================================================
   14. PÁGINA AUTORIDADE DE PARAR O TRABALHO (APT / SMS)
   ========================================================================== */

/* Hero APT */
.apt-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10, 22, 40, 0.78), rgba(10, 22, 40, 0.88)), url('assets/images/apt-hero.png') center/cover no-repeat;
  padding: 140px 0 50px;  
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.apt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ea580c, #f59e0b, #10b981, var(--navy-500));
}

.apt-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.apt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.apt-badge svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.apt-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  text-align: left;
}

.apt-hero-quote {
  background: rgba(15, 32, 60, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.apt-hero-quote p {
  font-size: 1.22rem;
  color: var(--gray-100);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
  text-align: left;
}

/* Seção Principal: O Poder e a Obrigação */
.apt-obligation {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.apt-obligation-container {
  max-width: 960px;
  margin: 0 auto;
}

.apt-obligation-box {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.apt-stop-icon-wrapper {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
  margin-bottom: 32px;
  transform: rotate(-4deg);
  transition: transform var(--transition-medium);
}

.apt-obligation-box:hover .apt-stop-icon-wrapper {
  transform: rotate(0deg) scale(1.06);
}

.apt-stop-icon-wrapper svg {
  width: 46px;
  height: 46px;
}

.apt-obligation-text {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 820px;
}

.apt-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--navy-50);
  border: 1.5px dashed var(--navy-400);
  border-radius: var(--radius-md);
  color: var(--navy-800);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-end;
}

.apt-doc-badge svg {
  width: 18px;
  height: 18px;
  color: var(--navy-600);
}

/* Seção do Processo em 4 Passos */
.apt-process {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.apt-process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.apt-process-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.apt-process-intro {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.apt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.apt-step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.apt-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.apt-step-card.step-1::before { background: #ef4444; }
.apt-step-card.step-2::before { background: #f59e0b; }
.apt-step-card.step-3::before { background: #3b82f6; }
.apt-step-card.step-4::before { background: #10b981; }

.apt-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.apt-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.apt-step-number {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: monospace;
  line-height: 1;
}

.step-1 .apt-step-number { color: rgba(239, 68, 68, 0.25); }
.step-2 .apt-step-number { color: rgba(245, 158, 11, 0.28); }
.step-3 .apt-step-number { color: rgba(44, 58, 92, 0.25); }
.step-4 .apt-step-number { color: rgba(16, 185, 129, 0.25); }

.apt-step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-1 .apt-step-icon { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.step-2 .apt-step-icon { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.step-3 .apt-step-icon { background: rgba(44, 58, 92, 0.15); color: var(--navy-800); }
.step-4 .apt-step-icon { background: rgba(16, 185, 129, 0.12); color: #10b981; }

.apt-step-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.apt-step-card p {
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .apt-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .apt-hero h1 {
    font-size: 2.2rem;
  }
  .apt-hero-quote {
    padding: 24px;
  }
  .apt-hero-quote p {
    font-size: 1.05rem;
  }
  .apt-obligation-box {
    padding: 36px 24px;
  }
  .apt-obligation-text {
    font-size: 1.18rem;
  }
  .apt-doc-badge {
    align-self: center;
  }
  .apt-steps-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   15. PÁGINA PRINCÍPIOS ÉTICOS (ETHICS)
   ========================================================================== */

/* Hero 50/50 Section */
.ethics-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #0f1d36 60%, #172a4d 100%);
  padding: 130px 0 80px;
  color: var(--white);
  overflow: hidden;
}

.ethics-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ethics-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.ethics-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.ethics-hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.ethics-hero-text h1 span {
  color: #f59e0b;
}

.ethics-hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 400;
}

/* Coluna Direita (Imagem Corporativa com Acentos Geométricos) */
.ethics-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ethics-media-wrapper {
  position: relative;
  z-index: 2;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.ethics-media-wrapper img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Acentos Geométricos de Fundo remetendo à identidade */
.ethics-media-shape-navy {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 75%;
  height: 45%;
  background: #1e3a6a;
  border-radius: 16px;
  z-index: 1;
  opacity: 0.8;
}

.ethics-media-shape-mustard {
  position: absolute;
  bottom: -16px;
  left: 10%;
  width: 60%;
  height: 24px;
  background: #f59e0b;
  border-radius: 8px;
  z-index: 3;
}


/* Seção dos 8 Princípios */
.ethics-principles-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.ethics-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.ethics-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.ethics-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.ethics-section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Grid 2 colunas no desktop */
.ethics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Cartão Individual de Princípio */
.ethics-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 36px 32px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ethics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0a1628, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ethics-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 22, 40, 0.09);
  border-color: rgba(245, 158, 11, 0.4);
}

.ethics-card:hover::before {
  opacity: 1;
}

.ethics-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--gray-200);
  padding-bottom: 16px;
}

.ethics-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #f59e0b;
  font-family: 'Inter', sans-serif;
  letter-spacing: -1px;
  line-height: 1;
}

.ethics-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-800);
  background: rgba(10, 22, 40, 0.06);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.ethics-text {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

/* Rodapé Normativo */
.ethics-doc-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  padding-top: 24px;
}

.ethics-doc-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
  color: #f59e0b;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  border-left: 5px solid #f59e0b;
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}

/* --- Responsividade Ethics --- */
@media (max-width: 992px) {
  .ethics-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .ethics-hero-subtitle {
    margin: 0 auto;
  }

  .ethics-media-wrapper img {
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .ethics-hero {
    padding: 110px 0 60px;
  }

  .ethics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ethics-card {
    padding: 28px 24px;
  }

  .ethics-doc-wrapper {
    justify-content: center;
  }
}


/* ==========================================================================
   15. PÁGINA INSTITUCIONAL: POLÍTICA DE QSMS
   ========================================================================== */
.qsms-hero {
  position: relative;
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

.qsms-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.qsms-hero-text h1 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 24px;
}

.qsms-hero-text h1 span {
  color: #f59e0b;
}

.qsms-hero-intro {
  font-size: 1.08rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin: 0;
}

.qsms-hero-media {
  position: relative;
}

.qsms-media-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.25);
  border: 4px solid var(--white);
  height: 480px;
}

.qsms-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Seção Principal de Compromissos */
.qsms-commitments-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.qsms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.qsms-item {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.qsms-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(10, 22, 40, 0.1);
  border-color: #f59e0b;
  background: var(--white);
}

.qsms-check-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(10, 22, 40, 0.15);
  transition: transform 0.3s ease;
}

.qsms-item:hover .qsms-check-icon {
  transform: scale(1.1);
  background: #f59e0b;
  color: var(--navy-900);
}

.qsms-check-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 3px;
}

.qsms-item-text {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
}

/* Rodapé Normativo */
.qsms-doc-stamp-wrapper {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.qsms-doc-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f1f5f9;
  border: 2px solid var(--navy-900);
  border-left: 8px solid #f59e0b;
  color: var(--navy-900);
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(10, 22, 40, 0.08);
  letter-spacing: 0.5px;
}

.qsms-doc-stamp svg {
  color: #f59e0b;
  width: 24px;
  height: 24px;
}

/* Responsividade QSMS */
@media (max-width: 992px) {
  .qsms-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qsms-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .qsms-hero {
    padding: 110px 0 60px;
  }
  .qsms-hero-text h1 {
    font-size: 2.2rem;
  }
  .qsms-media-wrapper {
    height: 340px;
  }
  .qsms-item {
    padding: 24px 20px;
  }
  .qsms-doc-stamp {
    font-size: 0.9rem;
    padding: 14px 20px;
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   16. PÁGINA INSTITUCIONAL: POLÍTICA DE ÁLCOOL, DROGAS E TABACO
   ========================================================================== */
.adt-hero {
  position: relative;
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.adt-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.adt-hero-text h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 24px;
}

.adt-hero-text h1 span {
  color: #f59e0b;
}

.adt-hero-intro {
  font-size: 1.08rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin: 0;
}

.adt-media-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.25);
  border: 4px solid var(--white);
  height: 480px;
}

.adt-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Seção de Diretrizes (Cards Temáticos) */
.adt-guidelines-section {
  padding: 100px 0;
  background: var(--white);
}

.adt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.adt-card {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.adt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(10, 22, 40, 0.12);
  border-color: #f59e0b;
  background: var(--white);
}

.adt-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--gray-200);
}

.adt-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(10, 22, 40, 0.15);
  transition: transform 0.3s ease;
}

.adt-card:hover .adt-icon-box {
  transform: scale(1.08);
  background: #f59e0b;
  color: var(--navy-900);
}

.adt-icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2px;
}

.adt-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.35;
}

.adt-card-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
}

/* Responsividade ADT */
@media (max-width: 992px) {
  .adt-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .adt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .adt-hero {
    padding: 110px 0 60px;
  }
  .adt-hero-text h1 {
    font-size: 2.1rem;
  }
  .adt-media-wrapper {
    height: 360px;
  }
  .adt-card {
    padding: 28px 22px;
  }
}


/* ==========================================================================
   17. PÁGINA INSTITUCIONAL: PROGRAMA DE GESTÃO AMBIENTAL (Z-PATTERN)
   ========================================================================== */

/* Hero Minimalista e Impactante */
.pga-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: 160px 0 100px;
  overflow: hidden;
  border-bottom: 4px solid #f59e0b;
}

.pga-hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.pga-hero-content h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pga-hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #f59e0b;
  font-weight: 400;
  line-height: 1.6;
}

/* Transição Visual de Imagem */
.pga-hero-transition {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.pga-hero-transition img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Bloco de Manifesto Centralizado */
.pga-manifesto-section {
  background: #ffffff;
  padding: 90px 0 70px;
}

.pga-manifesto-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.pga-manifesto-box::before {
  content: '“';
  font-size: 6rem;
  font-family: serif;
  color: rgba(245, 158, 11, 0.25);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.pga-manifesto-text {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Seções Intercaladas (Z-Pattern Zig-Zag) */
.pga-zigzag-section {
  position: relative;
  overflow: hidden;
}

.pga-zigzag-row {
  padding: 90px 0;
  display: flex;
  align-items: center;
}

.pga-bg-white {
  background: #ffffff;
}

.pga-bg-light {
  background: #f8f9fa;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.pga-zigzag-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.pga-zigzag-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.pga-zigzag-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 14px;
}

.pga-zigzag-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #f59e0b;
  border-radius: 2px;
}

.pga-zigzag-content p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin: 0;
}

.pga-zigzag-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pga-visual-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 2px dashed rgba(245, 158, 11, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(10, 22, 40, 0.06);
  transition: all 0.4s ease;
}

.pga-zigzag-visual:hover .pga-visual-circle {
  transform: scale(1.05);
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}

.pga-visual-circle svg {
  width: 100px;
  height: 100px;
  color: var(--navy-900);
  stroke-width: 1.6px;
  transition: transform 0.4s ease;
}

.pga-zigzag-visual:hover .pga-visual-circle svg {
  transform: scale(1.08);
}

/* Rodapé de Controle (Call-out Block) */
.pga-control-footer {
  background: #f59e0b;
  color: var(--navy-900);
  padding: 80px 0;
  text-align: center;
}

.pga-control-box {
  max-width: 760px;
  margin: 0 auto;
}

.pga-control-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--navy-900);
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(10, 22, 40, 0.25);
}

.pga-control-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.2px;
}

.pga-control-box h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.pga-control-box p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.7;
  margin: 0;
}

/* Responsividade Z-Pattern */
@media (max-width: 992px) {
  .pga-zigzag-grid,
  .pga-zigzag-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pga-zigzag-grid.reverse .pga-zigzag-visual {
    order: -1; /* Coloca o ícone por cima no mobile */
  }

  .pga-zigzag-visual {
    order: -1; /* Coloca o ícone por cima no mobile */
  }
}

@media (max-width: 768px) {
  .pga-hero {
    padding: 130px 0 60px;
  }
  .pga-hero-transition img {
    max-height: 300px;
  }
  .pga-manifesto-section {
    padding: 60px 0 40px;
  }
  .pga-zigzag-row {
    padding: 60px 0;
  }
  .pga-visual-circle {
    width: 200px;
    height: 200px;
  }
  .pga-visual-circle svg {
    width: 80px;
    height: 80px;
  }
  .pga-control-footer {
    padding: 60px 0;
  }
  .pga-control-box h2 {
    font-size: 1.7rem;
  }
}


/* ==========================================================================
   18. PÁGINA INSTITUCIONAL: RESPONSABILIDADE SOCIAL & ESG (EXEMPLO FIDEDIGNO)
   ========================================================================== */

/* 1. Hero Banner Full-width com Overlay Verde Esmeralda */
.rs-ex-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  background: url('assets/images/hero-slide-2.png') no-repeat center center/cover;
  overflow: hidden;
}

.rs-ex-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.88) 0%, rgba(15, 23, 42, 0.94) 100%);
  z-index: 1;
}

.rs-ex-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.rs-ex-badge {
  align-items: center;
  gap: 8px;
  color: #34d399;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.rs-ex-title {
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rs-ex-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 auto;
}

/* Hero Layout com Card ESG */
.rs-hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  width: 100%;
  pointer-events: auto;
}

.rs-hero-text {
  max-width: 600px;
}

.rs-hero-text .rs-ex-title,
.rs-hero-text .rs-ex-subtitle {
  text-align: left;
}

.rs-hero-text .rs-ex-subtitle {
  max-width: 100%;
  margin: 0;
}

.rs-hero-text .rs-ex-badge {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.rs-hero-box-wrapper {
  flex: 1 1 350px;
  display: flex;
  justify-content: flex-end;
}

.esg-report-card {
  background: rgba(44, 58, 92, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 440px;
  width: 100%;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {.esg-report-card {height: 80%;}}
.esg-report-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.esg-report-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  line-height: 1.3;
}

.esg-report-year {
  font-size: 3.5rem;
  font-weight: 800;
  color: #F6B032;
  line-height: 1;
  letter-spacing: -1.5px;
}

.esg-report-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.esg-report-btn {
  background: #F6B032;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(140, 198, 63, 0.2);
}

.esg-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.4);
}

/* 2. Seção Nossos Compromissos (Grid de 6 cards em 3 colunas) */
.rs-ex-guidelines {
  padding: 100px 0 60px;
  background: #ffffff;
}

.rs-ex-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.rs-ex-subbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.rs-ex-header-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.rs-ex-header-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

.rs-ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rs-ex-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.rs-ex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(16, 185, 129, 0.12);
  border-color: #10b981;
}

.rs-ex-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.rs-ex-card:hover .rs-ex-icon {
  transform: scale(1.08);
}

.rs-ex-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2px;
}

/* Cores específicas de cada um dos 6 boxes e ícones como nas fotos */
.rs-ex-icon.c1 { background: #eff6ff; color: #3b82f6; }
.rs-ex-icon.c2 { background: #fef3c7; color: #d97706; }
.rs-ex-icon.c3 { background: #e0e7ff; color: #4f46e5; }
.rs-ex-icon.c4 { background: #ffe4e6; color: #e11d48; }
.rs-ex-icon.c5 { background: #d1fae5; color: #059669; }
.rs-ex-icon.c6 { background: #f3e8ff; color: #9333ea; }

.rs-ex-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.rs-ex-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* 3. Card Grande "Em Harmonia com o Planeta" */
.rs-ex-harmonia {
  max-width: 1100px;
  margin: 30px auto 80px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 6px solid #10b981;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 48px;
}

.rs-ex-globe-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #059669;
}

.rs-ex-globe-circle svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.6px;
}

.rs-ex-harmonia-content {
  flex: 1;
}

.rs-ex-harmonia-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.rs-ex-harmonia-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.rs-ex-harmonia-content p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 24px;
}

.rs-ex-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-ex-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.rs-ex-checks li svg {
  color: #10b981;
  width: 18px;
  height: 18px;
  stroke-width: 3px;
  flex-shrink: 0;
}

/* 4. Card Escuro Relatório de Transparência Salarial */
.rs-ex-relatorio {
  max-width: 1100px;
  margin: 0 auto 100px;
  background: linear-gradient(135deg, #0a192f 0%, #064e3b 100%);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(6, 78, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.rs-ex-doc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #34d399;
}

.rs-ex-doc-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2px;
}

.rs-ex-relatorio h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.rs-ex-relatorio p {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.rs-ex-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #10b981;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.rs-ex-btn-green:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

/* Responsividade Exemplo RS */
@media (max-width: 992px) {
  .carousel-arrow {
    top: 330px;
    transform: translateY(-50%);
  }
  .rs-hero-layout {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 32px;
  }
  .rs-hero-text .rs-ex-title,
  .rs-hero-text .rs-ex-subtitle,
  .hero-title,
  .hero-subtitle {
    text-align: center;
  }
  .rs-hero-text .rs-ex-badge,
  .hero-actions {
    justify-content: center;
  }
  .rs-hero-box-wrapper {
    justify-content: center;
    width: 100%;
  }
  .rs-ex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rs-ex-harmonia {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 32px;
  }
  .rs-ex-checks {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .rs-ex-hero {
    min-height: 400px;
    padding: 120px 0 70px;
  }
  .rs-ex-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rs-ex-card {
    padding: 28px 24px;
  }
  .rs-ex-relatorio {
    padding: 42px 24px;
  }
}


/* ==========================================================================
   PÁGINA: AUTORIDADE DE PARAR O TRABALHO — DESIGN MINIMALISTA
   ========================================================================== */

/* HERO MINIMAL */
.apt-hero-minimal {
  background: var(--navy-900);
  padding: 100px 0 64px;
  color: var(--white);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--navy-300);
}

.breadcrumbs a {
  color: var(--navy-300);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--accent-blue); }

.apt-doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 176, 50, 0.12);
  border: 1px solid rgba(246, 176, 50, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.apt-minimal-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.apt-minimal-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* EDITORIAL LAYOUT */
.apt-editorial {
  padding: 80px 0;
  background: var(--white);
}

.apt-editorial-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.apt-text-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}

.apt-text-block:last-child { border-bottom: none; }

.apt-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--navy-900);
  font-weight: 400;
  margin: 0;
}

.apt-text-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0;
}

.apt-text-block strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ASIDE CARD */
.apt-editorial-aside {
  position: sticky;
  top: 100px;
}

.apt-aside-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  transition: all var(--transition-medium);
}

.apt-aside-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(246, 176, 50, 0.35);
}

.apt-aside-icon {
  width: 48px;
  height: 48px;
  background: rgba(246, 176, 50, 0.12);
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all var(--transition-medium);
}

.apt-aside-card:hover .apt-aside-icon {
  background: rgba(246, 176, 50, 0.2);
  border-color: #F6B032;
  color: #F6B032;
  box-shadow: 0 0 16px rgba(246, 176, 50, 0.4);
  transform: scale(1.08);
}

.apt-aside-icon svg { width: 22px; height: 22px; }

.apt-aside-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  transition: color var(--transition-medium);
}

.apt-aside-card:hover h3 {
  color: #F6B032;
}

.apt-aside-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--navy-200);
  margin: 0 0 24px;
}

.apt-aside-ref {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-200);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  transition: all var(--transition-medium);
}

.apt-aside-card:hover .apt-aside-ref {
  color: #F6B032;
  border-color: rgba(246, 176, 50, 0.3);
}

/* PROCESSO MINIMAL */
.apt-process-minimal {
  padding: 80px 0;
  background: #f8f9fb;
}

.apt-overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: left;
}
.apt-subtitle {
  text-align: left;
}
.apt-process-minimal-header {
  margin-bottom: 48px;
}

.apt-process-minimal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.apt-steps-minimal {
  display: flex;
  flex-direction: column;
}

.apt-step-minimal {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.apt-step-minimal:last-child { border-bottom: none; }

.apt-step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  letter-spacing: -0.04em;
}

.apt-step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}

.apt-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

/* POLICIES / CARDS */
.apt-policies-section {
  padding: 80px 0 96px;
  background: var(--white);
}

.apt-policies-header {
  margin-bottom: 48px;
}

.apt-policies-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.apt-policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.apt-policy-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-medium);
}

.apt-policy-card:hover {
  border-color: #F6B032;
  box-shadow: 0 12px 28px rgba(10, 20, 60, 0.08);
  transform: translateY(-5px);
}

.apt-policy-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #f1f4f9;
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: all var(--transition-medium);
}

.apt-policy-card:hover .apt-policy-icon {
  background: rgba(246, 176, 50, 0.15);
  border-color: #F6B032;
  color: #F6B032;
  box-shadow: 0 0 12px rgba(246, 176, 50, 0.35);
  transform: scale(1.08);
}

.apt-policy-icon svg { width: 20px; height: 20px; }

.apt-policy-text { flex: 1; min-width: 0; }

.apt-policy-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 3px;
  transition: color var(--transition-medium);
}

.apt-policy-card:hover .apt-policy-text h4 {
  color: #F6B032;
}

.apt-policy-text p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0;
}

.apt-policy-arrow {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--gray-300);
  transition: all var(--transition-medium);
}

.apt-policy-card:hover .apt-policy-arrow {
  color: #F6B032;
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .apt-editorial-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apt-editorial-aside { position: static; }
}

@media (max-width: 600px) {
  .apt-hero-minimal { padding: 80px 0 48px; }
  .apt-step-minimal { grid-template-columns: 56px 1fr; gap: 16px; }
  .apt-step-num { font-size: 2rem; }
  .apt-policies-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CÓDIGO DE CONDUTA (GRID DE 8 PRINCÍPIOS MINIMALISTAS)
   ========================================================================== */
.cc-principles-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.cc-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cc-principle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.cc-principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F6B032;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.cc-principle-card:hover {
  transform: translateY(-6px);
  border-color: #F6B032;
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
}

.cc-principle-card:hover::before {
  opacity: 1;
}

.cc-principle-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #F6B032;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cc-principle-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin: 0;
}

@media (max-width: 992px) {
  .cc-principles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   DIRETRIZES DE GESTÃO INTEGRADO (TEXTO CORRIDO COM ELEMENTOS VISUAIS)
   ========================================================================== */
.qsms-guidelines-section {
  padding: 80px 0 96px;
  background: #f8f9fb;
}

.qsms-guidelines-intro {
  margin: 0 auto 36px;
  
}

.qsms-guidelines-intro p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--navy-900);
  font-weight: 500;
}

/* Selos das Normas ISO / ISM / ISPS */
.qsms-badges-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 56px;
}

.qsms-badge-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.04);
  transition: all var(--transition-fast);
}

.qsms-badge-item:hover {
  border-color: #F6B032;
  color: #F6B032;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 176, 50, 0.18);
}

.qsms-badge-item svg {
  width: 16px;
  height: 16px;
  color: #F6B032;
}

/* Blocos de Texto Corrido com Detalhes Visuais */
.qsms-prose-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qsms-prose-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 5px solid #F6B032;
  border-radius: var(--radius-md);
  padding: 28px 34px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.03);
}

.qsms-prose-card:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 32px rgba(10, 22, 40, 0.08);
  border-color: #F6B032;
}

.qsms-prose-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(246, 176, 50, 0.14);
  color: #F6B032;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.qsms-prose-card:hover .qsms-prose-icon {
  background: #F6B032;
  color: var(--navy-900);
  transform: scale(1.12);
}

.qsms-prose-icon svg {
  width: 20px;
  height: 20px;
}

.qsms-prose-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
}

@media (max-width: 600px) {
  .qsms-prose-card {
    padding: 20px 22px;
    gap: 16px;
  }
  .qsms-prose-icon {
    width: 34px;
    height: 34px;
  }
}

/* ==========================================================================
   DIRETRIZES DE GESTÃO INTEGRADO (EDITORIAL MINIMALISTA - SEM CARDS)
   ========================================================================== */
.qsms-minimal-prose {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qsms-minimal-prose-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(246, 176, 50, 0.35);
  transition: all var(--transition-medium);
}

.qsms-minimal-prose-item:hover {
  border-left-color: #F6B032;
  transform: translateX(4px);
}

.qsms-minimal-prose-item p {
  font-size: 1.00rem;
  color: var(--gray-700);
  margin: 0;
  transition: color var(--transition-fast);
}

.qsms-minimal-prose-item:hover p {
  color: var(--navy-900);
}

.qsms-minimal-prose-item strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ==========================================================================
   DIRETRIZES DE GESTÃO INTEGRADO (EDITORIAL MINIMALISTA + IMAGEM AO LADO)
   ========================================================================== */
.qsms-guidelines-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.qsms-guidelines-media {
  position: sticky;
  top: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 28, 63, 0.12);
  border: 1px solid rgba(11, 28, 63, 0.08);
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
}

.qsms-guidelines-media img {
  width: 100%;
  height: auto;
  min-height: 480px;
  max-height: 660px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.qsms-guidelines-media:hover img {
  transform: scale(1.03);
}

.qsms-guidelines-media-caption {
  padding: 24px 28px;
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  border-top: 4px solid #F6B032;
}

.qsms-guidelines-media-caption span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F6B032;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.qsms-guidelines-media-caption h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 6px 0;
  font-weight: 600;
}

.qsms-guidelines-media-caption p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .esg-intro-banner {
    padding: 28px 24px !important;
    margin-bottom: 36px !important;
  }
  .qsms-guidelines-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qsms-guidelines-media {
    position: relative;
    top: 0;
  }
}

/* ==========================================================================
   PROGRAMA DE QUALIDADE DE VIDA - DESIGN EXCLUSIVO & INOVADOR (PQV)
   ========================================================================== */

/* Hero Imersivo com Glassmorphism & Vitality Badges */
.pqv-hero {
  position: relative;
  background: linear-gradient(135deg, #07122A 0%, #0B1C3F 55%, #0F325E 100%);
  padding: 140px 0 100px;
  color: var(--white);
  overflow: hidden;
}

.pqv-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(246, 176, 50, 0.18) 0%, rgba(11, 28, 63, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pqv-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(11, 28, 63, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pqv-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pqv-hero-content .pqv-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #F6B032;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.pqv-hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.pqv-hero-content h1 span {
  background: linear-gradient(90deg, #F6B032 0%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphic Statement Card dentro do Hero */
.pqv-glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  padding: 36px 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.pqv-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #F6B032;
}

.pqv-glass-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin: 0;
}

.pqv-glass-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pqv-glass-author-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 176, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6B032;
}

.pqv-glass-author-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.pqv-glass-author-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Vitality Badges Cloud (Painel de Pílulas Flutuantes) */
.pqv-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pqv-stats-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pqv-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-medium);
}

.pqv-stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(246, 176, 50, 0.4);
}

.pqv-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #F6B032;
  margin-bottom: 6px;
  display: block;
}

.pqv-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO MATRIZ DE BENEFÍCIOS (GRID DE ALTO IMPACTO)
   ========================================================================== */
.pqv-benefits-section {
  padding: 110px 0;
  background: var(--bg-primary);
  position: relative;
}

.pqv-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.pqv-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(11, 28, 63, 0.06);
  color: var(--navy-900);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pqv-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy-900);
  font-weight: 800;
  margin-bottom: 18px;
}

.pqv-section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pqv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pqv-benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 28, 63, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pqv-benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(246, 176, 50, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  transition: transform var(--transition-medium);
}

.pqv-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 28, 63, 0.1);
  border-color: rgba(246, 176, 50, 0.4);
}

.pqv-benefit-card:hover::after {
  transform: scale(1.5);
}

.pqv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pqv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 28, 63, 0.06) 0%, rgba(11, 28, 63, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: all var(--transition-medium);
}

.pqv-benefit-card:hover .pqv-card-icon {
  background: linear-gradient(135deg, #0B1C3F 0%, #163670 100%);
  color: #F6B032;
  transform: rotate(-6deg) scale(1.08);
}

.pqv-card-index {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(11, 28, 63, 0.25);
  font-family: monospace;
}

.pqv-benefit-card h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
  font-weight: 700;
  margin: 0 0 14px 0;
  line-height: 1.35;
}

.pqv-benefit-card p {
  font-size: 0.96rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.pqv-card-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #F6B032;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   SEÇÃO PILARES DE VITALIDADE (4 PILARES INTEGRADOS)
   ========================================================================== */
.pqv-pillars-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.pqv-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.pqv-pillar-box {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(11, 28, 63, 0.05);
  text-align: center;
  transition: all var(--transition-medium);
  border-bottom: 4px solid var(--navy-900);
}

.pqv-pillar-box:hover {
  transform: translateY(-6px);
  border-bottom-color: #F6B032;
  box-shadow: 0 20px 40px rgba(11, 28, 63, 0.1);
}

.pqv-pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(246, 176, 50, 0.15);
  color: #F6B032;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform var(--transition-medium);
}

.pqv-pillar-box:hover .pqv-pillar-icon {
  transform: scale(1.12);
}

.pqv-pillar-box h4 {
  font-size: 1.25rem;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 12px;
}

.pqv-pillar-box p {
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CALL TO ACTION VITALIDADE (BANNER CURVO / ORGÂNICO)
   ========================================================================== */
.pqv-cta-section {
  padding: 100px 0;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pqv-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(circle, rgba(246, 176, 50, 0.15) 0%, rgba(11, 28, 63, 0) 70%);
  pointer-events: none;
}

.pqv-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pqv-cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
}

.pqv-cta-inner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .pqv-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   POLÍTICA DE ESG - DESIGN SUSTENTÁVEL & EDITORIAL MINIMALISTA
   ========================================================================== */

.esg-dimension-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.esg-dimension-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.95rem;
  font-weight: 800;
}

.esg-prose-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(16, 185, 129, 0.35);
  transition: all var(--transition-medium);
}

.esg-prose-item:hover {
  border-left-color: #059669;
  transform: translateX(4px);
}

.esg-prose-item p {
  font-size: 1.00rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.68;
  transition: color var(--transition-fast);
}

.esg-prose-item:hover p {
  color: var(--navy-900);
}

.esg-prose-item strong {
  color: var(--navy-900);
  font-weight: 700;
}

.esg-badge-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 15px;
  margin-bottom: 56px;
}

.esg-badge-item {
  background: var(--white);
  border: 1px solid rgba(11, 28, 63, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(11, 28, 63, 0.03);
  transition: all var(--transition-medium);
}

.esg-badge-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.08);
}

.esg-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esg-badge-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 2px 0;
}

.esg-badge-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

@media (max-width: 992px) {
  .esg-badge-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .esg-badge-bar {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PÁGINA DE NOTÍCIAS — ESTILOS ESPECÍFICOS
   ÍNDICE:
   N1. SEÇÃO NOTÍCIA EM DESTAQUE (FEATURED NEWS)
   N2. BARRA DE FILTRO DE CATEGORIAS
   N3. GRID DE ÚLTIMAS NOTÍCIAS (CARDS)
   N4. COMPONENTES COMPARTILHADOS (BADGE, META, LINK)
   N5. BOTÃO "CARREGAR MAIS"
   N6. RESPONSIVIDADE DA PÁGINA DE NOTÍCIAS
   ========================================================================== */


/* ==========================================================================
   N1. SEÇÃO NOTÍCIA EM DESTAQUE (FEATURED NEWS)
   ========================================================================== */
.news-featured {
  padding: 80px 0 60px;
  background: var(--gray-100);
}

/* Card principal horizontal com imagem à esquerda e texto à direita */
.news-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-medium), transform var(--transition-medium);
}

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

/* Imagem da notícia destaque */
.news-featured-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.news-featured-card:hover .news-featured-image img {
  transform: scale(1.05);
}

/* Corpo de texto da notícia destaque */
.news-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  gap: 0;
}

.news-featured-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 20px;
}

.news-featured-excerpt {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.news-cta-btn {
  align-self: flex-start;
}


/* ==========================================================================
   N2. BARRA DE FILTRO DE CATEGORIAS
   ========================================================================== */
.news-filter-section {
  padding: 40px 0 0;
  background: var(--gray-100);
}

/* Container horizontal de botões de filtro */
.news-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-filter-btn {
  padding: 9px 22px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.news-filter-btn:hover {
  border-color: var(--navy-300);
  color: var(--navy-800);
  background: var(--navy-50);
}

.news-filter-btn.active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  box-shadow: var(--shadow-md);
}


/* ==========================================================================
   N3. GRID DE ÚLTIMAS NOTÍCIAS (CARDS)
   ========================================================================== */
.news-grid-section {
  padding: 56px 0 100px;
  background: var(--gray-100);
}

.news-grid-header {
  margin-bottom: 36px;
}

/* Grade responsiva: 3 colunas no desktop, 2 no tablet, 1 no mobile */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card individual de notícia */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-100);
}

/* Bloco de imagem do card */
.news-card-image-link {
  display: block;
  overflow: hidden;
}

.news-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.07);
}

/* Overlay sutil na imagem para integrar o badge */
.news-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.35), transparent 55%);
  pointer-events: none;
}

/* Corpo de texto do card */
.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px;
}

.news-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.news-card-title a:hover {
  color: var(--navy-400);
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* Link "Ler mais" ao pé do card */
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: auto;
  transition: all var(--transition-fast);
}

.news-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.news-card:hover .news-card-link,
.news-card-link:hover {
  color: var(--accent-blue);
  gap: 10px;
}

.news-card:hover .news-card-link svg {
  transform: translateX(4px);
}


/* ==========================================================================
   N4. COMPONENTES COMPARTILHADOS (BADGE, META, LINK)
   ========================================================================== */

/* Badge de categoria (sobre a imagem) */
.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-blue);
  color: var(--navy-900);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Linha de metadados (data + tempo de leitura) */
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-date,
.news-read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
}

.news-date svg,
.news-read-time svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ==========================================================================
   N5. BOTÃO "CARREGAR MAIS"
   ========================================================================== */
.news-load-more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}


/* ==========================================================================
   N6. RESPONSIVIDADE DA PÁGINA DE NOTÍCIAS
   ========================================================================== */

/* Tablet: 2 colunas no grid de cards; card destaque empilhado */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-featured-card {
    grid-template-columns: 1fr;
  }

  .news-featured-image {
    min-height: 300px;
    max-height: 380px;
  }

  .news-featured-body {
    padding: 40px 36px;
  }
}

/* Mobile: 1 coluna para tudo */
@media (max-width: 640px) {
  .news-featured {
    padding: 48px 0 40px;
  }

  .news-featured-body {
    padding: 28px 24px 32px;
  }

  .news-featured-title {
    font-size: 1.35rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-filter-bar {
    gap: 6px;
  }

  .news-filter-btn {
    padding: 7px 16px;
    font-size: 0.8125rem;
  }

  .news-grid-section {
    padding: 40px 0 64px;
  }
}

