/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --blue-main:    #60aad9;
  --blue-dark:    #1a4a6b;
  --blue-mid:     #3580b0;
  --blue-light:   #8cc4e8;
  --blue-sky:     #b3d9f2;
  --graphite:     #1A1A2E;
  --snow:         #F0F4FF;
  --white:        #FFFFFF;
  --yellow:       #F5C518;
  --yellow-hover: #e0b210;
  --green:        #00C48C;
  --orange:       #FF6B35;
  --red:          #E74C3C;
  --cyan:         #00B4D8;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow:       0 8px 32px rgba(96,170,217,0.18);
  --shadow-hover: 0 20px 56px rgba(96,170,217,0.32);
  --font-title: 'Nunito', sans-serif;
  --font-body:  'Inter', 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--snow);
  overflow-x: hidden;
}

/* ===========================
   LANGUAGE BAR
=========================== */
#lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lang-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-bar-brand {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: 0.5px;
}
.lang-bar-brand span { color: var(--blue-main); }

.lang-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--blue-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: var(--white);
}
.lang-ic { width: 13px; height: 13px; vertical-align: -2px; }

/* Inline SVG icon utility */
.ic { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; flex-shrink: 0; }

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh;
  background: var(--blue-main);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 52px;
}

/* Animated dot grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(79,163,227,0.18);
  top: -100px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(245,197,24,0.08);
  bottom: 100px; right: -80px;
}
.glow-3 {
  width: 300px; height: 300px;
  background: rgba(0,180,216,0.12);
  top: 40%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: 1fr 1.4fr; */
  gap: 64px;
  align-items: center;
  padding: 72px 40px 40px;
  flex: 1;
}

/* Tech Logo Ring */
.logo-tech-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-orbit-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: orbit-spin 12s linear infinite;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245,197,24,0.8);
}
.dot-1 { top: -5px; left: 50%; transform: translateX(-50%); }
.dot-2 { bottom: -5px; right: 30%; }
.dot-3 { left: -5px; top: 60%; background: var(--cyan); box-shadow: 0 0 12px rgba(0,180,216,0.8); }

.logo-svg-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.logo-svg-wrap img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Hero content */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
  background: rgb(25 74 107);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.tag-dot {
  width: 6px; height: 6px;
  background: #f5c517;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 8px #f5c517;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: normal;
  display: block;
  color: var(--yellow);
  margin-top: 4px;
}

.hero-sub {
  font-size: 17px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

/* Dual CTA */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  color: var(--graphite);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(245,197,24,0.35);
  width: fit-content;
}
.btn-cta:hover {
  background: var(--yellow-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.5);
}

.btn-cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.btn-cta-alt:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.4);
}

.wa-icon {
  width: 22px; height: 22px;
  fill: var(--graphite);
  flex-shrink: 0;
}
.wa-icon-sm {
  width: 20px; height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}

.btn-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
  min-width: 0;
}
.btn-cta-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.btn-cta-sub   { font-size: 12px; opacity: 0.7; font-weight: 500; }

.btn-cta-alt .btn-cta-sub { opacity: 0.6; }

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(26,74,107,0.12);
  border: 1px solid rgba(26,74,107,0.20);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  background: rgba(26,74,107,0.18);
  border-top: 1px solid rgba(26,74,107,0.25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  flex: 1;
  min-width: 0;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
}

.stat-label {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(26,74,107,0.25);
  flex-shrink: 0;
}

/* ===========================
   SECTION COMMONS
=========================== */
section { padding: 96px 40px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
    display: block;
    width: fit-content;
    max-width: min(100%, 420px);
    margin: 0 auto 16px auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: rgba(53,128,176,0.10);
    padding: 6px 16px;
    border-radius: 20px;
    text-align: center;
    overflow-wrap: anywhere;
}
.section-label.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-inner > .section-label {
  display: block;
  text-align: center;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   SOBRE
=========================== */
#sobre { background: var(--white); }

.sobre-card {
  background: var(--snow);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(96,170,217,0.10);
}

.sobre-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}
.sobre-text p strong { color: var(--blue-mid); }

