/* ===================================================
   GALPÃO LOGÍSTICO NAVEGANTES — LIGHT THEME
   Clean, corporate, conversion-optimized
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light palette */
  --bg: #f5f6fa;
  --bg-white: #ffffff;
  --bg-dark: #0f1b2d;
  --bg-dark-card: #162033;

  --text-dark: #0f1b2d;
  --text-body: #4a5568;
  --text-muted: #8896a6;
  --text-light: #ffffff;

  --accent: #e8740c;
  --accent-hover: #d46600;
  --accent-bg: rgba(232, 116, 12, 0.08);
  --accent-bg-strong: rgba(232, 116, 12, 0.12);

  --whatsapp: #25D366;
  --whatsapp-hover: #1fb855;

  --border: #e8ecf1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.05);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --container-max: 640px;
  --container-padding: 20px;
  --section-padding: 64px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

.highlight { color: var(--accent); }


/* ---------- SECTION COMMON ---------- */
.section__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}

.section__tag--light { color: var(--accent); }

.section__title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.section__title--light { color: var(--text-light); }


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}


/* ===========================================
   HEADER
   =========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: var(--radius-sm);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.2s var(--ease);
}

.header__cta:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}


/* ===========================================
   HERO
   =========================================== */
.hero {
  padding: 48px 0 16px;
  text-align: center;
  background: var(--bg-white);
}

.hero__title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}


/* ===========================================
   GALLERY
   =========================================== */
.gallery {
  padding: 24px 0 var(--section-padding);
  background: var(--bg-white);
}

.gallery__main {
  max-width: 100%;
}

.gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gallery__track {
  display: flex;
  transition: transform 0.45s var(--ease);
}

.gallery__slide {
  min-width: 100%;
  cursor: pointer;
}

.gallery__slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: none;
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  z-index: 3;
}

.gallery__btn:hover { box-shadow: var(--shadow-lg); }
.gallery__btn svg { width: 18px; height: 18px; }
.gallery__btn--prev { left: 12px; }
.gallery__btn--next { right: 12px; }

.gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 3;
}

/* Thumbnails */
.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  padding: 0;
  background: none;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumb.active {
  border-color: var(--accent);
}

.gallery__thumb:hover {
  border-color: var(--accent);
  opacity: 0.85;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active { display: flex; }

.lightbox__img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close svg { width: 22px; height: 22px; }

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__btn--prev { left: 12px; }
.lightbox__btn--next { right: 12px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}


/* ===========================================
   DETAILS (2×2 cards)
   =========================================== */
.details {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.detail-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.detail-card__icon svg {
  width: 24px;
  height: 24px;
}

.detail-card__icon--area {
  background: var(--accent-bg-strong);
  color: var(--accent);
}

.detail-card__icon--height {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.detail-card__icon--floor {
  background: var(--accent-bg-strong);
  color: var(--accent);
}

.detail-card__icon--docks {
  background: rgba(232, 116, 12, 0.1);
  color: var(--accent);
}

.detail-card__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.detail-card__value {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.detail-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ===========================================
   DIFFERENTIALS
   =========================================== */
.differentials {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.diff__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.diff-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.diff-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-bg-strong);
  color: var(--accent);
}

.diff-card__icon svg {
  width: 22px;
  height: 22px;
}

.diff-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.diff-card__desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}


/* ===========================================
   INFRASTRUCTURE & SECURITY
   =========================================== */
.infrastructure {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

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

.infra-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.infra-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.infra-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.infra-card__icon svg {
  width: 22px;
  height: 22px;
}

.infra-card__icon--infra {
  background: rgba(15, 27, 45, 0.08);
  color: var(--text-dark);
}

.infra-card__icon--security {
  background: rgba(15, 27, 45, 0.08);
  color: var(--text-dark);
}

.infra-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.infra-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.infra-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  color: var(--accent);
}

.infra-item__icon svg {
  width: 18px;
  height: 18px;
}


/* ===========================================
   LOCATION
   =========================================== */
.location {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.location__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

.location__address svg {
  color: var(--accent);
  flex-shrink: 0;
}

.location__map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: #e5e5e5;
}

.location__maps-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  box-shadow: var(--shadow-md);
  transition: all 0.2s var(--ease);
}

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

.location__map-wrapper iframe {
  border-radius: var(--radius-lg);
}


/* ===========================================
   PRICING (DARK SECTION)
   =========================================== */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
}

.pricing__card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
}

.pricing__row {
  margin-bottom: 4px;
}

.pricing__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing__number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.pricing__period {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.pricing__divider {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  padding: 8px 0;
}

.pricing__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 20px 0 24px;
}

.pricing__location svg {
  color: var(--accent);
  flex-shrink: 0;
}


/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
  padding: var(--section-padding) 0;
  background: var(--bg);
  text-align: center;
}

.final-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ===========================================
   FOOTER
   =========================================== */
.footer {
  padding: 24px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ===========================================
   STICKY WHATSAPP BUTTON
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s var(--ease);
  animation: wapulse 2.5s ease infinite;
}

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

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

@keyframes wapulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.08); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}


/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   RESPONSIVE — TABLET +
   =========================================== */
@media (min-width: 768px) {
  :root {
    --container-max: 720px;
    --section-padding: 80px;
  }

  .hero__title { font-size: 2.6rem; }
  .hero__subtitle { font-size: 1.05rem; }

  .gallery__slide img { height: 440px; }

  .gallery__thumb {
    width: 80px;
    height: 56px;
  }

  .detail-card { padding: 36px 24px; }
  .detail-card__value { font-size: 1.7rem; }

  .section__title { font-size: 1.8rem; }

  .pricing__number { font-size: 2.8rem; }

  .final-cta__title { font-size: 1.7rem; }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --container-max: 800px;
    --section-padding: 100px;
  }

  .hero__title { font-size: 3rem; }

  .gallery__slide img { height: 500px; }

  .gallery__thumb {
    width: 100px;
    height: 68px;
  }

  .infra__stack {
    flex-direction: row;
    gap: 20px;
  }

  .infra-card { flex: 1; }
}
