/* ==========================================================================
   CALISTECH V3 — DESIGN SYSTEM & GLOBAL STYLES (PREMIUM EDITION)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --primary-navy: #040817;
  --secondary-navy: #091026;
  --tertiary-navy: #0d1530;
  --accent-blue: #005dff;
  --accent-cyan: #00e5ff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card-light: #ffffff;
  --border-light: #e2e8f0;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Container & Shadows */
  --max-width: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0, 93, 255, 0.04), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-lg: 0 10px 30px rgba(0, 93, 255, 0.08), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-glow: 0 0 25px rgba(0, 93, 255, 0.35);
  --shadow-glow-cyan: 0 0 25px rgba(0, 229, 255, 0.3);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Transition */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- LAYOUT WRAPPER --- */
.v3-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TOPBAR --- */
.v3-topbar {
  background: var(--bg-card-light);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 13.5px;
}
.v3-topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3-topbar-left {
  color: var(--text-muted);
}
.v3-topbar-left strong {
  color: var(--accent-blue);
  font-weight: 600;
}
.v3-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.v3-topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 500;
}
.v3-topbar-link:hover {
  color: var(--accent-blue);
}
.v3-topbar-link svg {
  width: 14px;
  height: 14px;
  color: var(--accent-blue);
}
.v3-topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--border-light);
  padding-left: 14px;
}
.v3-topbar-socials a {
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
}
.v3-topbar-socials a:hover {
  color: #ffffff;
  background: var(--accent-blue);
  transform: translateY(-2px);
}
.v3-topbar-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Language Switcher in Topbar */
.v3-lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid var(--border-light);
  padding-left: 14px;
  font-weight: 600;
  font-size: 12px;
}
.v3-lang-btn {
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}
.v3-lang-btn:hover {
  color: var(--accent-blue);
  background: var(--bg-light);
}
.v3-lang-btn.active {
  color: #ffffff;
  background: var(--accent-blue);
}

.v3-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.v3-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-smooth);
}
.v3-navbar.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-md);
}
.v3-navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.v3-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}
.v3-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.v3-menu-item {
  position: relative;
}
.v3-menu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}
.v3-menu-link:hover, .v3-menu-link.active {
  color: var(--accent-blue);
  background: rgba(0, 93, 255, 0.04);
}
.v3-menu-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

/* Dropdown */
.v3-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 285px;
  padding: 10px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.v3-menu-item:hover .v3-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.v3-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}
.v3-dropdown a:hover {
  background: rgba(0, 93, 255, 0.05);
  color: var(--accent-blue);
}

.v3-btn-solicitar {
  background: var(--accent-blue);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(0, 93, 255, 0.2);
}
.v3-btn-solicitar:hover {
  background: #004ecc;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.v3-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}
.v3-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- HERO --- */
.v3-hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #050a1c 0%, #0c162e 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.v3-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  filter: grayscale(100%);
}
.v3-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 0;
}
.v3-hero-content {
  max-width: 580px;
}
.v3-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.v3-hero-title .highlight-box {
  background: #005dff;
  color: #ffffff;
  padding: 2px 14px;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid #00d2ff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  margin: 0 4px;
  font-weight: 800;
}
.v3-hero-title .highlight-underline {
  border-bottom: 5px solid #00e5ff;
  padding-bottom: 2px;
  display: inline-block;
}
.v3-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.v3-btn-atendimento {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), #004ecc);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
}
.v3-btn-atendimento:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.v3-hero-photo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 500px;
}
.v3-hero-photo img {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 93, 255, 0.2);
  border: 2px solid rgba(0, 93, 255, 0.2);
}

@media (max-width: 900px) {
  .v3-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  .v3-hero-content {
    max-width: 100%;
  }
  .v3-hero-photo {
    display: none;
  }
}

/* --- STATS COUNTERS --- */
.v3-counters {
  background: var(--bg-light);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}
.v3-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.v3-counter-item {
  padding: 10px;
}
.v3-counter-num {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1.1;
  margin-bottom: 8px;
}
.v3-counter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .v3-counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- HEADERS & SECTIONS --- */
.v3-section-title {
  font-family: var(--font-headings);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--secondary-navy);
  line-height: 1.2;
}
.v3-section-title span {
  color: var(--accent-blue);
}
.v3-underline {
  width: 50px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: var(--radius-sm);
  margin-top: 14px;
  margin-bottom: 24px;
}
.v3-underline.center {
  margin-left: auto;
  margin-right: auto;
}
.v3-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

