/* ==========================================================================
   AGÊNCIA OTIMIZA — MICRO LANDING PAGE & LINK NA BIO PROFISSIONAL
   Mobile First • CRO • 3D Depth • Ambient Lighting • Fluid Micro-Interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --cyan-primary: #2B9FD4;
  --cyan-light: #5EC4F0;
  --cyan-dark: #1978A8;
  --cyan-glow: rgba(43, 159, 212, 0.35);
  --cyan-glow-subtle: rgba(43, 159, 212, 0.15);

  --green-primary: #8DC63F;
  --green-light: #AEE264;
  --green-dark: #6CA327;
  --green-glow: rgba(141, 198, 63, 0.35);
  --green-glow-subtle: rgba(141, 198, 63, 0.15);

  /* Surface & Background Hierarchy */
  --bg-dark-base: #060B12;
  --bg-dark-subtle: #0A131F;
  --bg-card: rgba(13, 25, 40, 0.78);
  --bg-card-hover: rgba(18, 35, 56, 0.9);
  --bg-card-active: rgba(22, 42, 68, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.035);

  /* Text Colors */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Borders & Specular Highlights */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(43, 159, 212, 0.18);
  --border-card-hover: rgba(43, 159, 212, 0.45);
  --border-specular: rgba(255, 255, 255, 0.16);

  /* Typography Scale */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Elevation Shadows (Light Direction: Top-Left) */
  --shadow-lvl-1: 0 4px 16px -2px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(43, 159, 212, 0.06);
  --shadow-lvl-2: 0 10px 28px -4px rgba(0, 0, 0, 0.55), 0 4px 14px rgba(43, 159, 212, 0.12);
  --shadow-lvl-3: 0 18px 45px -8px rgba(0, 0, 0, 0.65), 0 8px 24px rgba(43, 159, 212, 0.22);
  --shadow-cta: 0 12px 36px -6px rgba(43, 159, 212, 0.4), 0 4px 14px rgba(141, 198, 63, 0.25);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark-base);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark-base);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

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

/* --------------------------------------------------------------------------
   03. AMBIENT 3D GLOW MESH
   -------------------------------------------------------------------------- */
.ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  will-change: transform;
}

.glow-cyan {
  width: 320px;
  height: 320px;
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, var(--cyan-primary) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.glow-green {
  width: 280px;
  height: 280px;
  bottom: 25%;
  left: -100px;
  background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.glow-navy {
  width: 400px;
  height: 400px;
  top: 45%;
  right: -120px;
  background: radial-gradient(circle, #103A5C 0%, transparent 70%);
  animation: orbDrift3 25s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(1.15); }
}

@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -50px) scale(1.2); }
}

@keyframes orbDrift3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -40px) scale(0.9); }
}

/* --------------------------------------------------------------------------
   04. CONTAINER & APP SHELL (MOBILE-FIRST)
   -------------------------------------------------------------------------- */
.app-container {
  width: 100%;
  max-width: 480px; /* Golden mobile-first shell */
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  padding: env(safe-area-inset-top, 16px) 18px 24px 18px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  body {
    background: radial-gradient(circle at 50% 20%, #0A1828 0%, var(--bg-dark-base) 80%);
  }
  .app-container {
    padding-top: 28px;
  }
}

/* --------------------------------------------------------------------------
   05. TOP NAV & STATUS BADGE
   -------------------------------------------------------------------------- */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 16px 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14, 28, 44, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  box-shadow: var(--shadow-lvl-1);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-primary);
  box-shadow: 0 0 10px var(--green-primary);
  display: inline-block;
  animation: pulseGreen 2s infinite ease-in-out;
}

.status-badge.closed .status-dot {
  background-color: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
  animation: pulseOrange 2s infinite ease-in-out;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes pulseOrange {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.quick-actions .icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-smooth);
}

.quick-actions .icon-btn:hover,
.quick-actions .icon-btn:active {
  background: rgba(43, 159, 212, 0.15);
  border-color: var(--cyan-primary);
  color: var(--cyan-light);
  transform: scale(1.05);
}

.quick-actions .icon-btn svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   06. SECTION 01: HERO & 3D BRAND CARD
   -------------------------------------------------------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.hero-sign-card {
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lvl-2);
  border: 1px solid var(--border-card);
  overflow: visible;
  background: var(--bg-card);
}

.hero-banner-image-wrapper {
  width: 100%;
  height: 175px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  transition: transform 0.6s var(--ease-smooth);
}

.hero-sign-card:hover .hero-bg-photo {
  transform: scale(1.08);
}

