/* ArisCred — Landing Page */
:root {
  --texto-geral: "Manrope", sans-serif; Inter;
  --brand-blue: #00265e;
  --brand-green: #00265e;
  --brand-yellow: #ffb400;
  --surface: #f7f8fa;
  --ink: #1a2236;
  --muted: #5a6478;
  --border: #e6e9ef;
  --shadow-soft: 0 4px 24px -8px rgba(0, 38, 94, 0.12);
  --shadow-elev: 0 24px 60px -20px rgba(0, 38, 94, 0.25);
  --gradient-cta: linear-gradient(135deg, #124da5 0%, #00265e 100%);
  --gradient-hero: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(40, 184, 123, 0.18),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 0% 10%,
      rgba(0, 38, 94, 0.08),
      transparent 60%
    );
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--texto-geral);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--texto-geral);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

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

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

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

input {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

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

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

.muted {
  color: var(--muted);
}

.muted-light {
  color: rgba(255, 255, 255, 0.8);
}

.sm {
  font-size: 0.9rem;
}

.xs {
  font-size: 0.78rem;
}

.strong {
  font-weight: 700;
}

.center {
  text-align: center;
}

.mt {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 0.75rem;
}

.mt-md {
  margin-top: 1.25rem;
}

.mt-lg {
  margin-top: 1.75rem;
}

.mb {
  margin-bottom: 0.75rem;
}

.hidden {
  display: none !important;
}

.full {
  width: 100%;
}

.upper {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.accent-green {
  color: var(--brand-green);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}

.btn-cta {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(18, 77, 165, 0.404);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -10px rgba(18, 77, 165, 0.404);
}

.btn-ghost {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
}

.btn-dark {
  background: var(--brand-blue);
  color: #fff;
}

.btn-dark:hover {
  background: #001a44;
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
}

.site-header .row {
  height: 64px;
}

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink);
  transition: color 0.18s;
}

.nav a:hover {
  color: var(--brand-green);
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }
}

/* Tag pill */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(40, 184, 123, 0.1);
  color: #16744a;
  font-size: 0.78rem;
  font-weight: 600;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(40, 184, 123, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 184, 123, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(40, 184, 123, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 184, 123, 0);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  background: var(--gradient-hero);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

  .hero-cards {
    display: none;
  }
}

.hero h1 {
  margin-top: 1.25rem;
  line-height: 1.05;
}

.lead {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 32rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
}

.lead strong {
  color: var(--ink);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Hero cards */
.hero-cards {
  position: relative;
}

.card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card.dark {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  margin-left: 4rem;
  margin-top: 3rem;
}

.card.mini {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 18rem;
  z-index: 2;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bullet-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(40, 184, 123, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.big-number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0.5rem;
  color: var(--brand-yellow);
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.bg-surface {
  background: var(--surface);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.head-block {
  max-width: 36rem;
}

.head-block h2 {
  margin-top: 1rem;
}

.head-block .muted {
  margin-top: 1rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

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

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

/* Lists */
.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Simulador */
.simulator {
  box-shadow: var(--shadow-elev);
}

.value-display {
  margin-top: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--brand-blue);
}

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    var(--brand-green) var(--p, 40%),
    #e6e9ef var(--p, 40%)
  );
  border-radius: 999px;
  outline: none;
  margin-top: 1rem;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 4px solid var(--brand-green);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(40, 184, 123, 0.35);
}

.range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  background: #fff;
  border: 4px solid var(--brand-green);
  border-radius: 999px;
  cursor: pointer;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all 0.15s;
}

.chip:hover {
  border-color: var(--brand-green);
}

.chip.is-active {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.result-box {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--surface);
}

.result-value {
  margin-top: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--brand-green);
}

.result-suffix {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.badge-sim {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(40, 184, 123, 0.15);
  color: #16744a;
}

/* Form */
.link-back {
  font-size: 0.78rem;
  color: var(--muted);
}

.link-back:hover {
  color: var(--ink);
}

.form-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.fields {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fields label {
  display: block;
}

.fields label span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.fields input {
  margin-top: 0.25rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fields input:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(40, 184, 123, 0.15);
}

.success-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 1rem auto 0;
}

/* Cards content */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand-blue);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.card h3 {
  margin-top: 1.25rem;
}

.card p {
  margin-top: 0.5rem;
}

.step-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand-blue);
  opacity: 0.12;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(40, 184, 123, 0.12);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Depoimentos */
.stars {
  color: var(--brand-yellow);
  letter-spacing: 2px;
}

.quote {
  margin-top: 1rem;
  color: var(--ink);
  line-height: 1.6;
}

.avatar-row {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--texto-geral);
}

/* Segurança */
.trust-item {
  padding: 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
}

.alert {
  border-left: 4px solid var(--brand-yellow);
  background: #fffaea;
}

.alert-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.alert-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert p {
  margin-top: 0.5rem;
  color: var(--ink);
  opacity: 0.85;
  font-size: 0.95rem;
}

/* CTA final */
.cta-final {
  border-radius: 28px;
  padding: 4rem 2.5rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #00265e 0%, #001a44 100%);
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-final p {
  margin-top: 1.25rem;
  max-width: 32rem;
  margin-inline: auto;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  background: var(--brand-blue);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

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

.footer-logo {
  height: 33px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);

}

.site-footer p {
  margin-top: 1.25rem;
  max-width: 24rem;
}

.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.site-footer a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  opacity: 0.65;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}
/* Grid 2 colunas para campos do formulário */
.grid-2-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.grid-2-fields select {
  margin-top: 0.25rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--ink);
  outline: none;
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.grid-2-fields select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(40, 184, 123, 0.15);
}

.link-investidor a {
  color: #ffffff;
}

.link-investidor a:hover {
  color: #ffffff !important;
}