/* --- SERVICES GRID --- */
.v3-services {
  background: #ffffff;
  padding: 80px 0;
}
.v3-services-head {
  text-align: center;
  margin-bottom: 56px;
}
.v3-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 16px auto 0;
}
.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.v3-svc-card {
  background: var(--bg-card-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.v3-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 93, 255, 0.2);
}
.v3-svc-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.v3-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.v3-svc-card:hover .v3-svc-img img {
  transform: scale(1.05);
}
.v3-svc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v3-svc-body h3 {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.v3-svc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.v3-btn-saiba {
  align-self: flex-start;
  display: inline-block;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1.5px solid var(--accent-blue);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  margin-top: auto;
}
.v3-btn-saiba:hover {
  background: var(--accent-blue);
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .v3-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .v3-services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WHATSAPP CTA BANNER --- */
.v3-fale-wrap {
  background: #ffffff;
  padding: 0 0 80px;
}
.v3-fale-banner {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.v3-fale-icon {
  background: rgba(37, 211, 102, 0.1);
  padding: 16px;
  border-radius: 50%;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-fale-icon svg {
  width: 56px;
  height: 56px;
}
.v3-fale-left {
  flex: 1;
}
.v3-fale-left h2 {
  font-family: var(--font-headings);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.v3-fale-bar {
  width: 40px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 2px;
}
.v3-fale-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v3-fale-right p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
}
.v3-btn-whatsapp {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
}
.v3-btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .v3-fale-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .v3-fale-right {
    align-items: center;
  }
  .v3-btn-whatsapp {
    align-self: center;
  }
}

/* --- WHY OUTSOURCE (TERCEIRIZAR) --- */
.v3-terceirizar {
  background: linear-gradient(135deg, #040816 0%, #0045ce 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.v3-terceirizar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}
.v3-terceirizar::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 93, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.v3-terceirizar-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.v3-terceirizar-left {
  flex: 0 0 420px;
}
.v3-terceirizar-left .v3-label {
  color: var(--accent-cyan);
}
.v3-terceirizar-left .v3-section-title {
  color: #ffffff;
}
.v3-terceirizar-left .v3-underline {
  background: var(--accent-cyan);
}
.v3-terceirizar-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 32px;
}
.v3-btn-saibamais {
  display: inline-block;
  background: #ffffff;
  color: var(--accent-blue) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}
.v3-btn-saibamais:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}
.v3-terceirizar-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.v3-terc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.v3-terc-card:hover {
  background: #ffffff;
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 93, 255, 0.15);
}
.v3-terc-card-icon {
  margin-bottom: 16px;
  color: var(--accent-cyan);
  display: flex;
}
.v3-terc-card-icon svg {
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 93, 255, 0.2);
}
.v3-terc-card h4 {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 8px;
}
.v3-terc-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .v3-terceirizar-inner {
    flex-direction: column;
    gap: 48px;
  }
  .v3-terceirizar-left {
    flex: 1;
    text-align: center;
  }
  .v3-terceirizar-left .v3-underline {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .v3-terceirizar-cards {
    grid-template-columns: 1fr;
  }
}

/* --- ABOUT PREVIEW (QUEM SOMOS) --- */
.v3-quem {
  background: #ffffff;
  padding: 80px 0;
}
.v3-quem-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.v3-quem-left {
  flex: 1.2;
}
.v3-quem-left p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.v3-quem-right {
  flex: 1;
  position: relative;
  display: block;
  width: 360px;
  height: 440px;
  margin: 0 auto;
}
.v3-quem-person {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.v3-quem-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}
.v3-quem-anos {
  position: absolute;
  bottom: 40px;
  left: -25px;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 93, 255, 0.25);
  z-index: 3;
  text-align: center;
  min-width: 130px;
}
.v3-quem-anos .num {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.v3-quem-anos .label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.3;
}
.v3-quem-backdrop {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: #f0f7ff;
  border-radius: 12px;
  z-index: 1;
}
.v3-quem-frame-tr {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border-top: 6px solid #005dff;
  border-right: 6px solid #005dff;
  z-index: 1;
  border-top-right-radius: 8px;
}
.v3-quem-dots {
  position: absolute;
  left: -35px;
  top: 15%;
  width: 70px;
  height: 110px;
  background-image: radial-gradient(rgba(0, 93, 255, 0.25) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 1;
}
.v3-quem-ring {
  position: absolute;
  right: -30px;
  bottom: 15%;
  width: 90px;
  height: 90px;
  border: 3px solid rgba(0, 93, 255, 0.15);
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 900px) {
  .v3-quem-inner {
    flex-direction: column;
    text-align: center;
  }
  .v3-quem-left .v3-underline {
    margin-left: auto;
    margin-right: auto;
  }
  .v3-quem-right {
    width: 360px;
    max-width: 100%;
    height: 440px;
    margin: 40px auto 0;
  }
}

/* --- TRUST PROMISE (CONFIANÇA) --- */
.v3-confianca {
  background: var(--bg-light);
  padding: 80px 0;
}
.v3-confianca-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.v3-confianca-card {
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  overflow: hidden;
}
.v3-confianca-left {
  flex: 1;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.v3-confianca-img-wrap {
  position: relative;
  text-align: center;
}
.v3-confianca-img-wrap img {
  max-height: 220px;
  mix-blend-mode: multiply;
}
.v3-confianca-right {
  flex: 1.3;
  padding: 48px;
}
.v3-confianca-right h2 {
  font-family: var(--font-headings);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--secondary-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.v3-confianca-right p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .v3-confianca-card {
    flex-direction: column;
  }
  .v3-confianca-right {
    padding: 32px 24px;
  }
}

/* --- TESTIMONIALS SLIDER --- */
.v3-testimonials {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}
.v3-testimonials-outer {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.v3-testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.v3-testimonial-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  width: 320px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}
.v3-testimonial-card:hover {
  border-color: rgba(0, 93, 255, 0.2);
  box-shadow: var(--shadow-md);
}
.v3-testimonial-stars {
  color: #fbbf24;
  font-size: 15px;
}
.v3-testimonial-text {
  font-size: 13.5px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}
.v3-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v3-testimonial-avatar {
  width: 38px;
  height: 38px;
  background: #e0f0ff;
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.v3-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-navy);
}
.v3-testimonial-local {
  font-size: 11px;
  color: var(--text-muted);
}

/* --- PARTNERS --- */
.v3-parceiros {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.v3-parceiros h3 {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.v3-parceiros-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.v3-parceiro {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.65;
  transition: var(--transition-smooth);
}
.v3-parceiro:hover {
  opacity: 1;
  color: var(--accent-blue);
}

/* --- LATEST NEWS (NOTÍCIAS) --- */
.v3-noticias {
  background: #ffffff;
  padding: 80px 0;
}
.v3-noticias-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.v3-noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.v3-noticia-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.v3-noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 93, 255, 0.15);
}
.v3-noticia-img {
  height: 180px;
  overflow: hidden;
}
.v3-noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.v3-noticia-card:hover .v3-noticia-img img {
  transform: scale(1.05);
}
.v3-noticia-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v3-noticia-data {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.v3-noticia-titulo {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.v3-noticia-resumo {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.v3-noticia-ler {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .v3-noticias-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .v3-noticias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .v3-noticias-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT SECTION (INTERACTIVE WAVES) --- */
.v3-contacto {
  position: relative;
  background: var(--bg-light);
  padding: 80px 0;
  overflow: hidden;
}
.v3-contacto-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.v3-contacto-waves path {
  transition: transform 0.1s ease-out;
}
.v3-contacto-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.v3-contacto-left {
  display: flex;
  justify-content: center;
}
.v3-contacto-person img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}
.v3-contacto-right {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.v3-contacto-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.v3-contacto-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 93, 255, 0.05);
  color: var(--accent-blue);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}
.v3-contacto-phone svg {
  width: 16px;
  height: 16px;
}

/* Form Styles */
.calistech-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v3-form-row {
  display: flex;
  gap: 16px;
}
.v3-form-input, .v3-form-select, .v3-form-textarea {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
}
.v3-form-input:focus, .v3-form-select:focus, .v3-form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 93, 255, 0.1);
}
.v3-form-textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 8px;
}
.v3-form-submit {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}
.v3-form-submit:hover {
  background: #004ecc;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .v3-contacto-inner {
    grid-template-columns: 1fr;
  }
  .v3-contacto-left {
    display: none;
  }
}
@media (max-width: 600px) {
  .v3-form-row {
    flex-direction: column;
    gap: 16px;
  }
  .v3-contacto-right {
    padding: 24px;
  }
}

