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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050711;
  color: #f5f7fb;
  -webkit-font-smoothing: antialiased;
}

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

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

.dpix-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb201, #ff8a00);
  color: #111827;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-secondary:hover {
  background: rgba(30, 64, 175, 0.7);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-full {
  width: 100%;
}

.dpix-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 17, 0.95), rgba(5, 7, 17, 0.7), transparent);
}

.dpix-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 1.5rem 1rem;
}

.dpix-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dpix-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.dpix-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #ffb201, #ff8a00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.dpix-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.dpix-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.dpix-nav a {
  color: #9ca3af;
  position: relative;
}

.dpix-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #1a9fff, #4f46e5);
  transition: width 0.2s ease;
}

.dpix-nav a:hover {
  color: #e5e7eb;
}

.dpix-nav a:hover::after {
  width: 100%;
}

.dpix-header-cta {
  display: flex;
  gap: 0.5rem;
}

.dpix-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.3), transparent 55%),
    #050711;
}

.dpix-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.dpix-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  z-index: 1;
}

.dpix-hero-text h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.dpix-hero-text h1 span {
  color: #ffb201;
}

.dpix-hero-text p {
  color: #9ca3af;
  font-size: 0.98rem;
  max-width: 32rem;
  margin: 0 0 1.5rem;
}

.dpix-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.dpix-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #9ca3af;
  font-size: 0.8rem;
}

.badge-item {
  border-left: 2px solid rgba(56, 189, 248, 0.7);
  padding-left: 0.75rem;
}

.badge-label {
  display: block;
  font-weight: 500;
  color: #e5e7eb;
}

.badge-sub {
  display: block;
  opacity: 0.8;
}

.dpix-hero-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: calc(1.25rem + 10px);
}

.dpix-app-btn {
  display: inline-block;
  line-height: 0;
}

.dpix-app-btn img {
  height: 57px;
  width: auto;
  display: block;
}

.dpix-hero-cards {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: flex-end;
}

.card {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.28), rgba(15, 23, 42, 0.96));
  color: #f9fafb;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.card-main {
  width: 100%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.card-chip {
  width: 38px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.card-brand {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.card-number {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.card-secondary {
  max-width: 240px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 1));
}

.card-secondary-alt {
  opacity: 0.95;
}

.card-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.card-value {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.card-sub {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.dpix-hero-partners {
  position: relative;
  margin-top: 3rem;
}

.dpix-hero-partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  color: #6b7280;
  font-size: 0.75rem;
}

.dpix-hero-partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.dpix-section {
  padding: 4rem 0;
  background: #050711;
}

.dpix-section-alt {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), #020617);
}

.dpix-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.dpix-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
}

.dpix-section-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

.dpix-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.dpix-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dpix-feature-card,
.dpix-mini-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.4rem 1.5rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.dpix-feature-card h3,
.dpix-mini-card h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.dpix-feature-card p,
.dpix-mini-card p {
  margin: 0;
  color: #9ca3af;
}

.dpix-section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.dpix-section-copy h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.dpix-section-copy p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.95rem;
}

.dpix-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.dpix-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.dpix-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb201, #ff8a00);
}

.dpix-section-box {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.3rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 1.75rem 1.75rem 1.8rem;
  font-size: 0.9rem;
}

.dpix-section-box-tight {
  max-width: 420px;
}

.dpix-simulate {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dpix-simulate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5e7eb;
}

.dpix-simulate-row span {
  color: #9ca3af;
  font-size: 0.85rem;
}

.dpix-simulate-row strong {
  font-size: 0.95rem;
}

.dpix-simulate-note {
  margin-top: 0.8rem;
  color: #6b7280;
  font-size: 0.8rem;
}

.dpix-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dpix-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dpix-form-group label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.dpix-form-group input {
  background: #020617;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 0.7rem 0.8rem;
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dpix-form-group input::placeholder {
  color: #6b7280;
}

.dpix-form-group input:focus {
  border-color: #ffb201;
  box-shadow: 0 0 0 1px rgba(255, 178, 1, 0.45);
  background: #020617;
}

.dpix-form-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.dpix-footer {
  border-top: 1px solid rgba(31, 41, 55, 1);
  padding: 1.8rem 0 2rem;
  background: #020617;
}

.dpix-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.dpix-logo-footer .dpix-logo-img {
  height: 28px;
}

.dpix-footer-links {
  display: flex;
  gap: 1.25rem;
}

.dpix-footer-links a {
  color: #9ca3af;
}

.dpix-footer-links a:hover {
  color: #e5e7eb;
}

/* Ícones-only no mobile para os botões do header */
.btn-icon-only-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-label {
  display: inline-block;
}

@media (max-width: 960px) {
  .dpix-header-inner {
    gap: 1rem;
  }

  .dpix-nav {
    display: none;
  }

  .btn-icon-only-mobile {
    padding-inline: 0.55rem;
  }

  .btn-icon-only-mobile .btn-label {
    display: none;
  }

  .dpix-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-hero-cards {
    justify-items: flex-start;
  }

  .dpix-section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .dpix-header-inner {
    padding-inline: 1rem;
  }

  .dpix-hero {
    padding-top: 3.5rem;
  }

  .dpix-hero-text h1 {
    font-size: 2rem;
  }

  .dpix-hero-partners-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dpix-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

