:root {
  --vc-green-dark: #3a7d6e;
  --vc-green: #519484;
  --vc-green-light: #3ca399;
  --vc-green-bg: #eef6f2;
  --vc-green-bg-alt: #ddf0e8;
  --vc-accent: #0e7c3a;
  --vc-accent-light: #5ba981;
  --vc-text: #1a2e28;
  --vc-text-muted: #5d6b66;
  --vc-card: #ffffff;
  --vc-line: #e2ede7;
  --vc-shadow: 0 8px 30px rgba(16, 24, 40, 0.07);
  --vc-shadow-lg: 0 16px 48px rgba(16, 24, 40, 0.12);
  --vc-radius: 16px;
  --vc-radius-sm: 10px;
  --vc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--vc-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--vc-accent); text-decoration: none; transition: color var(--vc-transition); }
a:hover { color: var(--vc-green-dark); }

/* ============================================
   NAVBAR
   ============================================ */
.vc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vc-line);
  transition: box-shadow var(--vc-transition);
}

.vc-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.vc-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.vc-navbar .logo img {
  height: 40px;
  width: auto;
}

.vc-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-navbar .nav-links a {
  color: var(--vc-text);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--vc-transition);
  position: relative;
}

.vc-navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vc-green);
  transition: width var(--vc-transition);
}

.vc-navbar .nav-links a:hover::after {
  width: 100%;
}

.vc-navbar .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vc-navbar .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vc-text);
  transition: all var(--vc-transition);
}

.vc-navbar .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.vc-navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.vc-navbar .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav dropdown - Soluções */
.vc-navbar .nav-dropdown {
  position: relative;
}

.vc-navbar .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vc-navbar .nav-dropdown-trigger .bi-chevron-down {
  font-size: 12px;
  transition: transform var(--vc-transition);
}

.vc-navbar .nav-dropdown:hover .nav-dropdown-trigger .bi-chevron-down {
  transform: rotate(180deg);
}

.vc-navbar .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: #fff;
  border-radius: var(--vc-radius);
  box-shadow: var(--vc-shadow-lg);
  border: 1px solid var(--vc-line);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--vc-transition), transform var(--vc-transition), visibility var(--vc-transition);
  z-index: 1001;
  margin-top: 8px;
}

.vc-navbar .nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.vc-navbar .nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--vc-text);
  white-space: nowrap;
  border: none;
}

.vc-navbar .nav-dropdown-menu a::after {
  display: none;
}

.vc-navbar .nav-dropdown-menu a:hover {
  background: var(--vc-green-bg);
  color: var(--vc-green-dark);
}

.vc-navbar .nav-dropdown-menu .nav-dropdown-all {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--vc-line);
  font-weight: 600;
  color: var(--vc-green);
}

.vc-navbar .nav-dropdown-menu .nav-dropdown-all:hover {
  background: var(--vc-green-bg);
  color: var(--vc-green-dark);
}

/* Mobile nav submenu */
.mobile-nav .mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--vc-line);
}

.mobile-nav .mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-weight: 600;
  color: var(--vc-text);
}

.mobile-nav .mobile-nav-trigger .bi-chevron-down {
  transition: transform var(--vc-transition);
}

.mobile-nav .mobile-nav-group.open .mobile-nav-trigger .bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav .mobile-nav-sub {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  padding-bottom: 8px;
}

.mobile-nav .mobile-nav-group.open .mobile-nav-sub {
  display: flex;
}

.mobile-nav .mobile-nav-sub a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--vc-text-muted);
}

.mobile-nav .mobile-nav-sub .mobile-nav-all {
  font-weight: 600;
  color: var(--vc-green);
  margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-vc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--vc-green), var(--vc-green-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--vc-transition);
  box-shadow: 0 4px 16px rgba(60, 163, 153, 0.3);
  text-decoration: none;
}

.btn-primary-vc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 163, 153, 0.4);
  color: #fff;
}

.btn-secondary-vc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: var(--vc-green);
  border: 2px solid var(--vc-green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--vc-transition);
  text-decoration: none;
}

.btn-secondary-vc:hover {
  background: var(--vc-green-bg);
  transform: translateY(-2px);
  color: var(--vc-green);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--vc-transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--vc-green-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--vc-green-bg);
  color: var(--vc-green);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--vc-text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--vc-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #f8fcfa 0%, #eef6f2 50%, #e4f0ec 100%);
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  opacity: 0.15;
}

.hero-shape-circle {
  border-radius: 50%;
  background: var(--vc-green);
}

.hero-shape-square {
  background: var(--vc-green);
  transform: rotate(45deg);
}

.hero-shape-dots {
  background-image: radial-gradient(circle, var(--vc-green) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.2;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
}

.hero-shape-2 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 5%;
}

.hero-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 15%;
}

.hero-shape-4 {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 25%;
}

.hero-shape-5 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 10%;
}

.hero-shape-6 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: -30px;
}