/* --- FOOTER --- */
.v3-footer {
  background: #060c24;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.v3-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.v3-footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}
.v3-footer-logo p {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.v3-footer-socials {
  display: flex;
  gap: 8px;
}
.v3-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.v3-footer-socials a:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}
.v3-footer-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.v3-footer-col h4 {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.v3-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v3-footer-col li {
  font-size: 13.5px;
}
.v3-footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.v3-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v3-footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}
.v3-footer-contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.v3-footer-contact-line a {
  color: inherit;
}
.v3-footer-contact-line a:hover {
  color: #ffffff;
}
.v3-footer-bottom-bar {
  background: #040819;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.v3-footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 991px) {
  .v3-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .v3-footer-inner {
    grid-template-columns: 1fr;
  }
  .v3-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* --- MOBILE NAVIGATION PANEL --- */
.v3-mobile-menu {
  background: var(--bg-card-light);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border-light);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}
.v3-mobile-menu.open {
  display: flex;
}
.v3-mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}
.v3-mobile-menu a:hover {
  background: rgba(0, 93, 255, 0.04);
  color: var(--accent-blue);
}
.v3-mobile-menu-cta {
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  text-align: center;
  margin-top: 10px;
}
.v3-mobile-menu-cta:hover {
  background: #004ecc !important;
}