.sobre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chip {
  background: rgba(53,128,176,0.10);
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(53,128,176,0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.sobre-highlight-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.sobre-highlight-card.primary {
  background: var(--blue-main);
  color: white;
}
.sobre-highlight-card.secondary {
  background: rgba(96,170,217,0.08);
  border: 1px solid rgba(96,170,217,0.15);
  color: var(--blue-dark);
}

.sobre-highlight-card .big-num {
  font-family: var(--font-title);
  font-size: 60px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.sobre-highlight-card.primary p { font-size: 15px; color: #fff; margin-top: 10px; line-height: 1.5; }
.sobre-highlight-card.secondary p { font-size: 15px; color: #555; margin-top: 8px; line-height: 1.5; }
.highlight-icon { width: 40px; height: 40px; display: block; margin: 0 auto 8px; color: var(--white); }
.sobre-highlight-card.secondary .highlight-icon { color: var(--blue-main); }
.highlight-icon svg { width: 100%; height: 100%; }

/* ===========================
   PROCESSO / TIMELINE
=========================== */
#processo {
  background: var(--snow);
}

.processo-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  min-width: 0;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(96,170,217,0.40);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.step-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--blue-main);
  margin-top: 28px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
}

/* ===========================
   SERVIÇOS
=========================== */
#servicos { background: var(--white); }

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

.servico-card {
  background: var(--snow);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--blue-main);
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.servico-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.servico-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(96,170,217,0.12);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.servico-icon-wrap svg { width: 22px; height: 22px; }

.servico-card h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: var(--graphite);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.servico-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.servico-card ul li {
  font-size: 14px;
  color: #555;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}
.servico-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 13px;
}

.servico-destaque {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(96,170,217,0.10);
  color: var(--blue-mid);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.servicos-quote {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--snow);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--yellow);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ===========================
   DIFERENCIAL
=========================== */
#diferencial {
  background: var(--blue-main);
  position: relative;
  overflow: hidden;
}

.dif-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

#diferencial .section-title { color: var(--white); }
#diferencial .section-sub   { color: rgba(255,255,255,0.6); }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.dif-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.dif-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.dif-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,255,255,0.25);
}
.dif-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: var(--white);
}

.dif-card h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.dif-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* ===========================
   PARA QUEM É
=========================== */
#para-quem { background: var(--snow); }

.pq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pq-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pq-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 2px var(--blue-main);
}

.pq-icon-wrap {
  display: none;
}

.pq-emoji {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 16px;
  color: var(--blue-main);
}
.pq-emoji svg { width: 100%; height: 100%; }
.pq-card p {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

/* ===========================
   CONTATO WHATSAPP
=========================== */
#contato-wa {
  background: var(--white);
}

.wa-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.wa-contact-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.wa-contact-card.wa-pt {
  background: #e8f4fd;
  border-color: rgba(96,170,217,0.20);
}
.wa-contact-card.wa-es {
  background: #f0fff8;
  border-color: rgba(0,196,140,0.2);
}

.wa-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}

.wa-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.12;
  transition: opacity 0.3s;
}
.wa-pt .wa-card-glow   { background: var(--blue-main); }
.wa-es .wa-card-glow   { background: var(--green); }
.wa-contact-card:hover .wa-card-glow { opacity: 0.2; }

.wa-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.wa-flag-emoji { width: 36px; height: 36px; display: block; }
.wa-flag-emoji svg { width: 100%; height: 100%; }

.wa-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,196,140,0.12);
  color: #008a60;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.online-dot {
  width: 6px; height: 6px;
  background: #00C48C;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.wa-contact-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.wa-contact-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

