/* ==========================================================================
   OURO NÁUTICA - DESIGN SYSTEM & FOLHA DE ESTILOS PRINCIPAL
   Especialistas em Motores e Embarcações no Lago Serra da Mesa
   Tema Náutico Límpido (Light & Marine Blue) - Alto Padrão
   ========================================================================== */

:root {
  /* Cores de Superfície - Tema Límpido Náutico */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-surface-soft: #f0f7ff;
  --bg-surface-alt: #f1f6fc;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fbff;
  
  /* Azul Oceano & Marítimo */
  --ocean-primary: #0284c7;
  --ocean-primary-hover: #0369a1;
  --ocean-deep: #0c2a4d;
  --ocean-navy: #07192e;
  --ocean-light: #e0f2fe;
  --ocean-soft: #f0f7ff;
  --ocean-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --cyan-gradient: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  
  /* Ouro & Dourado Nobre */
  --accent-gold: #d97706;
  --accent-gold-light: #f59e0b;
  --accent-gold-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 60%, #b45309 100%);
  
  /* Status & Ações */
  --accent-emerald: #10b981;
  --accent-red: #ef4444;
  --accent-emergency: #dc2626;
  --accent-whatsapp: #25d366;
  
  /* Textos - Contraste Elevado (AAA Readability) */
  --text-pure: #0a2540;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --text-white: #ffffff;
  
  /* Bordas e Vidro */
  --border-subtle: #e2e8f0;
  --border-light: #cbd5e1;
  --border-ocean: rgba(2, 132, 199, 0.25);
  --border-gold: rgba(217, 119, 6, 0.35);
  --glass-blur: blur(14px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  /* Sombras Suaves e Elegantes */
  --shadow-xs: 0 1px 3px rgba(12, 74, 110, 0.05);
  --shadow-sm: 0 4px 14px rgba(12, 74, 110, 0.07);
  --shadow-md: 0 10px 28px rgba(12, 74, 110, 0.09);
  --shadow-lg: 0 20px 45px rgba(12, 74, 110, 0.12);
  --shadow-ocean: 0 8px 24px rgba(2, 132, 199, 0.28);
  --shadow-gold: 0 8px 24px rgba(217, 119, 6, 0.25);

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(2, 132, 199, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(2, 132, 199, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-pure);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.text-cyan {
  background: var(--ocean-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-cyan {
  background: rgba(2, 132, 199, 0.1);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
  color: #ffffff;
}

.btn-cyan {
  background: var(--ocean-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-ocean);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-pure);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

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

.btn-emergency {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #f87171 0%, #b91c1c 100%);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   HEADER & NAVBAR (TRANSLÚCIDO NO TOPO -> DOCKING FROSTED GLASS NA ROLAGEM)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(7, 25, 46, 0.04);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 6px 25px rgba(12, 74, 110, 0.09);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo no Menu: Oculto no topo e surge animado conforme a logo grandona sobe */
.brand-logo {
  display: flex;
  align-items: center;
  height: 52px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-8px) scale(0.88);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .brand-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo img {
  height: 100%;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0c2a4d;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.site-header.scrolled .nav-link {
  text-shadow: none;
  color: #1e293b;
}

.nav-link:hover, .nav-link.active {
  color: var(--ocean-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean-gradient);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

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

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-sm);
  color: var(--ocean-deep);
  padding: 0.5rem;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ==========================================================================
   HERO SECTION: TELA DE CHEGADA CINEMATOGRÁFICA & LOGO MORPHING
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-page);
}

/* Background Slideshow com Ken Burns e Crossfade das Fotos Reais */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 120px);
  min-height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Overlay Suave e Luminoso: Destaca o azul límpido do lago e embarcações sem escurecer */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(180deg, 
      rgba(255, 255, 255, 0.3) 0%, 
      rgba(12, 42, 77, 0.12) 25%, 
      rgba(7, 25, 46, 0.22) 60%, 
      rgba(248, 250, 252, 0.92) 88%, 
      #f8fafc 100%
    ),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18) 0%, rgba(7, 25, 46, 0.2) 100%);
}

/* Indicadores de Slide (Dots) */
.hero-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 6;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  background: rgba(7, 25, 46, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--gold-gradient);
  width: 28px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}

/* ==========================================================================
   FASE 1: TELA DE CHEGADA COM LOGO GRANDONA (HERO SPLASH STAGE)
   ========================================================================== */
.hero-splash-stage {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem 1.5rem 5rem;
}