/* Language switch in mobile menu */
.v3-mobile-lang {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .v3-menu, .v3-btn-solicitar, .v3-topbar-socials, .v3-lang-switcher {
    display: none;
  }
  .v3-hamburger {
    display: flex;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.v3-floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse-whatsapp 2s infinite;
}
.v3-floating-whatsapp:hover {
  background: #20ba59;
  transform: scale(1.05);
}
.v3-floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- MARKETING LANDING PAGE & CARDS --- */
.v3-mkt-hero {
  background: linear-gradient(135deg, #050a1c 0%, #0d1530 100%);
  padding: 100px 0 80px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.v3-mkt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 30%, rgba(0, 93, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.v3-mkt-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.v3-mkt-hero-content h1 {
  font-family: var(--font-headings);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 20px;
  text-transform: uppercase;
}
.v3-mkt-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}
.v3-mkt-isometric-container {
  position: relative;
  width: 320px;
  height: 300px;
  margin: 0 auto;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}
.iso-card {
  position: absolute;
  width: 160px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.iso-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.card-1 {
  top: 0;
  left: 0;
  transform: translateZ(50px);
  background: linear-gradient(135deg, rgba(0, 93, 255, 0.2), rgba(0, 93, 255, 0.05));
  animation: floatCard1 4s ease-in-out infinite;
}
.card-2 {
  top: 120px;
  left: 40px;
  transform: translateZ(20px);
  animation: floatCard2 4s ease-in-out infinite 1s;
}
.card-3 {
  top: 60px;
  left: 180px;
  transform: translateZ(-10px);
  animation: floatCard3 4s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateZ(50px); }
  50% { transform: translateZ(65px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateZ(20px); }
  50% { transform: translateZ(35px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateZ(-10px); }
  50% { transform: translateZ(5px); }
}

.v3-mkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.v3-mkt-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.v3-mkt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-blue);
  opacity: 0;
  transition: var(--transition-smooth);
}
.v3-mkt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 93, 255, 0.15);
}
.v3-mkt-card:hover::before {
  opacity: 1;
}
.v3-mkt-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 93, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--accent-blue);
  transition: var(--transition-smooth);
}
.v3-mkt-card:hover .v3-mkt-card-icon {
  background: var(--accent-blue);
  color: #ffffff;
}
.v3-mkt-card h3 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 12px;
}
.v3-mkt-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.v3-mkt-card-link {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-blue) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}
.v3-mkt-card-link:hover {
  gap: 10px;
}

