/* ============================================================
   B2GoTech — CSS fiel ao visual b2intosys.com
   Fonte: Poppins (Google Fonts)
   Paleta: Branco #fff, Azul escuro #0a1628, Azul médio #1a3a6b,
           Azul destaque #1e5fa8, Cinza claro #f5f7fa, Texto #222
   SELETORES alinhados com index.html
   ============================================================ */

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

:root {
  --blue-dark:    #0a1628;
  --blue-mid:     #1a3a6b;
  --blue-accent:  #1e5fa8;
  --blue-light:   #3b8ef0;
  --blue-pale:    #e8f1fd;
  --white:        #ffffff;
  --gray-bg:      #f5f7fa;
  --gray-border:  #e2e8f0;
  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-light:   #6b7280;
  --green-accent: #25d366;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(10,22,40,.10);
  --shadow-lg:    0 8px 40px rgba(10,22,40,.18);
  --transition:   .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEXAGON BACKGROUND PATTERN ── */
.hex-bg {
  position: relative;
  overflow: hidden;
}
.hex-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23c8d8f0' stroke-width='1' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
  z-index: 0;
}
.hex-bg > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}
#header.scrolled {
  border-color: var(--gray-border);
  box-shadow: 0 2px 16px rgba(10,22,40,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* Logo — classe .logo no HTML */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Desktop Nav — classe .desktop-nav no HTML */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.desktop-nav > a:hover { color: var(--blue-accent); background: var(--blue-pale); }

/* Solutions dropdown trigger */
.nav-solutions {
  position: relative;
}
.nav-solutions > button {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-solutions > button:hover,
.nav-solutions.open > button { color: var(--blue-accent); background: var(--blue-pale); }
.nav-solutions > button svg { transition: transform var(--transition); }
.nav-solutions.open > button svg { transform: rotate(180deg); }

/* Header Right — classe .header-actions no HTML */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Lang Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-bg);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 16px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-light);
  transition: all var(--transition);
}
.lang-btn img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; }
.lang-btn.active { background: var(--white); color: var(--blue-accent); box-shadow: 0 1px 4px rgba(0,0,0,.1); }

/* CTA Button in header */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--blue-dark);
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--blue-accent); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,95,168,.35); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MEGA MENU ── */
.mega-menu {
  position: fixed;
  top: 76px; left: 0; right: 0;
  z-index: 999;
  display: none;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(10,22,40,.14);
  border-top: 2px solid var(--blue-accent);
}
.mega-menu.open { display: flex; }
.mega-left {
  flex: 1;
  padding: 36px 40px;
  background: var(--white);
}
.mega-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 24px;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.mega-item:hover { border-color: var(--blue-accent); background: var(--blue-pale); }
.mega-item strong { color: var(--blue-accent); }
.mega-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .7;
}
.mega-right {
  width: 300px;
  background: var(--blue-dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mega-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.mega-right > * { position: relative; z-index: 1; }
.mega-right h3 { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.mega-right p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 24px; }
.btn-book-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 30px;
  transition: all var(--transition);
  width: fit-content;
}
.btn-book-white:hover { background: var(--blue-accent); color: var(--white); }
.btn-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-accent);
  flex-shrink: 0;
}
.btn-book-white:hover .btn-dot { background: var(--white); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  border-top: 1px solid var(--gray-border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu > a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu > a:hover { color: var(--blue-accent); background: var(--blue-pale); }
.mobile-solutions {
  display: flex;
  flex-direction: column;
}
.mobile-solutions > button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition), background var(--transition);
}
.mobile-solutions > button:hover { color: var(--blue-accent); background: var(--blue-pale); }
.mobile-solutions-list {
  display: none;
  flex-direction: column;
  background: var(--gray-bg);
  border-left: 3px solid var(--blue-accent);
  margin: 0 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mobile-solutions-list.open { display: flex; }
.mobile-solutions-list a {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.mobile-solutions-list a:hover { color: var(--blue-accent); }
.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 8px 24px;
}
.mobile-cta {
  margin: 8px 24px 0;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS (globais)
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  background: var(--blue-dark);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-accent); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,95,168,.35); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  color: var(--white);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-hexagons {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  flex: 1;
}
.hero-content {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title span:first-child,
.hero-title span:last-child {
  display: block;
}
.hero-typed-wrap {
  display: block;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  color: var(--blue-light);
  min-height: 1.15em;
}
.hero-typed {
  color: var(--blue-light);
}
.hero-typed::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 2px;
  color: rgba(255,255,255,.6);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-tagline {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-tagline strong { color: rgba(255,255,255,.95); }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual — rings + logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30,95,168,.25);
  animation: pulse-ring 3s ease-in-out infinite;
}
.ring-1 { width: 260px; height: 260px; animation-delay: 0s; }
.ring-2 { width: 310px; height: 310px; animation-delay: .6s; }
.ring-3 { width: 360px; height: 360px; animation-delay: 1.2s; }
@keyframes pulse-ring {
  0%,100% { opacity:.3; transform: scale(1); }
  50%      { opacity:.8; transform: scale(1.04); }
}
.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(30,95,168,.5));
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  flex: 1;
  justify-content: center;
}
.hero-stat div {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 2px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
}
/* .about-grid no HTML */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* .about-image no HTML */
.about-image {
  position: relative;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
/* .about-stats-card no HTML */
.about-stats-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--gray-border);
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.about-stat div {
  display: flex;
  flex-direction: column;
}
.about-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1;
}
.about-stat span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-dark);
  margin-top: 2px;
}
.about-stat small {
  font-size: 10px;
  color: var(--text-light);
}
/* .about-text no HTML */
.about-text {}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-accent);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--text-light); }
.about-text h2,
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text h2 span,
.section-title span { color: var(--blue-accent); }
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-text p strong { color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════
   BRANDS
═══════════════════════════════════════════════════════════ */
.brands {
  padding: 56px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.brands-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 32px;
}
.brands-track-wrap {
  overflow: hidden;
  position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-bg), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--gray-bg), transparent); }