.banner-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 18, 0.15) 0%,
    rgba(6, 11, 18, 0.4) 50%,
    rgba(6, 11, 18, 0.88) 100%
  );
  backdrop-filter: blur(1px);
}

/* Founder Portrait & Verified Ring */
.profile-avatar-container {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  z-index: 3;
}

.avatar-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3.5px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--green-primary));
  box-shadow: 0 8px 24px rgba(43, 159, 212, 0.35), 0 0 15px rgba(141, 198, 63, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-img-crop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #070E17;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  transition: transform 0.3s var(--ease-smooth);
}

.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--cyan-primary), #1B78B0);
  border-radius: 50%;
  border: 2px solid var(--bg-dark-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.verified-badge svg {
  width: 15px;
  height: 15px;
}

/* Typography Identity */
.brand-intro {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(43, 159, 212, 0.1);
  border: 1px solid rgba(43, 159, 212, 0.25);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan-light);
  margin-bottom: 8px;
}

.tag-sparkle {
  color: var(--green-primary);
  font-size: 0.75rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  text-transform: lowercase;
}

.cyan-gradient-text {
  color: var(--cyan-primary);
  font-weight: 700;
  display: inline-block;
  margin-right: 4px;
}

.white-text {
  color: var(--text-white);
}

.green-gradient-text {
  color: var(--green-primary);
  display: inline-block;
}

.brand-slogan {
  font-size: 1.02rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 10px;
  line-height: 1.35;
}

.brand-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 380px;
  margin-bottom: 18px;
}

.brand-bio strong {
  color: var(--text-white);
  font-weight: 600;
}

/* MASTER HERO CTA (Primary CRO Engine) */
.hero-cta-wrapper {
  width: 100%;
  margin-bottom: 18px;
}

.btn-master-cta {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  background: linear-gradient(135deg, #1B7EA8 0%, #2B9FD4 40%, #76AB2E 85%, #8DC63F 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-cta);
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

.btn-master-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px -6px rgba(43, 159, 212, 0.5), 0 6px 18px rgba(141, 198, 63, 0.35);
}

.btn-master-cta:active {
  transform: scale(0.975);
}

.btn-master-cta.green-glow {
  background: linear-gradient(135deg, #2B9FD4 0%, #3DA695 30%, #7FB934 75%, #8DC63F 100%);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: btnShimmerAnim 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes btnShimmerAnim {
  0% { left: -150%; }
  35%, 100% { left: 150%; }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.btn-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.btn-icon-box svg {
  width: 22px;
  height: 22px;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.btn-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.btn-headline {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  line-height: 1.25;
}

.btn-arrow-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-smooth);
}

.btn-master-cta:hover .btn-arrow-box {
  transform: translateX(4px);
}

.btn-arrow-box svg {
  width: 16px;
  height: 16px;
}

/* Trust Bar / Fast Metrics */
.hero-trust-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 14px;
  background: rgba(13, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lvl-1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cyan-light);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.trust-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   07. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-container {
  margin-bottom: 30px;
  width: 100%;
}

.section-header {
  margin-bottom: 14px;
  padding: 0 4px;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 2px;
  background: var(--cyan-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   08. SECTION 02: SERVICES CARDS (INTERACTIVE & EXPANDABLE)
   -------------------------------------------------------------------------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lvl-1);
  transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-lvl-2);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  outline: none;
}

.service-header:focus-visible {
  box-shadow: inset 0 0 0 2px var(--cyan-primary);
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.icon-cyan {
  background: rgba(43, 159, 212, 0.12);
  color: var(--cyan-light);
  border-color: rgba(43, 159, 212, 0.25);
}

.icon-green {
  background: rgba(141, 198, 63, 0.12);
  color: var(--green-light);
  border-color: rgba(141, 198, 63, 0.25);
}

.icon-gradient {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.18), rgba(253, 29, 29, 0.18));
  color: #F77737;
  border-color: rgba(225, 48, 108, 0.3);
}

.service-meta {
  flex: 1;
}

.service-badge-row {
  margin-bottom: 2px;
}

.badge-accent {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(43, 159, 212, 0.15);
  color: var(--cyan-light);
  border: 1px solid rgba(43, 159, 212, 0.25);
  display: inline-block;
}

.badge-accent.green {
  background: rgba(141, 198, 63, 0.15);
  color: var(--green-light);
  border-color: rgba(141, 198, 63, 0.25);
}

.service-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.service-short {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.chevron-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth), background-color 0.25s;
}

.chevron-toggle svg {
  width: 16px;
  height: 16px;
}

.service-card.open .chevron-toggle {
  transform: rotate(180deg);
  background: rgba(43, 159, 212, 0.2);
  color: var(--cyan-light);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth);
}