.wa-phone-display {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dark);
}
.wa-pt .wa-phone-display { color: var(--blue-mid); }
.wa-es .wa-phone-display { color: #008a60; }

.wa-phone-icon {
  width: 20px; height: 20px;
}
.wa-pt .wa-phone-icon { fill: var(--blue-mid); }
.wa-es .wa-phone-icon { fill: #00C48C; }

.wa-card-cta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: letter-spacing 0.2s;
  overflow-wrap: anywhere;
}
.wa-pt .wa-card-cta { color: var(--blue-mid); }
.wa-es .wa-card-cta { color: #008a60; }
.wa-contact-card:hover .wa-card-cta { letter-spacing: 0.8px; }

/* ===========================
   CTA FINAL
=========================== */
#cta-final {
  background: var(--blue-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

#cta-final .section-title { color: var(--blue-dark); font-size: clamp(2rem, 4vw, 3rem); }
#cta-final .section-sub   { color: var(--blue-dark); }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  background: var(--white) !important;
  color: var(--blue-dark) !important;
  box-shadow: 0 6px 28px rgba(255,255,255,0.2) !important;
}
.btn-cta-white:hover {
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 12px 40px rgba(255,255,255,0.3) !important;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 32px;
}
.footer-logo span { color: var(--yellow); }

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--white);
}
.footer-contact-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.footer-contact-item svg {
  width: 24px; height: 24px;
  fill: #25D366;
  flex-shrink: 0;
}
.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.footer-contact-lang {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-contact-num {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin: 24px auto 0;
  max-width: 680px;
  text-align: center;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

/* ===========================
   WHATSAPP FLOATING POPUP
=========================== */
#wa-float-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

#wa-float-toggle {
  width: 62px; height: 62px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: all 0.2s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
#wa-float-toggle:hover {
  transform: scale(1.1);
  animation: none;
}
#wa-float-toggle svg {
  width: 32px; height: 32px;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 44px rgba(37,211,102,0.8); }
}

#wa-float-menu {
  position: absolute;
  bottom: 76px;
  right: 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.18);
  padding: 16px;
  min-width: 296px;
  display: none;
  border: 1px solid rgba(0,0,0,0.06);
}
#wa-float-menu.open {
  display: block;
  animation: slideMenuUp 0.2s ease;
}
@keyframes slideMenuUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wa-menu-title {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px 12px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 8px;
}

.wa-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--graphite);
  transition: background 0.15s;
}
.wa-menu-item:hover { background: var(--snow); }

.wa-menu-flag { width: 24px; height: 24px; flex-shrink: 0; }
.wa-menu-flag svg { width: 100%; height: 100%; }

.wa-menu-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.wa-menu-lang {
  font-size: 14px;
  font-weight: 700;
  color: var(--graphite);
  overflow-wrap: anywhere;
}
.wa-menu-num {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.wa-menu-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 56px 24px 32px;
  }
  .hero-logo { order: -1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-group { align-items: center; }
  .hero-badges { justify-content: center; }

  .hero-stats {
    gap: 24px;
    display: grid;
    padding: 24px;
  }
  .stat-item { padding: 0 24px; }
  .stat-divider { display: none; }

  .logo-orbit-ring { width: 240px; height: 240px; }
  .logo-svg-wrap { width: 200px; height: 200px; }

  .sobre-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .processo-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 0;
    align-items: flex-start;
  }
  .step-content { min-width: 0; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .step-connector {
    width: 2px; height: 32px;
    margin: 0 0 0 27px;
    background: var(--blue-main);
  }
  .step-connector::after { display: none; }

  .wa-contact-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  section { padding: 72px 20px; }
  #lang-bar .lang-bar-inner { padding: 10px 20px; }
  .lang-bar-brand { font-size: 13px; }
  .lang-bar-inner { gap: 12px; }

  .section-label {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 15px; }
  .hero-tag {
    justify-content: center;
    text-align: center;
  }

  .btn-cta, .btn-cta-alt { width: 100%; justify-content: flex-start; }

  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid      { grid-template-columns: 1fr; }
  .pq-grid       { grid-template-columns: 1fr; }

  .servicos-quote { padding: 24px; font-size: 16px; }
  .cta-btns { flex-direction: column; align-items: center; }

  .wa-contact-card {
    padding: 28px 22px;
  }
  .wa-contact-card h3 {
    font-size: 18px;
  }
  .wa-phone-display {
    font-size: 16px;
  }

  #wa-float-wrap { bottom: 20px; right: 20px; }
  #wa-float-menu {
    min-width: min(260px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    right: 0;
  }

  .footer-contacts { flex-direction: column; align-items: center; }
  .footer-links {
    gap: 14px 20px;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .pq-grid { grid-template-columns: 1fr; }
  .lang-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .lang-btns {
    justify-content: center;
  }
  .stat-item {
    width: 50%;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }
  .stat-num { font-size: 32px; }
  #wa-float-wrap {
    right: 16px;
    bottom: 16px;
  }
  #wa-float-menu {
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    right: -4px;
  }
}
