/* --- VARIÁVEIS E RESET --- */
:root {
  --bg-color: #0f172a;       /* Slate 900 */
  --surface-color: #1e293b;  /* Slate 800 */
  --primary-color: #22c55e;  /* Green 500 */
  --primary-glow: rgba(34, 197, 94, 0.4);
  --secondary-color: #0ea5e9; /* Sky 500 */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Poppins', sans-serif;

  /* Sessões claras (se você usar) */
  --about-bg: #f8fafc;
  --about-title: #22c55e;
  --about-text: #1e293b;
  --about-muted: #94a3b8;
  --about-icon: #22c55e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(34, 197, 94, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.08), transparent 25%);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-accent {
  background: var(--primary-color);
  color: #020617;
  box-shadow: 0 0 15px var(--primary-glow);
}

.btn-accent:hover {
  background: #4ade80;
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--primary-glow);
}

.btn-outline {
  background: var(--bg-color);
  border-color: var(--text-muted);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-sm { padding: 8px 20px; font-size: 0.9rem; background: #22c55e; }
.btn-sm:hover { background: #36eee5; }

/* --- HEADER & NAVBAR --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  text-shadow: 0 0 10px var(--primary-glow);
}

.btn-nav {
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
}

.btn-nav:hover {
  background: var(--primary-color);
  color: #000;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("capa.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero .container, .hero .hero-content, .hero .hero-decoration {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(to right, #4ade80, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 500px;
}

/* HERO: botões alinhados e mesma altura */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-buttons .btn {
  height: 52px;
  padding: 0 28px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}

/* --- SECTIONS GENERAL --- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); }

/* --- IMPORTANCE (CLARO como você tinha) --- */
.importance {
  background: var(--about-bg);
  color: #0f172a;
  padding: 80px 0;
}
.importance .section-header h2 { color: #22c55e; }
.importance .section-header p { color: #334155; }

.importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.importance-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.importance-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 198, 9, 0.14);
  color: var(--primary-color);
  border: 1px solid rgba(143, 198, 9, 0.25);
  font-size: 1.4rem;
}

.importance-card h3 { margin-bottom: 10px; color: #0f172a; }
.importance-card p { color: #475569; font-size: 0.95rem; }

/* --- ABOUT (CLARO) --- */
.about {
  background: var(--about-bg);
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { color: var(--about-title); }
.about-text p { color: var(--about-text); }

.about-list { margin: 20px 0; }
.about-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--about-text);
}
.about-list i { color: var(--about-icon); font-size: 1.1rem; }

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  filter: brightness(0.9);
}

/* --- SERVICES CARDS (do site atual) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  background: rgba(30, 41, 59, 0.9);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 5px; }
.service-card .subtitle { color: var(--secondary-color); font-size: 0.9rem; margin-bottom: 15px; font-weight: 500; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; margin-bottom: 20px; }

/* --- MODAIS (mantido) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: #1e293b;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  animation: modalPop 0.3s ease-out;
}
@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--glass-border);
}
.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; }
.modal-body { padding: 30px; }
.modal-body h4 { margin: 20px 0 10px; color: #fff; }
.modal-body ul { margin-left: 20px; list-style: disc; color: var(--text-muted); margin-bottom: 20px; }
.modal-cta { text-align: right; margin-top: 20px; }

/* --- CONTACT --- */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.contact-info h2 { font-size: 2rem; margin-bottom: 20px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-top: 20px; font-size: 1.1rem; color: var(--text-muted); }
.info-item i { color: var(--primary-color); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #cbd5e1; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  margin-top: 40px;
  background: rgba(2, 6, 23, 0.5);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-social { display: flex; gap: 15px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover { background: var(--primary-color); color: #000; }
.footer-copy { width: 100%; text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }

/* --- MOBILE NAV --- */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #fff; transition: all 0.3s; }

@media (max-width: 960px) {
  .hero-container, .about-content, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero { text-align: center; padding-top: 120px; }
  .hero-buttons { justify-content: center; }
  .contact-wrapper { padding: 30px; }

  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    height: calc(100vh - 80px);
    text-align: center;
    padding-top: 50px;
    transition: 0.3s;
  }
  .nav-menu.active { left: 0; }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

/* =========================================================
   ✅ VIS-PLANS (Planos + Tabela) — DARK PREMIUM (corrigido)
   ========================================================= */
.vis-plans{
  background: var(--bg-color);
  color: var(--text-main);
  padding: 80px 0;
}

.vis-plans .wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vis-plans h2{
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.vis-plans .sub{
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Cards (ficam BONITOS e consistentes com seu glass) */
.vis-plans .grid{
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.vis-plans .card{
  background: rgba(30,41,59,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.vis-plans .card:hover{
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.35);
  background: rgba(30,41,59,0.90);
}

.vis-plans .card h3{
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: .2px;
}

.vis-plans ul{
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vis-plans li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.35;
}

.vis-plans .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(34, 197, 94, 0.35);
  border: 1px solid rgba(34, 197, 94, 0.40);
  flex: 0 0 10px;
}

/* Tabela (definida, com bordas e contraste) */
.vis-plans .table-wrap{
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,41,59,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.vis-plans .scroll-x{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vis-plans table{
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.vis-plans thead th{
  background: rgba(15,23,42,0.90);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.vis-plans thead th:first-child{
  text-align: left;
}

.vis-plans th,
.vis-plans td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.95rem;
  color: #d1d5db;
  white-space: nowrap;
}

.vis-plans td:first-child{
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  white-space: normal;
}

.vis-plans tbody tr:nth-child(odd) td{
  background: rgba(255,255,255,0.02);
}

.vis-plans tbody tr:last-child td{
  border-bottom: none;
}

/* ✅ Cores “tem / não tem” */
.vis-plans .yes{
  color: var(--primary-color);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(34,197,94,0.22);
}

.vis-plans .no{
  color: #ff5c5c;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255,92,92,0.18);
}

/* Soluções (dark, elegante) */
.vis-plans .solutions{
  margin-top: 26px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,41,59,0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.vis-plans .solutions h3{
  font-size: 1rem;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: .2px;
}

/* Ajustes mobile */
@media (max-width: 768px){
  .vis-plans{ padding: 64px 0; }
  .vis-plans h2{ font-size: 1.9rem; }
}

/* =========================================================
   ✅ CLIENTES — corrigir “gigante”
   ========================================================= */

/* grid menor */
.clients-logos{
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

/* card menor */
.client-card{
  padding: 16px 14px;
  border-radius: 14px;
}

/* logo contido (isso é o principal) */
.client-card img{
  max-height: 44px;
  max-width: 140px;
  width: auto;
}

/* nome menor */
.client-name{
  font-size: 0.9rem;
}

/* Melhor foco visível (teclado) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(54, 238, 229, 0.8);
  outline-offset: 3px;
}

/* =========================================
   TABELA COMPARATIVO (#packages) - DARK
   ✔ verde / ✕ vermelho (sem mexer no HTML)
   ========================================= */

.packages{
  background: var(--bg-color);
  padding: 80px 0;
}

.table-wrapper{
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,41,59,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Base da tabela */
.packages-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 820px; /* scroll no mobile */
  font-size: 0.95rem;
}

.packages-table thead th{
  background: rgba(15,23,42,0.92);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.packages-table thead th:first-child{ text-align: left; }

.packages-table td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #d1d5db;
  white-space: nowrap;
}

.packages-table td:first-child{
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  white-space: normal;
}

.packages-table tbody tr:nth-child(odd) td{
  background: rgba(255,255,255,0.02);
}

.packages-table tbody tr:last-child td{ border-bottom: none; }

/* ✔ Verde */
.packages-table td.yes{
  color: var(--primary-color);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(34,197,94,0.22);
}

/* =========================================================
   PACKAGES (Pacotes + Tabela + Soluções) — DARK GLASS
   ========================================================= */

.packages {
  background: var(--bg-color);
}

/* GRID dos 4 pacotes */
.packages-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

@media (max-width: 1100px){
  .packages-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .packages-grid{ grid-template-columns: 1fr; }
}

.package-card{
  background: rgba(30,41,59,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.package-card:hover{
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.35);
  background: rgba(30,41,59,0.92);
}

.package-card h3{
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.package-list{
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.package-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.35;
}

.package-list .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(34, 197, 94, 0.35);
  border: 1px solid rgba(34, 197, 94, 0.40);
  flex: 0 0 10px;
}

/* TABELA */
.packages .table-wrapper{
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,41,59,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.packages .packages-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  font-size: 0.95rem;
}

.packages .packages-table thead th{
  background: rgba(15,23,42,0.92);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.packages .packages-table thead th:first-child{
  text-align: left;
}

.packages .packages-table td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #d1d5db;
  white-space: nowrap;
}

.packages .packages-table td:first-child{
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  white-space: normal;
}

.packages .packages-table tbody tr:nth-child(odd) td{
  background: rgba(255,255,255,0.02);
}

.packages .packages-table tbody tr:last-child td{
  border-bottom: none;
}

/* ✔ verde */
.packages .packages-table td.yes{
  color: var(--primary-color);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(34,197,94,0.22);
}

/* ✕ vermelho (transforma "—" em ✕ visual) */
.packages .packages-table td.no{
  font-size: 0;      /* esconde o "—" */
  position: relative;
}

.packages .packages-table td.no::after{
  content: "✕";
  font-size: 1.05rem;
  font-weight: 900;
  color: #ff4d4d;
  text-shadow: 0 0 12px rgba(255,77,77,0.22);
}

/* SOLUÇÕES */
.packages-solutions{
  margin-top: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(30,41,59,0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  padding: 22px 18px;
}

.packages-solutions h3{
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: .2px;
}

.solutions-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #d1d5db;
}

/* CTA da seção packages coerente com dark */
.packages .cta-box{
  margin-top: 26px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,0.22);
  background: rgba(34,197,94,0.08);
  padding: 24px 22px;
  text-align: center;
}

.packages .cta-box h3{
  color: #ffffff;
  margin-bottom: 6px;
}

.packages .cta-box p{
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =========================
   CLIENTES (alinhamento)
   ========================= */
.clients-logos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

/* card uniforme */
.client-card{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 16px;

  display: grid;
  grid-template-rows: 92px auto; /* área do logo + nome */
  justify-items: center;
  align-items: center;
  gap: 12px;

  transition: transform 0.25s ease, border-color 0.25s ease;
}

.client-card:hover{
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.45);
}

/* área do logo fixa */
.client-card img{
  max-width: 200px;
  max-height: 72px;
  width: auto;
  height: auto;

  object-fit: contain;
  display: block;

  /* melhora visibilidade quando a imagem tem muito “vazio” */
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

/* nome alinhado e consistente */
.client-name{
  min-height: 2.4em; /* segura 1–2 linhas sem desalinhamento */
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
  line-height: 1.2;
}

/* mobile */
@media (max-width: 520px){
  .clients-logos{
    grid-template-columns: 1fr;
  }
}