/* Call to Action Banner */
.v3-mkt-cta-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.v3-mkt-cta-banner {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-md);
}
.v3-mkt-cta-content h2 {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.v3-mkt-cta-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.v3-mkt-cta-action {
  flex-shrink: 0;
}
.v3-btn-saibamais {
  display: inline-block;
  background: var(--accent-blue);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}
.v3-btn-saibamais:hover {
  background: #004ecc;
  transform: translateY(-2px);
}

/* subpages styling */
.fmt-hero {
  padding: 60px 0;
  color: #ffffff;
}
.fmt-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.fmt-topico-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.fmt-topico-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0, 93, 255, 0.08);
}
.fmt-topico-bullet {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(0, 93, 255, 0.25);
  transition: transform 0.3s ease;
}
.fmt-topico-item:hover .fmt-topico-bullet {
  transform: scale(1.1);
}
.fmt-topico-content h3 {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-top: 4px;
  margin-bottom: 8px;
}
.fmt-topico-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Service Subpage Topics Classes Styling */
.fmt-topico-num {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-blue);
  opacity: 0.15;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.fmt-topico-item:hover .fmt-topico-num {
  opacity: 0.8;
}
.fmt-topico-body {
  flex: 1;
}
.fmt-topico-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 4px;
}
.fmt-topico-icon {
  font-size: 20px;
  display: inline-block;
}
.fmt-topico-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin: 0;
}
.fmt-topico-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.fmt-topico-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.fmt-topico-cta:hover {
  color: var(--secondary-navy);
}
.fmt-topico-relacionados {
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: 14px;
}
.fmt-topico-rel-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.fmt-topico-rel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fmt-topico-rel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.fmt-topico-rel-chip:hover {
  background: var(--accent-blue);
  color: #ffffff !important;
  border-color: var(--accent-blue);
}
.fmt-faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  margin-bottom: 12px;
}
.fmt-faq-q {
  padding: 18px 24px;
  font-family: var(--font-headings);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fmt-faq-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.fmt-faq-item.open .fmt-faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-blue);
}
.fmt-faq-a {
  padding: 0 24px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.outros-svc-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.outros-svc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.outros-svc-title {
  font-family: var(--font-headings);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 8px;
}
.outros-svc-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.outros-svc-cta {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-blue) !important;
}

@media (max-width: 991px) {
  .v3-mkt-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .v3-mkt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v3-mkt-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }
  .fmt-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .fmt-hero-right {
    display: none !important;
  }
  .fmt-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 650px) {
  .v3-mkt-grid {
    grid-template-columns: 1fr;
  }
  .fmt-topicos-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Marketing Card & Article Styles */
.v3-mkt-card-banner-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.v3-mkt-card-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.v3-mkt-card:hover .v3-mkt-card-banner-img img {
  transform: scale(1.05);
}
.v3-mkt-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fmt-seo-article-content h3 {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.fmt-seo-article-content h4 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.fmt-seo-article-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.fmt-seo-article-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
  list-style-type: disc;
}
.fmt-seo-article-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.fmt-seo-article-content strong {
  color: var(--secondary-navy);
  font-weight: 700;
}
.fmt-article-cta-box {
  margin-top: 40px;
  padding: 36px;
  background: #f0f7ff;
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.fmt-article-cta-box h5 {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 8px;
}
.fmt-article-cta-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- PROCESS METHODOLOGY CARDS --- */
.fmt-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fmt-step {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.fmt-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fmt-step:hover::before {
  transform: scaleX(1);
}
.fmt-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 93, 255, 0.08);
  border-color: rgba(0, 93, 255, 0.15);
}
.fmt-step-num {
  font-family: var(--font-headings);
  font-size: 42px;
  font-weight: 800;
  color: rgba(0, 93, 255, 0.08);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.fmt-step:hover .fmt-step-num {
  color: var(--accent-blue);
  transform: scale(1.05);
}
.fmt-step-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary-navy);
  margin-bottom: 10px;
}
.fmt-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SPLIT IMAGE & TEXT CTA SECTION --- */
.fmt-split-cta-section {
  padding: 90px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.fmt-split-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.fmt-split-cta-left {
  position: relative;
}
.fmt-split-cta-right {
  display: flex;
  flex-direction: column;
}
.fmt-split-cta-right .v3-section-title {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.fmt-split-cta-right p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.fmt-split-cta-right ul {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fmt-split-cta-right li {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}
.fmt-split-cta-right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

@media (max-width: 991px) {
  .fmt-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .fmt-split-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .fmt-split-cta-right {
    align-items: center;
  }
  .fmt-split-cta-right ul {
    text-align: left;
    align-self: center;
    padding-left: 0;
  }
  .fmt-split-cta-left {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .fmt-process-steps {
    grid-template-columns: 1fr;
  }
}