.service-card.open .service-body {
  max-height: 400px;
}

.service-content-inner {
  padding: 0 16px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-bullets {
  list-style: none;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-bullets li {
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-bullets li span {
  color: var(--green-primary);
  font-size: 0.85rem;
  line-height: 1.3;
}

.service-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  background: rgba(43, 159, 212, 0.12);
  border: 1px solid rgba(43, 159, 212, 0.35);
  border-radius: var(--radius-md);
  color: var(--cyan-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease-smooth);
}

.service-cta-btn:hover {
  background: var(--cyan-primary);
  color: #FFFFFF;
  border-color: var(--cyan-primary);
  box-shadow: 0 6px 18px var(--cyan-glow);
}

.service-cta-btn:active {
  transform: scale(0.98);
}

.service-cta-btn.green {
  background: rgba(141, 198, 63, 0.12);
  border-color: rgba(141, 198, 63, 0.35);
  color: var(--green-light);
}

.service-cta-btn.green:hover {
  background: var(--green-primary);
  color: #FFFFFF;
  border-color: var(--green-primary);
  box-shadow: 0 6px 18px var(--green-glow);
}

.service-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-cta-btn:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   09. SECTION 03: NOSSO MÉTODO (ESTEIRA VISUAL)
   -------------------------------------------------------------------------- */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.step-counter {
  width: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(43, 159, 212, 0.2) 0%, rgba(141, 198, 63, 0.2) 100%);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cyan-light);
  flex-shrink: 0;
  box-shadow: var(--shadow-lvl-1);
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.step-desc {
  font-size: 0.77rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. SECTION 04: CASES DE SUCESSO
   -------------------------------------------------------------------------- */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lvl-1);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan-primary), var(--green-primary));
}

.case-highlight-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan-light);
  background: rgba(43, 159, 212, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  border: 1px solid rgba(43, 159, 212, 0.25);
}

.case-highlight-pill.green {
  color: var(--green-light);
  background: rgba(141, 198, 63, 0.15);
  border-color: rgba(141, 198, 63, 0.25);
}

.case-client-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}

.case-metric-summary {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   11. SECTION 05: LOCALIZAÇÃO & SEDE FÍSICA (MAPA INTERATIVO)
   -------------------------------------------------------------------------- */
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lvl-2);
  transition: border-color 0.3s var(--ease-smooth);
}

.location-card:hover {
  border-color: var(--border-card-hover);
}

.location-map-wrapper {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  background-color: #0B131F;
}

@media (min-width: 480px) {
  .location-map-wrapper {
    height: 280px;
  }
}

/* Glassmorphic Top Toolbar on Map */
.map-top-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.map-badge {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(6, 11, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.live-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cyan-primary);
  box-shadow: 0 0 8px var(--cyan-primary);
  animation: radarPulse 2s infinite ease-in-out;
}

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

.map-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.map-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(6, 11, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: #E2E8F0;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-tool-btn:hover, .map-tool-btn:active {
  background: rgba(43, 159, 212, 0.25);
  border-color: var(--cyan-primary);
  color: var(--cyan-light);
  transform: translateY(-1px);
}

.map-tool-btn svg {
  width: 14px;
  height: 14px;
}

/* Map Iframe Container */
.map-iframe-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: filter 0.4s var(--ease-smooth);
}

/* Sleek Dark Mode for Google Maps Embed */
.map-frame.dark-mode {
  filter: invert(90%) hue-rotate(180deg) contrast(95%) saturate(1.2);
}

.map-frame.light-mode {
  filter: none;
}

/* Animated Gesture Overlay (Invites User to Move & Pan Map) */
.map-gesture-overlay {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  cursor: pointer;
  outline: none;
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
  width: max-content;
  max-width: 90%;
}

.map-gesture-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px) scale(0.95);
}

.gesture-anim-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(6, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--cyan-primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 18px var(--cyan-glow);
  animation: floatPrompt 3s ease-in-out infinite alternate;
}

@keyframes floatPrompt {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

.swipe-hand-box {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hand-swipe-svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-light);
  filter: drop-shadow(0 2px 6px rgba(43, 159, 212, 0.5));
  animation: handSlideMove 2.2s infinite ease-in-out;
}

@keyframes handSlideMove {
  0%, 100% { transform: translateX(-8px) rotate(-8deg); }
  50% { transform: translateX(8px) rotate(8deg); }
}

