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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ── Ticker ── */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding: 13px 0;
  margin-top: 10px;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.ticker__track {
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 70s linear infinite;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  color: #222;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 26px;
  white-space: nowrap;
}

.ticker__track span::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3d8bff;
  margin-left: 26px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

/* ── Topbar / Navbar ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 8px;
}

.navbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  padding: 12px 24px;
  max-width: 880px;
  width: 100%;
  margin: 12px auto;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.navbar__logo {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.navbar__logo-dot {
  color: #111;
}

.navbar__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.navbar__links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.navbar__links a:hover {
  color: #111;
  text-decoration: underline;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateX(120px);
  transition: transform 0.5s ease, box-shadow 0.2s ease, opacity 0.5s ease;
}

.whatsapp-fab.is-visible {
  opacity: 1;
  transform: translateX(0);
  animation: whatsapp-pulse 2.6s ease-in-out 1s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15), 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* ── Chat Widget (phone mockup) ── */
.chat-widget {
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 998;
  pointer-events: none;
  transform: scale(0.61);
  transform-origin: bottom right;
}

.chat-widget .device {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.32s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.chat-widget.is-open {
  pointer-events: auto;
}

.chat-widget.is-open .device {
  opacity: 1;
  transform: translateY(0);
}

.chat-widget .device-screen {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: #fff !important;
}

.chat-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 6px;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1e;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

.chat-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1c1c1e;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 16px 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
}

.chat-widget__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #007aff;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-widget__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.chat-widget__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #075e54);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.chat-widget__avatar-dot { color: #fff; }

.chat-widget__name {
  font-size: 22px;
  font-weight: 600;
  color: #1c1c1e;
  line-height: 1.2;
}

.chat-widget__status {
  font-size: 16px;
  color: #8e8e93;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-widget__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  flex-shrink: 0;
}

.chat-widget__close {
  position: absolute;
  top: -36px;
  right: -36px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #333;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 10;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.chat-widget__close:hover {
  background: #111;
  color: #fff;
  transform: scale(1.1);
}

.chat-widget__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  scroll-behavior: smooth;
}

.chat-message { display: flex; }
.chat-message--bot { justify-content: flex-start; }
.chat-message--user { justify-content: flex-end; }

.chat-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 20px;
  line-height: 1.45;
  word-break: break-word;
  position: relative;
}

.chat-message--bot .chat-bubble {
  background: #e9e9eb;
  color: #1c1c1e;
  border-bottom-left-radius: 6px;
}