.hero-shape-7 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 30%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(60, 163, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 124, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--vc-green), var(--vc-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 18px;
  color: var(--vc-green);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero-description {
  font-size: 18px;
  color: var(--vc-text-muted);
  margin: 0 0 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--vc-radius);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #f8fcfa 0%, #eef6f2 50%, #e4f0ec 100%);
  position: relative;
}

.page-hero .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb-page {
  font-size: 14px;
  color: var(--vc-text-muted);
  margin-bottom: 24px;
}

.breadcrumb-page a {
  color: var(--vc-green);
  text-decoration: none;
}

.breadcrumb-page a:hover {
  text-decoration: underline;
}

.breadcrumb-page .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--vc-text);
}

.page-hero-desc {
  font-size: 18px;
  color: var(--vc-text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

.page-hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Page feature cards (grid 2x2) */
.page-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.page-feature-card {
  background: var(--vc-card);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius);
  padding: 28px;
  transition: all var(--vc-transition);
}

.page-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-lg);
  border-color: var(--vc-green);
}

.page-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.page-feature-icon.green { background: var(--vc-green-bg); color: var(--vc-green); }
.page-feature-icon.orange { background: #fff3e0; color: #ef6c00; }
.page-feature-icon.blue { background: #e3f2fd; color: #1976d2; }
.page-feature-icon.teal { background: #e0f2f1; color: #00897b; }

.page-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-feature-card p {
  font-size: 15px;
  color: var(--vc-text-muted);
  margin: 0;
  line-height: 1.5;
}

.page-feature-visual {
  text-align: center;
}

.page-feature-visual img {
  max-width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.12));
}

/* Video thumbnail + embed (click to play) */
.page-feature-video {
  position: relative;
}

.video-thumbnail-wrap {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}

.video-thumbnail-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.video-thumbnail-wrap:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--vc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-thumbnail-wrap:hover .video-play-btn {
  transform: scale(1.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.12));
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .page-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LOGOS / CLIENTS
   ============================================ */
.clients-section {
  padding: 40px 24px;
  border-bottom: 1px solid var(--vc-line);
}

.clients-section p {
  text-align: center;
  font-size: 14px;
  color: var(--vc-text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.clients-section .swiper-wrapper {
  align-items: center;
}

.clients-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.clients-section .client-logo {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all var(--vc-transition);
}

.clients-section .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   METRICS
   ============================================ */
.metrics-section {
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--vc-green), var(--vc-green-light));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: #fff;
}

.metric-item h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.metric-item p {
  font-size: 15px;
  margin: 8px 0 0;
  opacity: 0.9;
}

/* ============================================
   MODULE GRID
   ============================================ */
.module-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.module-cat-btn {
  padding: 8px 20px;
  border: 1px solid var(--vc-line);
  background: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--vc-transition);
  color: var(--vc-text-muted);
}

.module-cat-btn:hover,
.module-cat-btn.active {
  background: var(--vc-green);
  color: #fff;
  border-color: var(--vc-green);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--vc-card);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius);
  padding: 24px;
  transition: all var(--vc-transition);
  cursor: default;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-lg);
  border-color: var(--vc-green);
}

.module-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.module-card .card-icon.green { background: var(--vc-green-bg); color: var(--vc-green); }
.module-card .card-icon.teal { background: #e0f2f1; color: #00897b; }
.module-card .card-icon.blue { background: #e3f2fd; color: #1976d2; }
.module-card .card-icon.purple { background: #f3e5f5; color: #7b1fa2; }
.module-card .card-icon.orange { background: #fff3e0; color: #ef6c00; }
.module-card .card-icon.red { background: #fce4ec; color: #c62828; }
.module-card .card-icon.grey { background: #eceff1; color: #455a64; }

.module-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.module-card p {
  font-size: 14px;
  color: var(--vc-text-muted);
  margin: 0;
  line-height: 1.5;
}

.module-card .card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.module-card .tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--vc-green-bg);
  color: var(--vc-green-dark);
  border: 1px solid var(--vc-line);
}

/* ============================================
   SEÇÕES DE DESTAQUE (igual apresentacao.html)
   ============================================ */
.feature-section {
  padding: 80px 24px;
}

.feature-section.section-alt {
  background: var(--vc-green-bg);
}

.feature-section.section-verde-claro {
  background: #e8f5f0;
}

/* modulo-layout = grid texto + imagem */
.feature-section .modulo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.feature-section .modulo-layout.reverse {
  direction: rtl;
}

.feature-section .modulo-layout.reverse > * {
  direction: ltr;
}

.feature-section .modulo-text .mod-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vc-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-section .modulo-text .mod-label .label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vc-green);
}

.feature-section .modulo-text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--vc-text);
}

.feature-section .modulo-text .mod-desc {
  font-size: 15px;
  color: var(--vc-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.feature-section .benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.feature-section .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--vc-text);
}

.feature-section .benefit-list li .b-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--vc-green-bg);
  color: var(--vc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}

