/* ============================================================
   BM TEC Brasil — styles.css  (redesign v2)
   ============================================================ */

/* 01. Reset & Variables
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0E1E55;
  --dark-2:      #091644;
  --dark-3:      #162467;
  --blue:        #1B5FAA;
  --blue-bright: #2474CC;
  --accent:      #7EC8FF;
  --accent-dark: #5BB8F5;
  --light:       #F0F5FB;
  --white:       #FFFFFF;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --r:           12px;
  --r-sm:        8px;
  --shadow:      0 2px 20px rgba(14,30,85,.08);
  --shadow-lg:   0 8px 48px rgba(14,30,85,.16);
  --tr:          0.28s ease;
  --font-h:      'Poppins', sans-serif;
  --font-b:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

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

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tr); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* 02. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark-2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}
.eyebrow--light { color: var(--accent); }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,.65); }

/* 03. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8125rem 2rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--tr);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-orange {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-orange:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126,200,255,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* 04. Navbar
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}
.navbar {
  padding: 1.125rem 0;
  background: transparent;
  transition: background var(--tr), padding var(--tr), box-shadow var(--tr);
}
.navbar--scrolled {
  position: relative;
  padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
/* backdrop no pseudo-elemento para não criar containing block para position:fixed filhos */
.navbar--scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 46, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-logo {
  flex-shrink: 0;
}
.navbar-logo img {
  height: 38px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 50px;
  transition: width var(--tr);
}
.nav-link:hover,
.nav-link--active { color: var(--white); }
.nav-link:hover::after,
.nav-link--active::after { width: 100%; }

.navbar-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 50px;
  transition: transform var(--tr), opacity var(--tr);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 05. Hero Slider — estilo Dana Containers
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Zoom-in Ken Burns on active slide */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: none;
}
.slide.active::before {
  animation: kenBurns 8s ease forwards;
}

/* Overlay gradient — left-heavy to let text breathe */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 30, 85, 0.88) 0%,
    rgba(14, 30, 85, 0.70) 45%,
    rgba(14, 30, 85, 0.30) 100%
  );
}
.slide-overlay--blue {
  background: linear-gradient(
    105deg,
    rgba(10, 30, 90, 0.90) 0%,
    rgba(20, 50, 130, 0.65) 45%,
    rgba(14, 30, 85, 0.25) 100%
  );
}
.slide-overlay--teal {
  background: linear-gradient(
    105deg,
    rgba(5, 25, 60, 0.92) 0%,
    rgba(0, 60, 80, 0.72) 45%,
    rgba(0, 40, 60, 0.30) 100%
  );
}

/* Content area — vertically centered */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px; /* navbar offset */
}

.slide-text {
  max-width: 700px;
}

/* Animated elements — reset before slide is active */
.slide-tag,
.slide-h1,
.slide-sub,
.slide-btns {
  opacity: 0;
  transform: translateY(28px);
}

/* Staggered fade-up when slide becomes active */
.slide.active .slide-tag  { animation: slideUp .65s ease .35s forwards; }
.slide.active .slide-h1   { animation: slideUp .7s  ease .52s forwards; }
.slide.active .slide-sub  { animation: slideUp .65s ease .68s forwards; }
.slide.active .slide-btns { animation: slideUp .65s ease .84s forwards; }

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1.125rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.slide-tag i { color: var(--accent); }

.slide-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 1.25rem;
}
.slide-h1 em {
  color: var(--accent);
  font-style: normal;
}

.slide-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px; height: 54px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow--prev { left: 2rem; }
.slider-arrow--next { right: 2rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .625rem;
  z-index: 20;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50px;
  background: rgba(255,255,255,.38);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s ease;
}
.slider-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 20;
}
.slider-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
}


/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue i { font-size: 1.25rem; color: rgba(255,255,255,.4); }

/* 06. Sobre (About) — estilo Dana Containers
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Bloco de imagem esquerdo */
.about-img-block {
  position: relative;
  flex-shrink: 0;
}
.about-img-block img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Badge flutuante de anos */
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  border-radius: 14px;
  padding: 1.375rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .2rem;
  box-shadow: 0 8px 32px rgba(14,30,85,.3);
}
.about-badge-num {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-badge-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* Conteúdo direito */
.about-h2 {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-h2 strong { color: var(--dark); }

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Lista de checks */
.about-checks {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin: 1.5rem 0 0;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--text);
}
.about-checks li i {
  color: var(--dark);
  font-size: .875rem;
  flex-shrink: 0;
}

/* Stats inline */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.75rem 0;
  margin: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.about-stat-sfx {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  color: var(--accent);
}
.about-stat-label {
  display: block;
  font-size: .8125rem;
  color: var(--muted);
  margin-top: .375rem;
  font-weight: 500;
}

/* 07. Serviços (Services Grid)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: all var(--tr);
  cursor: default;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 1rem;
  transition: background var(--tr);
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .375rem;
}
.service-card p { font-size: .8125rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* 08. Soluções integradas aos Serviços
   ============================================================ */

/* Título separador antes do sol-grid */
.sol-section-header {
  margin-bottom: 2rem;
}
.sol-section-title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.sol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
}
.sol-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Imagem do card */
.sol-card-img {
  position: relative;
  overflow: hidden;
}
.sol-card-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.sol-card:hover .sol-card-img img { transform: scale(1.04); }