.hero-giant-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: clamp(320px, 48vw, 580px);
  margin: 0 auto 1.6rem;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.1s linear, opacity 0.1s linear;
}

.hero-giant-logo {
  width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: contain;
  /* Brilho halo branco suave ao redor do logo para contraste perfeito em qualquer foto */
  filter: drop-shadow(0 0 45px rgba(255, 255, 255, 0.95)) drop-shadow(0 15px 35px rgba(7, 25, 46, 0.35));
  animation: heroFloat 5s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.015);
  }
}

.hero-splash-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  will-change: transform, opacity;
  transition: transform 0.1s linear, opacity 0.1s linear;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 119, 6, 0.45);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(7, 25, 46, 0.18);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.4vw, 0.92rem);
  color: var(--ocean-deep);
  letter-spacing: 0.05em;
}

.hero-pill-badge .gold-icon {
  font-size: 1.15rem;
  color: var(--accent-gold);
}

.hero-loc-tag {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(12, 42, 77, 0.7);
  background: rgba(7, 25, 46, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Indicador Animado de Rolagem (Scroll Cue) */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  will-change: transform, opacity;
  transition: transform 0.1s linear, opacity 0.1s linear;
}

.scroll-cue-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.scroll-cue-link:hover {
  color: var(--accent-gold-light);
  transform: translateY(3px);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: mouseWheel 1.8s infinite;
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.arrow-down {
  animation: arrowBounce 1.8s infinite;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  stroke: #ffffff;
}

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

/* ==========================================================================
   FASE 2: INFORMAÇÕES REVELADAS PROGRESSIVAMENTE NA ROLAGEM
   ========================================================================== */
.hero-details {
  position: relative;
  z-index: 5;
  padding: 3.5rem 0 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 3rem 3.2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(7, 25, 46, 0.12), 0 0 0 1px rgba(2, 132, 199, 0.08);
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  color: var(--text-pure);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 720px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.25rem;
}

/* Indicadores de Confiança Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ocean-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Ondas SVG Decorativas */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 48px;
  animation: waveAnimation 18s linear infinite;
}

/* ==========================================================================
   BARRA DE MARCAS E MOTORES ATENDIDOS
   ========================================================================== */
.brands-section {
  padding: 2.5rem 0;
  background: var(--bg-surface-soft);
  border-bottom: 1px solid var(--border-subtle);
}

.brands-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.brand-badge {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.brand-badge:hover {
  color: var(--ocean-primary);
  transform: translateY(-2px);
}

.brand-badge span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS
   ========================================================================== */
.services-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-page);
}

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

.section-subtitle {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-pure);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ocean-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card.highlight::before {
  background: var(--gold-gradient);
  opacity: 1;
}

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

.service-card.highlight:hover {
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15);
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--ocean-soft);
  border: 1px solid var(--border-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-primary);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.service-card.highlight .service-icon {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--border-gold);
  color: var(--accent-gold);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
  color: var(--text-pure);
}

.service-text {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.55rem;
}

.service-features li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--ocean-primary);
}

.service-card.highlight .service-features li svg {
  color: var(--accent-gold);
}

/* ==========================================================================
   ESTRUTURA COMPLETA NO LAGO SERRA DA MESA
   ========================================================================== */
.synergy-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #f0f7ff 50%, var(--bg-page) 100%);
  position: relative;
}

.synergy-box {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.synergy-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.synergy-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: var(--text-pure);
}

.synergy-content p {
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

.base-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.base-card:hover {
  border-color: var(--ocean-primary);
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.base-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(2, 132, 199, 0.12);
  color: var(--ocean-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.base-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--text-pure);
}

.base-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.base-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

/* ==========================================================================
   SIMULADOR INTERATIVO DE ORÇAMENTO & DIAGNÓSTICO
   ========================================================================== */
.simulator-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-page);
}

.simulator-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--ocean-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
}

.radio-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-pill label {
  display: block;
  padding: 0.75rem 0.6rem;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-main);
}

.radio-pill input:checked + label {
  background: var(--ocean-primary);
  border-color: var(--ocean-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Lista de Seleção Múltipla de Serviços */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.checkbox-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--ocean-primary);
  background: rgba(2, 132, 199, 0.03);
}

.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.checkbox-custom-indicator svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
  color: #ffffff;
}