.feature-section .benefit-list li strong {
  font-weight: 600;
}

.feature-section .modulo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-section .modulo-image img {
  max-width: 100%;
  max-height: 520px;
  border-radius: 12px;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.12));
}

.feature-section .modulo-image .img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  max-width: 45%;
  max-height: 240px;
  border-radius: 10px;
  border: 3px solid #fff;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.feature-section .modulo-image .img-secondary.img-left {
  right: auto;
  left: -20px;
}

.feature-section .modulo-image-triple {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section .modulo-image-triple .img-main {
  max-width: 88%;
  max-height: 520px;
  border-radius: 16px;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.22)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 2;
}

.feature-section .modulo-image-triple .img-float {
  position: absolute;
  max-width: 38%;
  max-height: 220px;
  border-radius: 10px;
  border: 4px solid #fff;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
  z-index: 3;
}

.feature-section .modulo-image-triple .img-float-top {
  top: 0;
  right: -2%;
}

.feature-section .modulo-image-triple .img-float-bottom {
  bottom: 0;
  left: -2%;
}

.feature-section .modulo-image .img-icon-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px;
  background: rgba(200, 230, 218, 0.75);
  border-radius: 16px;
  z-index: 3;
}

.feature-section .modulo-image .img-icon-floating img {
  display: block;
  max-width: 140px;
  max-height: 140px;
}

.feature-section .func-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-section .func-tag {
  background: var(--vc-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.feature-section .func-tag-outline {
  background: transparent;
  color: var(--vc-green);
  border: 1.5px solid var(--vc-green);
}

/* AI section (escura) */
.feature-section.ai-section {
  background: linear-gradient(135deg, #1a2e28 0%, #2d4a40 100%);
  color: #fff;
}

.feature-section.ai-section h2 {
  color: #fff;
}

.feature-section.ai-section .mod-desc {
  color: rgba(255, 255, 255, 0.7);
}

.feature-section.ai-section .benefit-list li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-section.ai-section .benefit-list li .b-icon {
  background: rgba(60, 163, 153, 0.2);
  color: var(--vc-green-light);
}

.feature-section.ai-section .func-tag {
  background: rgba(60, 163, 153, 0.3);
  color: #fff;
}

.feature-section.ai-section .func-tag-outline {
  color: var(--vc-green-light);
  border-color: var(--vc-green-light);
}

/* ============================================
   WHY US / DIFFERENTIALS
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--vc-card);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--vc-transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-lg);
}

.diff-card .diff-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.diff-card .diff-icon.green { background: linear-gradient(135deg, var(--vc-green), var(--vc-green-light)); color: #fff; }
.diff-card .diff-icon.blue { background: linear-gradient(135deg, #1565c0, #42a5f5); color: #fff; }
.diff-card .diff-icon.orange { background: linear-gradient(135deg, #ef6c00, #ffb74d); color: #fff; }
.diff-card .diff-icon.purple { background: linear-gradient(135deg, #7b1fa2, #ce93d8); color: #fff; }
.diff-card .diff-icon.teal { background: linear-gradient(135deg, #00796b, #4db6ac); color: #fff; }
.diff-card .diff-icon.red { background: linear-gradient(135deg, #c62828, #ef5350); color: #fff; }

.diff-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.diff-card p {
  font-size: 14px;
  color: var(--vc-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 24px;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--vc-card);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--vc-shadow);
}

.testimonial-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--vc-text);
  margin: 0 0 24px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--vc-green);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.testimonial-card .role {
  font-size: 13px;
  color: var(--vc-text-muted);
  margin-top: 4px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--vc-green-dark), var(--vc-green), var(--vc-green-light));
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 16px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary-vc {
  background: #fff;
  color: var(--vc-green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary-vc:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.vc-footer {
  background: #1a2e28;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.vc-footer h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  color: #fff;
}

.vc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vc-footer ul li {
  margin-bottom: 8px;
}

.vc-footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--vc-transition);
}

.vc-footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: color var(--vc-transition);
}

.footer-social a:hover {
  color: #fff;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--vc-text);
  border-bottom: 1px solid var(--vc-line);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-section .modulo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-section .modulo-layout.reverse {
    direction: ltr;
  }

  .feature-section .modulo-image .img-secondary {
    max-width: 40%;
    max-height: 180px;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 16px;
  }

  .vc-navbar .nav-links {
    display: none;
  }

  .vc-navbar .hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 16px 56px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .clients-logos {
    gap: 24px;
  }

  .clients-logos img {
    height: 32px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .module-categories {
    gap: 8px;
  }

  .module-cat-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-vc,
  .btn-secondary-vc,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SWIPER CUSTOM
   ============================================ */
.swiper-pagination-bullet-active {
  background: var(--vc-green) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--vc-green) !important;
  background: rgba(255, 255, 255, 0.9);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   AOS OVERRIDES
   ============================================ */
[data-aos] {
  transition-duration: 600ms !important;
}