.ripple-wave {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan-primary);
  animation: rippleExpand 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes rippleExpand {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.swipe-arrows {
  position: absolute;
  bottom: -4px;
  font-size: 0.72rem;
  color: var(--green-primary);
  font-weight: 800;
  animation: arrowPulse 2.2s infinite ease-in-out;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.gesture-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.gesture-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.gesture-sub {
  font-size: 0.68rem;
  color: var(--cyan-light);
  line-height: 1.2;
  margin-top: 1px;
}

/* Quick Tip Toggle Button when hint is dismissed */
.map-hint-toggle {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 10;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(6, 11, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease-smooth);
}

.map-hint-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}

.map-hint-toggle:hover {
  background: rgba(43, 159, 212, 0.2);
  color: var(--cyan-light);
  border-color: var(--cyan-primary);
}

.location-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.address-box, .hours-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.address-icon, .hours-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(43, 159, 212, 0.12);
  border: 1px solid rgba(43, 159, 212, 0.25);
  color: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hours-icon {
  background: rgba(141, 198, 63, 0.12);
  border-color: rgba(141, 198, 63, 0.25);
  color: var(--green-light);
}

.address-icon svg, .hours-icon svg {
  width: 18px;
  height: 18px;
}

.address-title, .hours-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.address-text, .hours-text {
  font-size: 0.82rem;
  color: #CBD5E1;
  font-style: normal;
  line-height: 1.4;
  margin-top: 2px;
}

.hours-text strong {
  color: var(--green-light);
}

.nav-buttons-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.btn-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-smooth);
}

.btn-route.google-maps {
  background: rgba(66, 133, 244, 0.15);
  border: 1px solid rgba(66, 133, 244, 0.35);
  color: #60A5FA;
}

.btn-route.google-maps:hover {
  background: #2563EB;
  color: #FFFFFF;
}

.btn-route.waze {
  background: rgba(51, 204, 255, 0.15);
  border: 1px solid rgba(51, 204, 255, 0.35);
  color: #38BDF8;
}

.btn-route.waze:hover {
  background: #0284C7;
  color: #FFFFFF;
}

.btn-route:active {
  transform: scale(0.97);
}

.btn-route svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   12. SECTION 06: ACESSOS RÁPIDOS & CANAIS
   -------------------------------------------------------------------------- */
.quick-links-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.25s var(--ease-smooth);
}

.quick-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateX(3px);
}

.quick-card:active {
  transform: scale(0.985);
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-icon svg {
  width: 20px;
  height: 20px;
}

.quick-info {
  flex: 1;
}

.quick-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
}

.quick-desc {
  font-size: 0.74rem;
  color: var(--text-secondary);
  display: block;
}

.quick-arrow {
  color: var(--text-muted);
  transition: transform 0.2s;
}

.quick-card:hover .quick-arrow {
  color: var(--cyan-light);
  transform: translateX(3px);
}

.quick-arrow svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   13. SECTION 07: CTA FINAL DECISIVO
   -------------------------------------------------------------------------- */
.final-cta-section {
  margin: 10px 0 24px 0;
}

.final-cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(16, 36, 58, 0.9) 0%, rgba(10, 22, 35, 0.95) 100%);
  border: 1px solid var(--border-card);
  padding: 24px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lvl-3);
  text-align: center;
}

.cta-glow-mesh {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-inner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 8px;
}

.cta-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 18px;
  max-width: 340px;
}

/* --------------------------------------------------------------------------
   14. FOOTER INSTITUCIONAL
   -------------------------------------------------------------------------- */
.app-footer {
  text-align: center;
  padding: 16px 8px 32px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cyan-text { color: var(--cyan-primary); }
.green-text { color: var(--green-primary); }

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-rights {
  font-size: 0.68rem;
  color: #475569;
}

/* --------------------------------------------------------------------------
   15. STICKY BOTTOM BAR (MOBILE CONVERSION & SAFE AREA)
   -------------------------------------------------------------------------- */
.sticky-bar-spacer {
  height: 84px; /* Reserves space so sticky bar doesn't cover content */
  width: 100%;
}

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 12px)) 16px;
  background: rgba(6, 11, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(43, 159, 212, 0.22);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.sticky-bar-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-info-col {
  display: flex;
  flex-direction: column;
}

.sticky-online-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #F8FAFC;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulseGreen 1.8s infinite;
}

.sticky-hint {
  font-size: 0.68rem;
  color: var(--text-secondary);
}

.sticky-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s var(--ease-smooth);
  flex-shrink: 0;
}

.sticky-whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.sticky-whatsapp-btn:active {
  transform: scale(0.96);
}

.sticky-whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   16. TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(14, 28, 44, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--cyan-primary);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--cyan-glow);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-bounce), opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-message {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   17. ACCESSIBILITY & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .glow-orb {
    animation: none !important;
  }
  .btn-shimmer {
    display: none !important;
  }
}