.checkbox-item input[type="checkbox"]:checked ~ .checkbox-custom-indicator {
  background: var(--ocean-primary);
  border-color: var(--ocean-primary);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.checkbox-item input[type="checkbox"]:checked ~ .checkbox-custom-indicator svg {
  opacity: 1;
  transform: scale(1);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
  border-color: var(--ocean-primary);
  background: rgba(2, 132, 199, 0.05);
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.1);
}

.checkbox-text {
  display: flex;
  flex-direction: column;
}

.checkbox-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
}

.checkbox-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Painel de Resumo do Simulador */
.simulator-summary {
  background: var(--bg-surface-soft);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.summary-header {
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.summary-title {
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.summary-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(2, 132, 199, 0.2);
}

.summary-label {
  color: var(--text-muted);
}

.summary-val {
  font-weight: 700;
  color: var(--text-pure);
}

.summary-checklist {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: #475569;
}

.summary-checklist span {
  display: block;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   CHECKLIST DE REVISÃO (35 PONTOS)
   ========================================================================== */
.checklist-section {
  padding: 5.5rem 0;
  background: var(--bg-surface-alt);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.checklist-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-xs);
}

.checklist-card h4 {
  font-size: 1.15rem;
  color: var(--ocean-primary);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist-items li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
}

.checklist-items li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   GALERIA DE FOTOS REAIS (AMPLA E RESPONSIVA)
   ========================================================================== */
.gallery-section {
  padding: 6.5rem 0;
  background: var(--bg-page);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover {
  background: var(--ocean-soft);
  border-color: var(--ocean-primary);
  color: var(--ocean-primary);
}

.filter-btn.active {
  background: var(--ocean-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-ocean);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: #e2e8f0;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 25, 46, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.gallery-tag {
  font-size: 0.78rem;
  color: #fde047;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Video Items na Galeria */
.gallery-item.video-item {
  position: relative;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: rgba(2, 132, 199, 0.9);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}

.video-play-btn svg {
  margin-left: 3px;
  fill: #ffffff;
}

.gallery-item.video-item:hover .video-play-btn {
  background: #0284c7;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.7);
  border-color: #38bdf8;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 25, 46, 0.94);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.15);
  color: #f59e0b;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 132, 199, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-nav:hover {
  background: #0284c7;
  transform: translateY(-50%) scale(1.1);
  color: #ffffff;
}

@media (max-width: 900px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

/* ==========================================================================
   BANNER DE SOCORRO NÁUTICO NO LAGO (EMERGÊNCIA)
   ========================================================================== */
.emergency-banner {
  padding: 4.5rem 0;
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.08) 0%, var(--bg-page) 75%);
  position: relative;
  overflow: hidden;
}

.emergency-card {
  background: linear-gradient(135deg, #b91c1c 0%, #0c2a4d 100%);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
}

.emergency-info {
  max-width: 620px;
}

.emergency-info h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.emergency-info p {
  color: #f1f5f9;
  font-size: 1.05rem;
  line-height: 1.6;
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   AVALIAÇÕES & PROVA SOCIAL
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-surface-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ocean-gradient);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  color: var(--text-pure);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ÁREA DE ATENDIMENTO REGIONAL (SEO LOCAL)
   ========================================================================== */
.coverage-section {
  padding: 5.5rem 0;
  text-align: center;
  background: var(--bg-page);
}

.city-tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
}

.city-tag {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.city-tag:hover {
  border-color: var(--ocean-primary);
  color: var(--ocean-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 6.5rem 0;
  background: var(--bg-surface-alt);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--ocean-primary);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ocean-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ocean-primary);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--ocean-primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 1.6rem 1.4rem 1.6rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   SEÇÃO DE CONTATO & LOCALIZAÇÃO (SERRA DA MESA)
   ========================================================================== */
.contact-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--bg-page);
}

.bases-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 2.5rem;
}

.base-location-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.base-location-card.gold-border {
  border-color: rgba(2, 132, 199, 0.3);
}

.base-card-body {
  padding: 2.5rem;
  flex-grow: 1;
}

.base-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.base-card-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-pure);
}

.base-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.base-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.base-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  font-size: 0.95rem;
  color: #334155;
}

.base-detail-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--ocean-primary);
}