/* Faixa colorida no topo da imagem */
.sol-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.sol-card-img--blue::after   { background: var(--blue-bright); }
.sol-card-img--accent::after { background: var(--dark); }
.sol-card-img--teal::after   { background: #00C2A8; }

/* Corpo do card */
.sol-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sol-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .75rem;
}
.sol-card-body > p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Tag de segmento */
.sol-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  border: 1px solid;
  margin-bottom: 1rem;
  width: fit-content;
}
.sol-tag--blue   { color: var(--blue);  border-color: rgba(27,95,170,.3);   background: rgba(27,95,170,.07); }
.sol-tag--accent { color: var(--dark);  border-color: rgba(14,30,85,.2);    background: rgba(14,30,85,.06); }
.sol-tag--teal   { color: #007A6E;      border-color: rgba(0,154,140,.3);   background: rgba(0,154,140,.07); }

/* Lista de features */
.sol-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.sol-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text);
}
.sol-feature i { font-size: .7rem; flex-shrink: 0; }
.sol-feature--blue   i { color: var(--blue); }
.sol-feature--accent i { color: var(--dark); }
.sol-feature--teal   i { color: #009E8C; }

/* Botão alinhado ao fundo do card */
.sol-btn { align-self: flex-start; font-size: .875rem; padding: .625rem 1.5rem; }


/* 10. Depoimentos (Testimonials)
   ============================================================ */

/* Slider wrapper */
.testimonials-slider {
  position: relative;
  margin: 0 3rem;
}
.ts-track-wrap {
  overflow: hidden;
  border-radius: var(--r);
}
.ts-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.ts-slide {
  min-width: 100%;
}

/* Card horizontal */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.75rem 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; right: 2rem;
  font-size: 9rem;
  line-height: 1;
  color: var(--light);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Lado esquerdo — avatar + nome */
.t-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 130px;
  gap: .875rem;
}
.t-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: 0 2px 10px rgba(14,30,85,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.t-name {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text);
  display: block;
}
.t-role {
  font-size: .8125rem;
  color: var(--muted);
  display: block;
  margin-top: .2rem;
}

/* Divisor vertical */
.t-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* Lado direito — estrelas + texto */
.t-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.t-stars {
  display: flex;
  gap: 3px;
  color: #FBB040;
  font-size: .875rem;
  margin-bottom: 1rem;
}
.t-text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: .875rem;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), box-shadow var(--tr);
  z-index: 2;
  box-shadow: var(--shadow);
}
.ts-arrow:hover { background: var(--blue); color: var(--white); }
.ts-arrow--prev { left: -2.75rem; }
.ts-arrow--next { right: -2.75rem; }

/* Dots */
.ts-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.ts-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.ts-dot--active {
  background: var(--blue);
  transform: scale(1.35);
}

/* 11. Contato (Contact)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.8); }
.form-group label span { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8125rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: .9375rem;
  transition: border-color var(--tr), background var(--tr);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-bright);
  background: rgba(255,255,255,.1);
}
.form-group--error input,
.form-group--error textarea { border-color: #F87171; }
.form-error { font-size: .75rem; color: #F87171; min-height: 1rem; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  line-height: 1.6;
}
.form-disclaimer a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* Contact info */
.contact-info h3 {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(27,95,170,.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #7EB8F7;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .15rem;
}
.contact-item a,
.contact-item span {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  transition: color var(--tr);
}
.contact-item a:hover { color: var(--accent); }

.contact-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.contact-map iframe {
  width: 100%;
  height: 240px;
  display: block;
  filter: brightness(.85);
}

/* 12. Footer
   ============================================================ */
.footer {
  background: #070F1C;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-block: 4rem;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.footer-social { display: flex; gap: .625rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  transition: all var(--tr);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }

.footer-col h4 {
  font-family: var(--font-h);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col li { font-size: .875rem; color: rgba(255,255,255,.4); }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* 13. WhatsApp Float
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr);
  animation: waPulse 3.5s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,.65);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #0C1A2E;
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
  box-shadow: var(--shadow);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0C1A2E;
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* 14. Dropdown nav
   ============================================================ */
.nav-item--dropdown { position: relative; }
.nav-link--dropdown { display: flex; align-items: center; gap: .35rem; }
.nav-link--dropdown .fa-chevron-down {
  transition: transform var(--tr);
  font-size: .65rem;
}
.nav-item--dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0C1A2E;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  min-width: 210px;
  padding: .5rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 950;
}
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.nav-dropdown li a i { color: var(--accent); font-size: .8rem; width: 14px; text-align: center; }