.chat-message--user .chat-bubble {
  background: #007aff;
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e9e9eb;
  padding: 14px 18px;
  border-radius: 20px;
  border-bottom-left-radius: 6px;
  width: fit-content;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8e8e93;
  animation: typing-dot 1.2s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-widget__options {
  padding: 4px 0 12px;
  display: flex;
  flex-direction: column;
  background: #fff;
  flex-shrink: 0;
  max-height: 260px;
  overflow-y: auto;
  border-top: 1px solid rgba(60, 60, 67, 0.12);
}

.chat-option {
  background: #fff;
  border: none;
  color: #007aff;
  font-size: 20px;
  font-weight: 500;
  font-family: inherit;
  padding: 14px 18px;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
  transition: background 0.15s;
}

.chat-option::after {
  content: "›";
  color: #c7c7cc;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.chat-option:hover {
  background: #f2f2f7;
}

.chat-option:active {
  background: #e5e5ea;
}

.chat-widget__options .chat-option:last-child {
  border-bottom: none;
}

.chat-final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  padding: 16px 24px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  margin: 4px 14px 10px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.chat-final-btn:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.chat-final-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Email Modal ── */
.email-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.email-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.email-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.email-modal__card {
  position: relative;
  width: 92%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.email-modal.is-open .email-modal__card {
  transform: translateY(0) scale(1);
}

.email-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.email-modal__close:hover {
  background: #e0e0e0;
  color: #333;
}

.email-modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.email-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(61, 139, 255, 0.1);
  font-size: 22px;
  margin-bottom: 14px;
}

.email-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.email-modal__sub {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.email-modal__field {
  margin-bottom: 18px;
}

.email-modal__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.email-modal__field input,
.email-modal__field select,
.email-modal__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.email-modal__field input:focus,
.email-modal__field select:focus,
.email-modal__field textarea:focus {
  border-color: #3d8bff;
  box-shadow: 0 0 0 3px rgba(61, 139, 255, 0.1);
  background: #fff;
}

.email-modal__field textarea {
  resize: vertical;
  min-height: 100px;
}

.email-modal__field input::placeholder,
.email-modal__field textarea::placeholder {
  color: #aaa;
}

.email-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #3d8bff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.email-modal__submit:hover {
  background: #2c6de6;
  transform: translateY(-1px);
}

.email-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.email-modal__status {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}

.email-modal__status.success { color: #25d366; }
.email-modal__status.error { color: #ff3b30; }

@media (max-width: 560px) {
  .email-modal__card {
    padding: 28px 20px 24px;
    border-radius: 14px 14px 0 0;
    max-height: 95vh;
    align-self: flex-end;
  }
}

/* ── Seções ── */
main section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px clamp(16px, 4vw, 60px) 50px;
  border-bottom: 1px solid #eee;
  width: 100%;
  max-width: 100%;
}

main section h2 {
  font-size: 32px;
  color: #111;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 0;
  padding: 70px 50px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  font-size: 220px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.hero__content {
  flex: 1 1 480px;
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d8bff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d8bff;
  box-shadow: 0 0 8px #3d8bff;
  flex-shrink: 0;
}

.hero__title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: #fff;
  margin-bottom: 24px;
  min-height: 2.4em;
}

.hero__title-em {
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0;
}

.hero__cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: #3d8bff;
  margin-left: 3px;
  vertical-align: -0.1em;
  animation: cursor-blink 0.9s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #9a9a9a;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__h2 {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: #d4d4d4;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3d8bff;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 8px;
}

.hero__cta-primary:hover {
  background: #2c6de6;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.hero__cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stat {
  flex: 1 1 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.hero__stat-icon {
  font-size: 13px;
  color: #3d8bff;
  margin-bottom: 6px;
}

.hero__stat-number {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.hero__stat-label {
  font-size: 11px;
  line-height: 1.4;
  color: #888;
}

.hero__photo {
  flex: 1 1 560px;
  max-width: 680px;
  position: relative;
  isolation: isolate;
  align-self: flex-end;
  margin-bottom: -70px;
}

.hero__photo::after {
  display: none;
}

.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  opacity: 1;
}

.hero__photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 6px;
}

.hero__photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  padding: 14px 16px;
}

.hero__photo-caption-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 3px;
}

.hero__photo-caption-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.hero__photo-caption-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3d8bff;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ── Serviços ── */
.services {
  display: block;
  min-height: auto;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid #eee;
}

.services__shell {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.services__head {
  max-width: 640px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.services__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 18px;
}

.services__title {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 18px;
}

.services__title em {
  font-weight: 200;
  font-style: italic;
  color: #3d8bff;
}

.services__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 480px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas:
    "featured b"
    "featured c";
  gap: 1px;
  background: #fff;
  border: 1px solid #fff;
  perspective: 1400px;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #111;
  background-size: cover;
  background-position: center;
  padding: 28px 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  --mx: 50%;
  --my: 50%;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
  transition: transform 0.5s var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 60%, rgba(10, 10, 10, 0.88) 100%);
  transition: background 0.3s ease;
}

.service-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.62) 60%, rgba(10, 10, 10, 0.92) 100%);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(61, 139, 255, 0.4), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card__num {
  position: relative;
}

.service-card__num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: #3d8bff;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-card__num::after {
  width: 28px;
}

.service-card--featured {
  grid-area: featured;
  padding: 40px 36px;
  min-height: 340px;
}

.service-card:nth-child(2) {
  grid-area: b;
}

.service-card:nth-child(3) {
  grid-area: c;
}

.service-card__num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.service-card--featured .service-card__num {
  font-size: 15px;
  color: #3d8bff;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-card--featured h3 {
  font-size: 28px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34ch;
}