.brands-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll-brands 28s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scroll-brands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brands-track img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter var(--transition);
  flex-shrink: 0;
}
.brands-track img:hover { filter: grayscale(0) opacity(1); }

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════════════════════════ */
.solutions {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23c8d8f0' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
}
.solutions > .container { position: relative; z-index: 1; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0;
}
.section-header h2 span { color: var(--blue-accent); }

/* Carousel wrapper — .solutions-carousel-wrap no HTML */
.solutions-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Viewport — .solutions-viewport no HTML */
.solutions-viewport {
  overflow: hidden;
  flex: 1;
}
/* Track — .solutions-track no HTML */
.solutions-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
/* Card — .sol-card no HTML */
.sol-card {
  /* Width is set dynamically by JS based on viewport */
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  /* Override reveal: cards inside carousel must always be visible */
  opacity: 1 !important;
  transform: none !important;
}
.sol-card:hover { box-shadow: var(--shadow-lg); }
/* Card image */
.sol-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--blue-dark);
}
.sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sol-card:hover .sol-card-img img { transform: scale(1.04); }
/* Card body */
.sol-card-body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sol-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.sol-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
/* Learn More link — .sol-link no HTML */
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-accent);
  transition: gap var(--transition), color var(--transition);
  align-self: flex-start;
}
.sol-link:hover { gap: 10px; color: var(--blue-mid); }

/* Arrow buttons — .sol-arrow no HTML */
.sol-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.sol-arrow:hover { border-color: var(--blue-accent); color: var(--blue-accent); background: var(--blue-pale); }

