/* ════════════════════════════════════════════════════
   MICROTEC — CSS
   Design: alternating dark/light sections
   Palette: #111 dark · #F5F5F5 light · #F07800 orange
════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Barlow', sans-serif; background: #F5F5F5; color: #1A1A1A; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; }

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --orange:        #F07800;
  --orange-d:      #C05E00;
  --dark:          #111111;
  --dark-card:     #1C1C1C;
  --dark-border:   #2C2C2C;
  --light:         #F5F5F5;
  --light-card:    #FFFFFF;
  --light-border:  #E4E4E4;
  --text-dark:     #1A1A1A;
  --text-light:    #F0F0F0;
  --muted-dark:    #666666;
  --muted-light:   #AAAAAA;
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    0.3s ease;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ── UTILITY ─────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}
.body-text {
  font-size: 1rem;
  line-height: 1.75;
}

/* ── SECTION THEMES ──────────────────────────────── */
.section-dark {
  background: var(--dark);
  color: var(--text-light);
}
.section-light {
  background: var(--light);
  color: var(--text-dark);
}
.section-orange {
  background: var(--orange);
  color: #FFFFFF;
}

/* ── SECTION HEADER ──────────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header.center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.tag-white {
  color: rgba(255,255,255,0.85);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-dark .section-title { color: #FFFFFF; }
.section-light .section-title { color: var(--text-dark); }
.section-orange .section-title { color: #FFFFFF; }
.section-lead {
  font-size: 1rem;
  color: var(--muted-light);
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-lead { color: var(--muted-light); }
.section-light .section-lead { color: var(--muted-dark); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,120,0,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--orange);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* ── NAVBAR ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.45s, height 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: #0E0E0E;
  height: 62px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  border-bottom: 2px solid var(--orange);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-logo {
  height: 50px;
  width: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease, height 0.35s;
}
nav.scrolled .nav-brand-logo { opacity: 1; }
nav.scrolled .nav-brand-logo { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-links a:hover::after { width: 100%; }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #25D366;
  text-decoration: none;
  border: 1px solid rgba(37,211,102,0.35);
  border-radius: 6px;
  padding: 7px 14px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-wa:hover {
  background: rgba(37,211,102,0.12);
  border-color: #25D366;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  padding: 6px;
  cursor: pointer;
}
.nav-toggle svg { display: block; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 62px; right: 0;
  width: 280px; max-width: 88vw;
  height: calc(100vh - 62px);
  background: #111111;
  border-left: 1px solid var(--dark-border);
  z-index: 99;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.nav-drawer .nav-links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}
@media (min-width: 901px) {
  .nav-drawer { display: none !important; }
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Hero-v2.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.40) 45%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
}
/* Large hero logo — fades out on scroll */
.hero-logo-wrap {
  margin-bottom: 2rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-logo-wrap img {
  height: 170px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.hero-logo-wrap.fade-out {
  opacity: 0;
  transform: translateY(-18px) scale(0.72);
  pointer-events: none;
}
.hero-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  text-shadow: 0 2px 16px rgba(0,0,0,0.75), 0 0 40px rgba(240,120,0,0.3);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll-hint:hover { color: rgba(255,255,255,0.9); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── WHY MICROTEC (LIGHT) ────────────────────────── */
.why-section {
  padding: 7rem 0;
}
/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted-dark);
  font-weight: 500;
}
/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--orange);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(240,120,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.why-desc {
  font-size: 0.9rem;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* ── SERVICES (DARK) ─────────────────────────────── */
.services-section {
  padding: 7rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(240,120,0,0.08);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.service-icon {
  width: 46px; height: 46px;
  background: rgba(240,120,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.08em; }

/* CTA card */
.service-card--cta {
  background: linear-gradient(135deg, #1A1A1A 0%, #222222 100%);
  border-color: rgba(240,120,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-cta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.service-cta-title em {
  font-style: normal;
  color: var(--orange);
}
.service-cta-desc {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── APP SECTION (LIGHT) ─────────────────────────── */
.app-section {
  padding: 7rem 0;
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.app-exclusive-badge {
  display: inline-block;
  background: rgba(240,120,0,0.1);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(240,120,0,0.25);
  margin-bottom: 1rem;
}
.app-content .section-title { margin-bottom: 1rem; }
.app-content .body-text { margin-bottom: 1.5rem; color: var(--muted-dark); }

/* Camera highlight card */
.app-cam-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.app-cam-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(240,120,0,0.35);
}
.app-cam-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.app-cam-desc {
  font-size: 0.88rem;
  color: var(--muted-dark);
  line-height: 1.55;
}

.app-benefits {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.app-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--light-border);
}
.app-benefits li svg { color: var(--orange); flex-shrink: 0; }
.app-benefits li:nth-last-child(-n+2):not(:nth-child(odd) ~ li) { border-bottom: none; }
.app-benefits li:last-child { border-bottom: none; }

.app-mockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-mockup-img {
  max-height: 560px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.18));
}

/* ── ABOUT (DARK) ────────────────────────────────── */
.about {
  padding: 7rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}

/* ── ABOUT VISUAL BENTO ──────────────────────────── */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  min-height: 420px;
}
.av-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.av-card:hover {
  border-color: rgba(240,120,0,0.4);
  transform: translateY(-3px);
}
.av-card--accent {
  background: rgba(240,120,0,0.08);
  border-color: rgba(240,120,0,0.3);
}
.av-card--crt {
  background: rgba(240,120,0,0.05);
  border-color: rgba(240,120,0,0.2);
  gap: 0.6rem;
}
.av-card--crt svg { color: var(--orange); }
.av-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.av-num span { font-size: 2.2rem; }
.av-num--sla { font-size: 2.8rem; }
.av-sla {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.av-label {
  font-size: 0.8rem;
  color: var(--muted-light);
  font-weight: 500;
  margin-top: 0.3rem;
  line-height: 1.3;
}
.av-cert {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.about-content .section-title { color: #FFFFFF; margin-bottom: 1.2rem; }
.about-content .body-text { color: var(--muted-light); margin-bottom: 0.8rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.8rem 0 2rem;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted-light);
  padding: 0.5rem 0;
}
.about-feat svg { color: var(--orange); flex-shrink: 0; }

/* ── DEPOIMENTOS (LIGHT) ─────────────────────────── */
.depoimentos {
  padding: 7rem 0;
  overflow: hidden;
}
.depoimentos .wrap { margin-bottom: 3rem; }

.dep-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.dep-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}
.dep-track-set {
  display: flex;
  gap: 1.25rem;
}
.dep-track--left  { animation: dep-left  55s linear infinite; }
.dep-track--right { animation: dep-right 55s linear infinite; }
.dep-track-wrap:hover .dep-track { animation-play-state: paused; }
@keyframes dep-left  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes dep-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.depoimento-card {
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
}
.depoimento-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.dep-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.dep-text {
  font-size: 0.9rem;
  color: var(--muted-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.dep-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dep-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep-info { flex: 1; min-width: 0; }
.dep-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dep-role {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(240,120,0,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 5px;
}
.dep-place {
  font-size: 0.78rem;
  color: var(--muted-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dep-years {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-dark);
  white-space: nowrap;
  border: 1px solid var(--light-border);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ── CONTRATO (DARK) ─────────────────────────────── */
.contrato-section {
  padding: 7rem 0;
}
.contrato-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contrato-box {
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contrato-box--com {
  background: rgba(240,120,0,0.08);
  border: 1px solid rgba(240,120,0,0.3);
}
.contrato-box--sem {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  opacity: 0.7;
}
.contrato-box-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.contrato-box--com .contrato-box-header { color: var(--orange); }
.contrato-box--sem .contrato-box-header { color: var(--muted-light); }
.contrato-list {
  list-style: none;
}
.contrato-list li {
  font-size: 0.9rem;
  color: var(--muted-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contrato-box--com .contrato-list li { color: rgba(255,255,255,0.85); }
.contrato-list li:last-child { border-bottom: none; }

.contrato-inclusos {
  margin-bottom: 2.5rem;
}
.contrato-inclusos-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.contrato-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contrato-tags span {
  background: rgba(240,120,0,0.1);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(240,120,0,0.25);
}
.contrato-cta { text-align: center; }

/* ── PARTNERS (LIGHT) ────────────────────────────── */
.partners-section {
  padding: 5rem 0;
  border-top: 1px solid var(--light-border);
}
.partners-track-wrap {
  overflow: hidden;
  margin-top: 3rem;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: partners-scroll 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-set {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.partner-logo {
  display: flex;
  align-items: center;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.partner-logo:hover { opacity: 1; filter: none; }
.partner-logo img { height: 34px; width: auto; object-fit: contain; }

/* ── CONTACT (ORANGE) ────────────────────────────── */
.contact-section {
  padding: 6rem 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.contact-or {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin: 1.2rem 0 0.8rem;
  letter-spacing: 0.05em;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-detail-item:hover { color: #FFFFFF; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: #0A0A0A;
  color: #AAAAAA;
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1E1E1E;
}
.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  padding: 7px 14px;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}
.social-btn:hover { color: #FFFFFF; border-color: #444; }
.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: #666;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: #FFFFFF; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: #666;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: #FFFFFF; }
.footer-bottom {
  padding: 1.2rem 0;
  font-size: 0.8rem;
  color: #444;
  text-align: center;
}

/* ── WHATSAPP FLOAT ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1A1A1A;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .app-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contrato-compare { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .about-visual { min-height: 320px; }
}

@media (max-width: 700px) {
  .wrap { padding: 0 1.25rem; }
  nav { padding: 0 1.25rem; }
  .why-section, .services-section, .app-section,
  .about, .depoimentos, .contrato-section,
  .contact-section { padding: 5rem 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-grid   { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo-wrap img { height: 120px; }
  .hero-title { font-size: 2.2rem; }
  .app-mockup-img { max-height: 360px; }
  .about-visual { min-height: 280px; }
  .partners-section { padding: 3.5rem 0; }
}