.service-card--featured p {
  font-size: 15px;
  max-width: 38ch;
}

/* ── Detalhes expandidos no hover ── */
.service-card__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.4s ease 0.1s;
}

.service-card__details ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__details li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 16px;
  position: relative;
}

.service-card__details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3d8bff;
  font-size: 12px;
}

.service-card.is-active .service-card__details {
  max-height: 200px;
  opacity: 1;
}

/* ── Efeito: card ativo cresce, irmãos encolhem ── */
.services__grid.has-hover .service-card {
  transform: perspective(1000px) scale(0.92);
  filter: brightness(0.6);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              filter 0.5s ease;
}

.services__grid.has-hover .service-card.is-active {
  transform: perspective(1000px) scale(1.04);
  filter: brightness(1);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
    transform: none !important;
  }
  .service-card__num::after {
    transition: none;
  }
}

@media (hover: none) {
  .service-card::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "b"
      "c";
  }
}

@media (max-width: 560px) {
  .services__title {
    font-size: 28px;
  }
  .service-card {
    padding: 24px 22px;
    min-height: 220px;
  }
  .service-card--featured {
    padding: 30px 24px;
    min-height: 280px;
  }
  .service-card--featured h3 {
    font-size: 23px;
  }
}

/* ── Projetos ── */
.projects {
  display: block;
  min-height: auto;
  padding: 40px 0;
  border-bottom: none;
}

.projects__shell {
  position: relative;
  width: 96%;
  margin: 0 auto;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 70px 50px 90px;
}

.projects__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d8bff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.projects__title {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  max-width: 640px;
  margin-bottom: 40px;
}

.projects__title em {
  font-weight: 200;
  font-style: italic;
  color: #3d8bff;
}

/* ── Em breve card ── */
.em-breve {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(61,139,255,0.04) 100%);
  overflow: hidden;
}

.em-breve__border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px dashed rgba(61,139,255,0.25);
  mask-image: linear-gradient(135deg, #000 0%, transparent 50%, #000 100%);
  -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 50%, #000 100%);
  animation: em-breve-border 4s ease-in-out infinite alternate;
}

