/* ===========================
   ACOMTÁBIL — STYLE.CSS
   =========================== */

:root {
  --teal: #1a9e8f;
  --teal-dark: #147a6e;
  --teal-light: #4ec9bb;
  --teal-pale: #e8f7f5;
  --dark: #0d1117;
  --dark-2: #161b22;
  --dark-3: #21262d;
  --text: #1a202c;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-dark: #30363d;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-initials {
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.logo-text {
  color: white;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.3px;
}

.logo-text strong {
  font-weight: 700;
  color: var(--teal-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  margin-left: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(26,158,143,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,158,143,0.10) 0%, transparent 60%),
    linear-gradient(135deg, #0d1117 0%, #111820 50%, #0d1117 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--teal-light);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { opacity: 0; transform: translateY(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh); }
}

.hero-content {
  position: relative;
  max-width: 580px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,158,143,0.15);
  border: 1px solid rgba(26,158,143,0.3);
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--teal-light);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--teal);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,158,143,0.4);
}

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(26,158,143,0.25), rgba(26,158,143,0.05));
  border: 1px solid rgba(26,158,143,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-inner {
  width: 120px; height: 120px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(26,158,143,0.4);
}

.logo-box-hero {
  color: white;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-body);
}

.floating-card {
  position: absolute;
  background: rgba(22, 27, 34, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.card-icon { font-size: 24px; }
.card-info strong { display: block; font-size: 13px; color: white; font-weight: 600; }
.card-info span { font-size: 11px; color: var(--text-muted); }

.card-1 { top: 20px; left: -20px; animation: float 4s ease-in-out infinite; }
.card-2 { bottom: 80px; left: -40px; animation: float 4s ease-in-out infinite 1.3s; }
.card-3 { top: 50px; right: -30px; animation: float 4s ease-in-out infinite 0.7s; }

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

/* ===========================
   SECTION COMMONS
   =========================== */
section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   WHY / DIFERENCIAIS
   =========================== */
.why {
  background: var(--dark);
  color: white;
  padding: 100px 0;
}

.why .section-title { color: white; }
.why .section-sub { color: rgba(255,255,255,0.55); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 0.6s ease forwards;
}

.diff-card:nth-child(1) { animation-delay: 0s; }
.diff-card:nth-child(2) { animation-delay: 0.15s; }
.diff-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.diff-card:hover {
  border-color: rgba(26,158,143,0.4);
  background: rgba(26,158,143,0.06);
  transform: translateY(-4px);
}

.diff-card.featured {
  border-color: var(--teal);
  background: rgba(26,158,143,0.1);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.diff-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(26,158,143,0.15);
  border: 1px solid rgba(26,158,143,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.diff-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.diff-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.diff-list li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(26,158,143,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--teal-light);
  flex-shrink: 0;
}

/* ===========================
   SERVICES
   =========================== */
.services { background: #f8fafb; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
}

.service-item:hover::before { transform: scaleY(1); }

.service-item:hover {
  border-color: rgba(26,158,143,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.service-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   PLANS
   =========================== */
.plans { background: white; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
}

.plan-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.plan-card.plan-featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-pale), white);
  box-shadow: 0 12px 40px rgba(26,158,143,0.15);
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-header { margin-bottom: 16px; }

.plan-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-from {
  font-size: 12px;
  color: var(--text-muted);
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.plan-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.plan-features li.disabled {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.6;
}

.check {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  width: 20px;
  height: 20px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border: 2px solid var(--teal);
  border-radius: 10px;
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
}

.plan-btn:hover {
  background: var(--teal);
  color: white;
}

.plan-btn-featured {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.plan-btn-featured:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.plans-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: #f8fafb; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(26,158,143,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testi-card.testi-featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-pale) 0%, white 100%);
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  quotes: '"' '"';
}

.testi-card blockquote::before {
  content: open-quote;
  color: var(--teal);
  font-size: 32px;
  font-family: var(--font-display);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 14px; color: var(--text); }
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   CTA
   =========================== */
.cta-section { background: var(--dark); padding: 80px 0; }

.cta-box {
  background: linear-gradient(135deg, rgba(26,158,143,0.15), rgba(26,158,143,0.05));
  border: 1px solid rgba(26,158,143,0.3);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: white;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.25s;
}

.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.cta-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cta-info-card strong { display: block; font-size: 14px; color: white; }
.cta-info-card span { font-size: 12px; color: rgba(255,255,255,0.5); }
.cta-note { display: block; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; font-style: italic; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #090d13;
  color: rgba(255,255,255,0.6);
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-logo { margin-bottom: 4px; }

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal-light); }

/* FAQ in footer */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-list details {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  list-style: none;
  transition: color 0.2s;
}
.faq-list summary:hover { color: var(--teal-light); }
.faq-list details[open] summary { color: var(--teal-light); }
.faq-list details p {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  border-top: 1px solid var(--border-dark);
}

/* Contact list in footer */
.contact-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

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

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card.plan-featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 30px; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px; }
  .nav-cta { margin-left: 0; justify-content: center; }
  .hamburger { display: flex; }

  .hero {
    padding-top: 100px;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .cta-box { padding: 30px 20px; }
}

/* ===========================
   ANIMATIONS ON SCROLL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