/* 15. Páginas internas — Hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  overflow: hidden;
}

/* Camada de imagem com Ken Burns */
.page-hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  animation: pageHeroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}
@keyframes pageHeroKenBurns {
  from { transform: scale(1)    translate(0,     0   ); }
  to   { transform: scale(1.13) translate(-1.5%, 1.2%); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,30,85,.92) 0%, rgba(14,30,85,.75) 50%, rgba(14,30,85,.4) 100%);
  z-index: 1;
}
.page-hero-overlay--teal {
  background: linear-gradient(105deg, rgba(5,25,60,.94) 0%, rgba(0,80,90,.75) 50%, rgba(0,60,80,.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1.125rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.page-hero-tag--teal { border-color: rgba(0,194,168,.4); color: #33D9C4; }
.page-hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.page-hero-h1 em { color: var(--accent); font-style: normal; }
.page-hero-sub {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* 16. Páginas internas — Grade de serviços
   ============================================================ */
.page-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.page-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: box-shadow var(--tr), transform var(--tr);
}
.page-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.page-service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.125rem;
}
.page-service-icon--blue   { background: rgba(27,95,170,.1);  color: var(--blue); }
.page-service-icon--accent { background: rgba(14,30,85,.08);  color: var(--dark); }
.page-service-icon--teal   { background: rgba(0,194,168,.1);  color: #007A6E; }
.page-service-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.page-service-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* 17. Páginas internas — Grade de módulos
   ============================================================ */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.modulo-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: box-shadow var(--tr);
}
.modulo-card:hover { box-shadow: var(--shadow-lg); }
.modulo-icon {
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: .125rem;
}
.modulo-icon--accent { color: var(--dark); }
.modulo-icon--teal   { color: #007A6E; }
.modulo-card h4 {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .375rem;
}
.modulo-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* 18. Páginas internas — CTA banner
   ============================================================ */
.page-cta-section {
  background: linear-gradient(135deg, #0E1E55 0%, #091644 100%);
  padding-block: 4rem;
}
.page-cta-section--teal {
  background: linear-gradient(135deg, #05193C 0%, #003C50 100%);
}
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-cta-title {
  font-family: var(--font-h);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}
.page-cta-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 520px;
}
.page-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* 19. Keyframes
   ============================================================ */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  60%      { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .8; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: .3; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* 15. Scroll cue
   ============================================================ */
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue i { font-size: 1.375rem; color: rgba(255,255,255,.35); }

/* 16. Nav overlay (mobile)
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 899;
}
.nav-overlay.active { display: block; }

/* Nav close button (X) inside mobile drawer */
.nav-close-btn {
  display: none; /* hidden on desktop */
  position: absolute;
  top: 1.125rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
  z-index: 910;
}
.nav-close-btn:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* 17. About standalone image (seção diferenciais)
   ============================================================ */
img.about-img {
  width: 100%;
  max-width: 560px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* 18. Why-us — coluna de 3 imagens
   ============================================================ */
.why-img-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.why-img-main {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: block;
}
.why-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.why-img-sq {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  display: block;
}

/* 19. FAQ Accordion
   ============================================================ */
.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--tr);
}
.faq-item.open {
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,30,85,.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color var(--tr), background var(--tr);
  line-height: 1.45;
}
.faq-question:hover { color: var(--dark); background: rgba(14,30,85,.02); }
.faq-item.open .faq-question { color: var(--dark); }
.faq-icon {
  font-size: .75rem;
  color: var(--dark);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* 20. Power BI solution card image
   ============================================================ */
.sol-img-wrap {
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.sol-img-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* 21. Blog — listagem e artigos
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .625rem;
  display: flex;
  gap: .75rem;
}
.blog-card-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: .75rem;
}
.blog-card-link {
  margin-top: auto;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* Post individual */
.post-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.post-meta i { color: var(--blue); }
.post-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.post-nav a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color var(--tr);
}
.post-nav a:hover { color: var(--dark); }
.article-body { max-width: 800px; margin: 0 auto; }
.article-body h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 .875rem;
}
.article-body h3 {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 .625rem;
}
.article-body h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 .5rem;
}
.article-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: .375rem;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--blue); text-decoration: underline; }
.article-body pre {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.article-body code {
  font-family: 'Courier New', monospace;
  font-size: .875rem;
  color: var(--dark);
}
.article-body pre code { display: block; }
.article-body img {
  border-radius: var(--r-sm);
  margin: 1rem 0;
  max-width: 100%;
  height: auto;
  display: block;
}
.article-body p img {
  margin: .75rem 0;
}
/* Remover espaço extra de parágrafos que contêm só uma imagem */
.article-body p:has(> img:only-child) {
  margin: 0;
  line-height: 0;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.5rem 0;
}
.article-body blockquote p { margin-bottom: 0; }