@keyframes em-breve-border {
  0%   { mask-image: linear-gradient(135deg, #000 0%, transparent 50%, #000 100%);
         -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 50%, #000 100%); }
  100% { mask-image: linear-gradient(315deg, #000 0%, transparent 50%, #000 100%);
         -webkit-mask-image: linear-gradient(315deg, #000 0%, transparent 50%, #000 100%); }
}

.em-breve__label {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
}

.em-breve__label::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #3d8bff;
  margin: 14px auto 0;
}

.em-breve__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  letter-spacing: 0.01em;
}

/* ── Quem sou eu ── */
.about {
  display: block;
  min-height: auto;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid #eee;
}

.about__shell {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.about__head {
  max-width: 640px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.about__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 18px;
}

.about__title {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 0;
}

.about__title em {
  font-weight: 200;
  font-style: italic;
  color: #3d8bff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__intro {
  font-size: 19px;
  line-height: 1.7;
  color: #222;
  font-weight: 600;
}

.about__text p:not(.about__intro) {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.about__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f6f7fb;
  border: 1px solid #ececf2;
  border-radius: 18px;
  padding: 26px;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 22px -18px rgba(20, 30, 60, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about__highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 139, 255, 0.30);
  box-shadow: 0 18px 36px -18px rgba(61, 139, 255, 0.35);
}

.about__highlight-img {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.about__highlight h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.about__highlight p {
  font-size: 13.5px;
  line-height: 1.45;
  color: #777;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about__panel {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .about__title {
    font-size: 28px;
  }

  .about__intro {
    font-size: 16px;
  }

  .about__highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

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

.project-card {
  grid-column: span 1;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
}

.project-card--large {
  grid-column: span 2;
  min-height: 260px;
  font-size: 22px;
}

@media (max-width: 760px) {
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--large {
    grid-column: span 1;
  }
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
  pointer-events: none;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__slot {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.preloader__brand,
.preloader__logo {
  grid-column: 1;
  grid-row: 1;
  line-height: 1;
}

.preloader__brand {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.preloader__brand-suffix {
  color: #3d8bff;
  margin-left: 4px;
}

.preloader__logo {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  opacity: 0;
  will-change: transform, color, opacity;
  transform-origin: center center;
}

.preloader__logo-dot {
  color: #3d8bff;
}

.preloader__bar-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px 28px;
}

.preloader__bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.preloader__bar-fill {
  position: relative;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(61, 139, 255, 0), #3d8bff);
  border-radius: 0;
  transition: width 0.2s ease;
}

.preloader__bar-fill::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3d8bff;
  box-shadow: 0 0 10px 2px rgba(61, 139, 255, 0.7);
  transform: translate(50%, -50%);
}

.preloader__counter {
  font-family: 'Raleway', sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  min-width: 46px;
  text-align: right;
}

.preloader__brand-suffix.is-popping {
  display: inline-block;
  transform-origin: center;
}

/* ══════════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════════ */

/* ── Hambúrguer e menu mobile ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.navbar__hamburger:hover {
  background: #f2f2f2;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.nav-mobile.is-open {
  max-height: 400px;
}

.nav-mobile ul {
  list-style: none;
  padding: 8px 0 16px;
}

.nav-mobile ul li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-mobile ul li a:hover {
  background: #f5f5f5;
  color: #111;
}

/* ── 1100px: navbar começa a ficar apertada ── */
@media (max-width: 1100px) {
  .navbar {
    gap: 12px;
    padding: 12px 20px;
  }

  .navbar__links {
    gap: 14px;
  }

  .navbar__links a {
    font-size: 13px;
  }

  .hero {
    gap: 40px;
    padding: 60px 40px;
  }

  .hero__title {
    font-size: 40px;
  }
}

/* ── 900px: layout em coluna, hambúrguer ativo ── */
@media (max-width: 900px) {
  /* Navbar: oculta links, mostra hambúrguer */
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .navbar {
    margin: 8px auto;
    padding: 12px 20px;
  }

  /* Hero — layout em coluna, texto centralizado no espaço acima da foto */
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    padding: 0 28px 0;
    gap: 0;
    width: 100%;
    border-radius: 0;
    min-height: min(86vh, 760px);
  }

  .hero__bg-text {
    font-size: 100px;
  }

  /* Ocupa o espaço livre e centraliza o texto nele */
  .hero__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    padding: 64px 0 28px;
  }

  .hero__title {
    font-size: 36px;
    min-height: auto;
  }

  .hero__subtitle,
  .hero__h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__eyebrow {
    justify-content: center;
  }

  /* Foto: larga, colada na borda de baixo */
  .hero__photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    align-self: stretch;
    display: flex;
    justify-content: center;
  }

  /* Proporção mais baixa: reduz a área transparente da máscara */
  .hero__photo img {
    width: 88%;
    max-width: 480px;
    aspect-ratio: 1 / 1.05;
    object-position: center 22%;
  }

  /* Seções comuns sem altura mínima forçada */
  main section:not(.hero) {
    padding: 56px 28px 40px;
    min-height: auto;
  }

  /* Ticker */
  .loop-green {
    color: #ff5500;
  }

  /* Projetos */
  .projects__shell {
    padding: 50px 28px 60px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--large {
    grid-column: span 2;
  }
}

/* ── 680px: tablet menor ── */
@media (max-width: 680px) {
  .navbar {
    margin: 6px auto;
    padding: 10px 16px;
    border-radius: 12px;
    gap: 8px;
  }

  .navbar__logo {
    font-size: 20px;
  }

  .hero {
    padding: 0 20px 0;
    border-radius: 14px;
    min-height: min(84vh, 680px);
  }

  .hero__content {
    padding: 56px 0 24px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__h2 {
    font-size: 15px;
  }

  .hero__photo img {
    width: 90%;
    max-width: 400px;
  }

  main section:not(.hero) {
    padding: 70px 20px 40px;
  }

  .projects__shell {
    padding: 40px 20px 50px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--large {
    grid-column: span 1;
  }
}

/* ── 480px: mobile ── */
@media (max-width: 480px) {
  .navbar {
    margin: 4px 8px;
    width: calc(100% - 16px);
    border-radius: 10px;
    padding: 10px 14px;
  }

  .hero {
    width: calc(100% - 12px);
    padding: 0 16px 0;
    border-radius: 12px;
    min-height: min(82vh, 620px);
  }

  .hero__content {
    padding: 48px 0 20px;
  }

  .hero__title {
    font-size: 24px;
    min-height: auto;
  }

  .hero__h2 {
    font-size: 14px;
  }

  .hero__photo img {
    width: 92%;
    max-width: 330px;
  }

  .hero__bg-text {
    font-size: 70px;
  }

  main section:not(.hero) {
    padding: 60px 16px 36px;
  }

  .projects__shell {
    padding: 36px 16px 44px;
    border-radius: 14px;
  }

  .projects__title {
    font-size: 26px;
  }

  /* Chat widget menor em mobile */
  .chat-widget {
    transform: scale(0.52);
  }
}

/* ── Cursor magnético ── */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after {
    cursor: none !important;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #3d8bff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(61, 139, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .cursor-dot.is-hovering {
    width: 4px;
    height: 4px;
    background: #fff;
  }

  .cursor-ring.is-hovering {
    width: 52px;
    height: 52px;
    border-color: rgba(61, 139, 255, 0.8);
    background: rgba(61, 139, 255, 0.08);
  }

  .cursor-dot.is-clicking {
    width: 4px;
    height: 4px;
  }

  .cursor-ring.is-clicking {
    width: 28px;
    height: 28px;
  }

  .cursor-dot.is-hidden,
  .cursor-ring.is-hidden {
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════
   MELHORIAS DE APARÊNCIA — VERSÃO 2
   ═══════════════════════════════════════════════ */

:root {
  --accent: #3d8bff;
  --accent-2: #7b5cff;
  --accent-3: #22d3ee;
  --grad: linear-gradient(120deg, #3d8bff 0%, #7b5cff 55%, #22d3ee 110%);
}

::selection {
  background: rgba(61, 139, 255, 0.22);
  color: #111;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f4f5f7; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3d8bff, #7b5cff);
  border-radius: 999px;
  border: 2px solid #f4f5f7;
}

body { background-color: #fbfbfd; }

/* ── Navbar glassmorphism ── */
.navbar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 34px rgba(20, 30, 60, 0.10);
}

.navbar__logo-dot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.navbar__links a { position: relative; }

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar__links a:hover { color: #111; text-decoration: none; }
.navbar__links a:hover::after { transform: scaleX(1); }

/* ── Hero: gradiente + brilhos ── */
.hero {
  background:
    radial-gradient(900px 520px at 10% -5%, rgba(61, 139, 255, 0.20), transparent 60%),
    radial-gradient(820px 620px at 100% 100%, rgba(123, 92, 255, 0.24), transparent 55%),
    radial-gradient(620px 520px at 88% 12%, rgba(34, 211, 238, 0.12), transparent 60%),
    #08080c;
}

.hero__bg-text::before {
  content: "STUDIO";
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  letter-spacing: 0.02em;
}

.hero__eyebrow {
  background: linear-gradient(120deg, rgba(61, 139, 255, 0.16), rgba(123, 92, 255, 0.16));
  border-color: rgba(123, 92, 255, 0.28);
}

.hero__cursor { background: linear-gradient(180deg, #3d8bff, #7b5cff); }
.hero__h2 { color: #c9c9d4; }

/* ── Ticker ── */
.ticker { box-shadow: 0 12px 34px rgba(20, 30, 60, 0.07); }
.ticker__track span::after { background: var(--accent-2); }

/* ── Títulos de seção com gradiente ── */
.services__title em,
.about__title em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ── Serviços: cantos arredondados + elevação ── */
.services__grid {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 34px 70px -34px rgba(20, 30, 60, 0.40);
}

.service-card--featured .service-card__num {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════
   SEÇÕES NOVAS + RODAPÉ
   ═══════════════════════════════════════════════ */

/* ── Como funciona ── */
.process {
  display: block;
  min-height: auto;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid #eee;
  background: #f6f7fb;
}

.process__shell { width: 96%; max-width: 1100px; margin: 0 auto; }
.process__head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 48px); }

.process__label,
.faq__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 18px;
}

.process__title,
.faq__title {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.process__title em,
.faq__title em {
  font-weight: 200;
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.process__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 520px;
}

/* ── Timeline (Como funciona) ── */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

.timeline__track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #e6e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}

.timeline__item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 26px 0;
}

.timeline__item--left { justify-content: flex-start; }
.timeline__item--right { justify-content: flex-end; }

.timeline__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #d9dce7;
  color: #8a8f9e;
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.timeline__dot.is-active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(61, 139, 255, 0.14), 0 12px 26px -8px rgba(61, 139, 255, 0.55);
}

.timeline__card {
  position: relative;
  width: calc(50% - 48px);
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 12px 34px -22px rgba(20, 30, 60, 0.28);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.timeline__card:hover {
  border-color: rgba(61, 139, 255, 0.30);
  box-shadow: 0 28px 56px -26px rgba(61, 139, 255, 0.40);
}

.timeline__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 10px;
}

.timeline__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.timeline__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Conectores (stubs) dos cards até a linha central */
.timeline__item--left .timeline__card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -48px;
  width: 48px;
  height: 2px;
  background: #e6e8f0;
  transform: translateY(-50%);
}

.timeline__item--right .timeline__card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px;
  width: 48px;
  height: 2px;
  background: #e6e8f0;
  transform: translateY(-50%);
}

/* ── Responsivo: linha à esquerda, cards à direita ── */
@media (max-width: 720px) {
  .timeline__track { left: 24px; transform: none; }

  .timeline__item--left,
  .timeline__item--right {
    justify-content: flex-end;
  }

  .timeline__dot {
    left: 24px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .timeline__card { width: calc(100% - 64px); }

  .timeline__item--left .timeline__card::after,
  .timeline__item--right .timeline__card::after {
    left: -40px;
    right: auto;
    width: 40px;
  }
}

/* ── FAQ ── */
.faq {
  display: block;
  min-height: auto;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid #eee;
}

.faq__shell { width: 96%; max-width: 820px; margin: 0 auto; }
.faq__head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 40px); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(20, 30, 60, 0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item[open] {
  border-color: rgba(61, 139, 255, 0.35);
  box-shadow: 0 18px 42px -20px rgba(61, 139, 255, 0.40);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  position: relative;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: #3d8bff; }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  padding: 0 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  transition: padding 0.45s ease;
}

.faq__item[open] .faq__answer > p {
  padding: 0 22px 20px;
}

/* ── CTA Final ── */
.cta-final {
  padding: 100px 0;
  background: #0a0a0a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(61, 139, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-final__shell {
  width: 92%;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.cta-final__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8bff;
  margin-bottom: 18px;
}

.cta-final__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.cta-final__title em {
  font-weight: 200;
  font-style: italic;
  color: #3d8bff;
}

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

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-final__btn--primary {
  background: #25d366;
  color: #fff;
}

.cta-final__btn--primary:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
}

.cta-final__btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-final__btn--secondary:hover {
  border-color: #3d8bff;
  color: #3d8bff;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .cta-final { padding: 72px 0; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__btn { width: 100%; justify-content: center; }
}

/* ── Rodapé ── */
.footer {
  display: block;
  background: #08080c;
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0 28px;
}

.footer__shell { width: 96%; max-width: 1100px; margin: 0 auto; }

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer__brand { max-width: 320px; }

.footer__logo {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 16px;
}

.footer__logo-dot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer__tagline { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }

.footer__nav { display: flex; flex-direction: column; gap: 10px; }

.footer__nav-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer__nav a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Responsivo (novas seções) ── */
@media (max-width: 560px) {
  .footer__top { flex-direction: column; gap: 32px; }
}