/* Dots */
.solutions-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.solutions-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.solutions-dot.active { background: var(--blue-accent); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   METRICS
═══════════════════════════════════════════════════════════ */
.metrics {
  padding: 80px 0;
  background: var(--gray-bg);
}
/* .metrics-header no HTML */
.metrics-header {
  text-align: left;
  max-width: 360px;
  margin-bottom: 0;
}
.metrics-header h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0;
}
.metrics-header h2 span { color: var(--blue-accent); }
.metrics-header p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 4px;
}
/* .metrics-grid no HTML */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-top: 0;
}
/* metrics section: .container holds .metrics-header + .metrics-grid */
.metrics .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* .metric-card no HTML */
.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* First card (dark) */
.metric-card:first-child {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.metric-card:first-child .metric-label,
.metric-card:first-child .metric-sub,
.metric-card:first-child .metric-icon { color: var(--white); }
.metric-card:first-child .metric-sub { color: rgba(255,255,255,.6); }
/* .metric-icon no HTML */
.metric-icon {
  margin-bottom: 10px;
  color: rgba(255,255,255,.8);
}
/* .metric-body no HTML */
.metric-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .metric-number no HTML */
.metric-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.metric-number .counter { color: var(--blue-accent); }
.metric-number span:last-child { font-size: 28px; color: var(--blue-accent); }
/* .metric-label no HTML */
.metric-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
/* .metric-sub no HTML */
.metric-sub {
  font-size: 12px;
  color: var(--text-light);
}
/* highlight cards */
.metric-card.highlight .metric-number { color: var(--blue-accent); }

/* ═══════════════════════════════════════════════════════════
   DISCOVERY CALL BANNER
═══════════════════════════════════════════════════════════ */
.discovery {
  padding: 0 0 80px;
}
/* .discovery-inner no HTML */
.discovery-inner {
  background: var(--blue-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
  position: relative;
}
.discovery-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
}
.discovery-inner > * { position: relative; z-index: 1; }
/* .discovery-text no HTML */
.discovery-text {}
.discovery-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.discovery-text p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 560px;
}
/* .btn-book-dark no HTML */
.btn-book-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-book-dark::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-accent);
  flex-shrink: 0;
}
.btn-book-dark:hover { background: var(--blue-accent); color: var(--white); }
.btn-book-dark:hover::before { background: var(--white); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23c8d8f0' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
}
.contact > .container { position: relative; z-index: 1; }
/* .contact-grid no HTML */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* .contact-info no HTML */
.contact-info {}
.contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
/* .contact-details no HTML */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* .contact-detail no HTML */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail div {
  display: flex;
  flex-direction: column;
}
.contact-detail strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-detail span,
.contact-detail a {
  font-size: 14px;
  color: var(--text-mid);
}
.contact-detail a { color: var(--blue-accent); transition: color var(--transition); }
.contact-detail a:hover { color: var(--blue-mid); }
/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  margin-top: 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,.4); }

/* ── CONTACT FORM ── */
/* .contact-form-wrap no HTML */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
/* .contact-form no HTML */
.contact-form {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group {
  position: relative;
  margin-bottom: 16px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px 6px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(30,95,168,.12);
}
.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-light);
  pointer-events: none;
  transition: all .15s ease;
  background: transparent;
}
.form-group textarea ~ label {
  top: 16px;
  transform: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: none;
  font-size: 11px;
  color: var(--blue-accent);
  font-weight: 600;
}
.form-group textarea { resize: vertical; min-height: 120px; padding-top: 20px; }
.form-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-msg.success { color: #16a34a; display: block; }
.form-msg.error   { color: #dc2626; display: block; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
/* .footer no HTML (classe na tag <footer>) */
.footer {
  background: var(--blue-dark);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.footer > .container { position: relative; z-index: 1; }
/* .footer-grid no HTML */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
/* .footer-brand no HTML */
.footer-brand {}
/* .footer-logo no HTML */
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue-accent); color: var(--white); }
/* .footer-col no HTML */
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
/* .footer-bottom no HTML */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGES
═══════════════════════════════════════════════════════════ */
.service-hero {
  background: var(--blue-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.service-hero > .container { position: relative; z-index: 1; }
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero-content .section-tag { color: rgba(255,255,255,.7); }
.service-hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-hero-content h1 span { color: var(--blue-light); }
.service-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.service-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.service-features { padding: 80px 0; background: var(--white); }
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--blue-accent); background: var(--blue-pale); transform: translateY(-2px); }
.feature-card-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.service-why { padding: 80px 0; background: var(--gray-bg); }
.service-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
}
.why-card-num { font-size: 42px; font-weight: 800; color: var(--blue-accent); line-height: 1; margin-bottom: 8px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  transition: opacity .6s ease, transform .6s ease;
}
/* Only hide elements when JS is ready to animate them */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-card { position: static; margin-top: 16px; justify-content: center; }
  .metrics .container { grid-template-columns: 1fr; gap: 40px; }
  .metrics-header { max-width: 100%; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-img { display: none; }
  .discovery-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .discovery-text p { max-width: 100%; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-actions .lang-switcher { display: none; }
  .header-actions .btn-cta { display: none; }
  .hamburger { display: flex; }
  .sol-card { min-width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-features-grid { grid-template-columns: 1fr; }
  .service-why-grid { grid-template-columns: 1fr; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-right { width: 100%; }
  .about-stats-card { flex-wrap: wrap; gap: 16px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-sep { display: none; }
}