.map-container {
  height: 320px;
  width: 100%;
  border-top: 1px solid var(--border-subtle);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   RODAPÉ (NAVEGAÇÃO E CRÉDITOS)
   ========================================================================== */
.site-footer {
  background: #08162b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  background: #ffffff;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 220px;
}

.footer-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand p {
  margin-top: 1.25rem;
  line-height: 1.6;
  max-width: 340px;
  color: #94a3b8;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #38e1ff;
}

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

/* ==========================================================================
   BOTÕES FLUTUANTES (WHATSAPP & SOS)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.btn-float-sos {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  background: #dc2626;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  animation: emergencyPulse 2.5s infinite;
}

.btn-float-sos:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.05);
}

.btn-float-wa,
.whatsapp-pill-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.whatsapp-pill-btn:hover,
.btn-float-wa:hover {
  background: #22bf5b;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: whatsappPulseRing 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes whatsappPulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE - NUNCA QUEBRA LINHA DE MENU E ZERO ESTOURO)
   ========================================================================== */
@media (max-width: 1100px) {
  .nav-desktop {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem 2rem;
    gap: 1.4rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    box-shadow: -10px 0 30px rgba(12, 74, 110, 0.15);
    z-index: 1050;
  }
  .nav-desktop.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link {
    font-size: 1.05rem;
    color: var(--text-pure);
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
  }
  .header-actions .btn {
    display: none;
  }
  .synergy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .simulator-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Botões no Mobile: proporção perfeita e sem estouro */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    word-break: break-word;
    line-height: 1.35;
  }
  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
  }
  .btn-sm {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  /* Hero Mobile */
  .hero {
    padding-top: 0;
  }
  .hero-splash-stage {
    padding: 5.5rem 1rem 4.5rem;
    min-height: 100svh;
  }
  .hero-giant-logo-wrap {
    max-width: 270px;
    margin-bottom: 1.2rem;
  }
  .hero-content {
    padding: 1.8rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  .hero-slider-dots {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.4rem 0.65rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Formulário e Simulador Interativo */
  .simulator-section {
    padding: 4rem 0;
  }
  .simulator-card {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
    gap: 1.5rem;
    border-radius: var(--radius-md);
  }
  .form-group {
    margin-bottom: 1.15rem;
  }
  .form-label {
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .form-select, .form-input, .form-textarea {
    font-size: 16px; /* Evita zoom automático incômodo no Safari / iOS */
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
  }
  .radio-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .radio-pill label {
    padding: 0.65rem 0.35rem;
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.25;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .checkbox-item {
    padding: 0.65rem 0.75rem;
    gap: 0.65rem;
  }
  .checkbox-title {
    font-size: 0.88rem;
  }
  .checkbox-desc {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .simulator-summary {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
  }
  .summary-title {
    font-size: 1.15rem;
  }
  .summary-item {
    font-size: 0.85rem;
  }
  #btn_submit_wa {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* Banner de Emergência no Lago */
  .emergency-section {
    padding: 4rem 0;
  }
  .emergency-card {
    padding: 1.5rem 1.15rem;
    gap: 1.25rem;
    border-radius: var(--radius-md);
  }
  .emergency-info h3 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .emergency-info p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .emergency-actions {
    width: 100%;
  }
  .btn-emergency {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* Estrutura Synergy & Destaques de Infraestrutura (Regra 21 Mobile) */
  .synergy-box {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }
  .synergy-cards {
    gap: 0.85rem;
  }
  .base-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem 1rem;
    gap: 0.75rem;
  }
  .base-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
  }
  .base-info {
    width: 100%;
  }
  .base-info h4 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }
  .base-info p {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0.4rem;
  }
  .base-meta {
    font-size: 0.78rem;
    line-height: 1.4;
    display: block;
    width: 100%;
  }

  /* Checklist de Segurança Náutica (Regra 21 Mobile) */
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .checklist-card {
    padding: 1.2rem 1rem;
    border-radius: var(--radius-md);
  }
  .checklist-card h4 {
    font-size: 1.05rem;
    gap: 0.5rem;
  }
  .checklist-items li {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Card de Localização & Base Náutica */
  .base-card-body {
    padding: 1.5rem 1.1rem;
  }
  .base-card-title {
    font-size: 1.35rem;
  }
  .base-card-actions,
  .synergy-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .base-card-actions .btn,
  .synergy-cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Grids de Serviços, Avaliações e Galeria */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card {
    padding: 1.5rem 1.15rem;
  }
  .service-card .btn {
    width: 100%;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Rodapé */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .btn-float-sos span {
    display: none;
  }
  .btn-float-sos {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }
  .section-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .hero-giant-logo-wrap {
    max-width: 230px;
  }
  .hero-badge-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  .radio-pills {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .radio-pill label {
    padding: 0.6rem 0.25rem;
    font-size: 0.78rem;
  }
}
