@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f9fc;
  --bg2: #edf5f9;
  --bg3: #e7f1f6;

  --card: #ffffff;
  --card2: rgba(8, 127, 189, 0.035);

  --line: rgba(24, 58, 92, 0.10);
  --line-blue: rgba(8, 127, 189, 0.28);

  --text: #183a5c;
  --muted: #647b8f;

  --blue: #087fbd;
  --blue2: #0088cc;
  --blue3: #066da4;

  --silver: #6f8395;
  --white: #ffffff;

  --max: 1180px;
  --radius: 24px;
  --radius-lg: 32px;

  --gradient-blue: linear-gradient(
    135deg,
    #0088cc 0%,
    #087fbd 55%,
    #066da4 100%
  );

  --gradient-dark: linear-gradient(
    145deg,
    #ffffff 0%,
    #f3f8fb 55%,
    #e8f2f7 100%
  );

  --shadow: 0 25px 70px rgba(24, 58, 92, 0.12);

  --shadow-blue: 0 20px 60px rgba(8, 127, 189, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(110, 23, 232, 0.12),
      transparent 32rem
    ),
    radial-gradient(
      circle at 0% 45%,
      rgba(72, 14, 140, 0.08),
      transparent 30rem
    ),
    var(--bg);

  color: var(--text);

  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(11, 5, 18, 0.82);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--line);
}

.nav {
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.logo {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 25px;

  color: #b7c3d1;

  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue2);
}

.menu-btn {
  display: none;

  background: none;
  border: 0;

  color: white;

  font-size: 1.7rem;

  cursor: pointer;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 13px 21px;

  border-radius: 12px;

  border: 1px solid var(--line);

  font-weight: 750;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn-primary {
  background: var(--gradient-blue);

  color: white;

  border-color: rgba(112, 43, 234, 0.7);

  box-shadow:
    0 10px 30px rgba(110, 23, 232, 0.2),
    inset 0 1px 0 rgba(247, 247, 247, 0.2);
}

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

  box-shadow:
    0 16px 40px rgba(110, 23, 232, 0.3),
    0 0 25px rgba(110, 23, 232, 0.12);
}

.btn-ghost {
  background: rgba(247, 247, 247, 0.025);

  color: #e1d9ee;
}

.btn-ghost:hover {
  border-color: rgba(110, 23, 232, 0.45);

  color: var(--blue2);

  background: rgba(110, 23, 232, 0.05);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  overflow: hidden;

  padding: 105px 0 80px;

  background:
    radial-gradient(
      circle at 88% 35%,
      rgba(110, 23, 232, 0.18),
      transparent 38%
    ),
    linear-gradient(
      110deg,
      #090212 0%,
      #0b0316 38%,
      #140629 68%,
      #250949 100%
    );
}

.hero::before {
  content: "";

  position: absolute;

  top: -30%;
  right: -10%;

  width: 650px;
  height: 650px;

  background:
    radial-gradient(
      circle,
      rgba(110, 23, 232, 0.16) 10%,
      rgba(110, 23, 232, 0.06) 35%,
      transparent 70%
    );

  filter: blur(30px);

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: -150px;
  bottom: -150px;

  border-radius: 50%;

  background: rgba(72, 14, 140, 0.1);

  filter: blur(90px);

  pointer-events: none;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.04fr 0.96fr;

  gap: 70px;

  align-items: center;

  position: relative;
  z-index: 1;
}

.hero-image {
  display: block;

  width: 100%;
  max-width: 560px;
  height: auto;

  margin: 0 auto;

  border-radius: 32px;

  border: 1px solid rgba(247, 247, 247, 0.12);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(110, 23, 232, 0.16);

  position: relative;

  z-index: 2;

  transform: translateY(0);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-image:hover {
  transform: translateY(-5px);

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.55),
    0 0 85px rgba(110, 23, 232, 0.22);
}

.eyebrow {
  display: inline-flex;

  padding: 7px 13px;

  border: 1px solid rgba(110, 23, 232, 0.3);

  border-radius: 99px;

  color: var(--blue2);

  background: rgba(110, 23, 232, 0.06);

  font-size: 0.78rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  box-shadow:
    0 0 25px rgba(110, 23, 232, 0.05),
    inset 0 1px 0 rgba(247, 247, 247, 0.04);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.065em;

  margin: 20px 0 25px;
}

h1 span {
  background: var(--gradient-blue);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);

  line-height: 1.05;

  letter-spacing: -0.045em;

  margin: 0 0 18px;
}

h3 {
  line-height: 1.2;
}

.lead {
  font-size: 1.12rem;

  color: var(--muted);

  max-width: 650px;
}

.actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.visual {
  min-height: 470px;

  border: 1px solid rgba(247, 247, 247, 0.08);

  border-radius: 34px;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(110, 23, 232, 0.2),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(28, 17, 44, 0.95),
      rgba(12, 5, 20, 0.95)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(247, 247, 247, 0.05);

  position: relative;

  overflow: hidden;

  padding: 28px;
}

.visual::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background: rgba(110, 23, 232, 0.18);

  filter: blur(50px);

  right: -90px;
  top: -90px;
}

.visual::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(112, 43, 234, 0.08);

  filter: blur(50px);

  left: -80px;
  bottom: -80px;
}

.mock {
  position: absolute;

  inset: 70px 55px;

  background:
    linear-gradient(
      145deg,
      #1c112c,
      #10071c
    );

  border: 1px solid rgba(247, 247, 247, 0.1);

  border-radius: 25px;

  padding: 24px;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(110, 23, 232, 0.08);

  transform: rotate(-2deg);
}

.mock-top {
  display: flex;

  justify-content: space-between;

  color: var(--muted);

  font-size: 0.8rem;
}

.balance {
  font-size: 2rem;

  font-weight: 850;

  margin: 28px 0;

  color: white;
}

.chart {
  height: 120px;

  display: flex;

  align-items: end;

  gap: 8px;
}

.bar {
  flex: 1;

  background:
    linear-gradient(
      to top,
      var(--blue3),
      var(--blue2)
    );

  border-radius: 7px 7px 2px 2px;

  box-shadow:
    0 0 18px rgba(110, 23, 232, 0.2);
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 720px;

  margin-bottom: 40px;
}

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

/* =========================================================
   CARDS
========================================================= */

.cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.card {
  background:
    linear-gradient(
      145deg,
      rgba(247, 247, 247, 0.055),
      rgba(247, 247, 247, 0.025)
    );

  border: 1px solid rgba(247, 247, 247, 0.08);

  border-radius: var(--radius);

  padding: 27px;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(247, 247, 247, 0.025);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);

  border-color: rgba(110, 23, 232, 0.35);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 35px rgba(110, 23, 232, 0.07);
}

.icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      145deg,
      rgba(110, 23, 232, 0.16),
      rgba(72, 14, 140, 0.08)
    );

  border: 1px solid rgba(110, 23, 232, 0.2);

  color: var(--blue2);

  font-weight: 900;

  margin-bottom: 22px;

  box-shadow:
    0 8px 25px rgba(110, 23, 232, 0.08);
}

.number {
  color: var(--blue2);

  font-weight: 900;

  font-size: 0.85rem;
}

.card h3 {
  font-size: 1.25rem;

  margin: 10px 0;
}

.card p {
  color: var(--muted);

  margin: 0 0 18px;
}

/* =========================================================
   SPLIT
========================================================= */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.panel {
  padding: 35px;

  border: 1px solid rgba(247, 247, 247, 0.08);

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(247, 247, 247, 0.055),
      rgba(247, 247, 247, 0.02)
    );

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(247, 247, 247, 0.025);
}

.checks {
  display: grid;

  gap: 14px;

  margin-top: 25px;
}

.check {
  display: flex;

  gap: 12px;

  color: #d3cbe2;
}

.check b {
  color: var(--blue2);
}

.stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-top: 25px;
}

.stat {
  padding: 20px;

  border: 1px solid rgba(247, 247, 247, 0.08);

  border-radius: 18px;

  background: rgba(247, 247, 247, 0.025);
}

.stat strong {
  display: block;

  font-size: 1.7rem;

  color: var(--blue2);
}

/* =========================================================
   CTA
========================================================= */

.cta {
  padding: 65px;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(112, 43, 234, 0.25),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      #180b2c,
      #0c0514
    );

  border: 1px solid rgba(110, 23, 232, 0.25);

  text-align: center;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(110, 23, 232, 0.08),
    inset 0 1px 0 rgba(247, 247, 247, 0.04);
}

.cta h2 {
  color: white;
}

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

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  padding: 85px 0 60px;

  border-bottom: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(110, 23, 232, 0.1),
      transparent 30rem
    );
}

/* =========================================================
   FORMULÁRIO DE CONTATO — B2B TECNOLOGIA
========================================================= */

.form {
  display: grid;
  gap: 18px;
}


/* =========================================================
   CAMPOS
========================================================= */

.field {
  display: grid;
  gap: 8px;
}


.field label {
  color: #e0d8ed;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.01em;
}


/* =========================================================
   INPUTS
========================================================= */

.field input,
.field select,
.field textarea {

  width: 100%;

  box-sizing: border-box;

  border: 1px solid rgba(247, 247, 247, 0.1);

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(247, 247, 247, 0.055),
      rgba(247, 247, 247, 0.025)
    );

  color: #f7f7f7;

  padding: 14px 15px;

  font-family: inherit;

  font-size: 0.88rem;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


/* =========================================================
   ALTURA DOS CAMPOS
========================================================= */

.field input,
.field select {
  min-height: 50px;
}

.field textarea {
  min-height: 145px;

  resize: vertical;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 247, 247, 0.3);
}


/* =========================================================
   SELECT
========================================================= */

.field select {
  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;

  padding-right: 42px;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #702bea 50%
    ),
    linear-gradient(
      135deg,
      #702bea 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.field select option {
  background: #160b26;
  color: #f7f7f7;
}


/* =========================================================
   FOCO
========================================================= */

.field input:focus,
.field select:focus,
.field textarea:focus {

  border-color:
    rgba(112, 43, 234, 0.75);

  background:
    rgba(110, 23, 232, 0.045);

  box-shadow:
    0 0 0 4px rgba(110, 23, 232, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   HOVER
========================================================= */

.field input:hover,
.field select:hover,
.field textarea:hover {

  border-color:
    rgba(247, 247, 247, 0.17);
}


/* =========================================================
   BOTÃO DO FORMULÁRIO
========================================================= */

.form .btn-primary {

  width: 100%;

  min-height: 52px;

  margin-top: 4px;

  border-radius: 13px;

  font-size: 0.78rem;

  letter-spacing: 0.06em;

  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(110, 23, 232, 0.2),
    inset 0 1px 0 rgba(247, 247, 247, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}


.form .btn-primary:hover {

  transform: translateY(-2px);

  filter: brightness(1.06);

  box-shadow:
    0 18px 42px rgba(110, 23, 232, 0.32),
    0 0 30px rgba(110, 23, 232, 0.12);
}


/* =========================================================
   STATUS DO FORMULÁRIO
========================================================= */

.form-status {

  min-height: 20px;

  margin-top: -2px;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.5;

  text-align: center;
}


/* =========================================================
   PAINEL DO FORMULÁRIO
========================================================= */

.panel {

  position: relative;

  overflow: hidden;

  padding: 38px;

  border:
    1px solid rgba(247, 247, 247, 0.1);

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(110, 23, 232, 0.13),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(247, 247, 247, 0.065),
      rgba(247, 247, 247, 0.025)
    );

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(247, 247, 247, 0.04);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


/* brilho */

.panel::before {

  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background:
    rgba(110, 23, 232, 0.12);

  filter: blur(45px);

  pointer-events: none;
}


/* =========================================================
   RESPONSIVO — FORMULÁRIO
========================================================= */

@media (max-width: 600px) {

  .panel {
    padding: 25px 20px;

    border-radius: 22px;
  }

  .form {
    gap: 16px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 0.86rem;
  }

  .field input,
  .field select {
    min-height: 48px;
  }

  .field textarea {
    min-height: 130px;
  }

  .form .btn-primary {
    min-height: 50px;
  }

}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  border-top: 1px solid rgba(247, 247, 247, 0.08);

  padding: 55px 0 25px;

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(110, 23, 232, 0.09),
      transparent 25rem
    ),
    #07030d;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.4fr repeat(3, 1fr);

  gap: 35px;
}

.footer h4 {
  margin: 0 0 15px;
}

.footer a,
.footer p {
  color: #7f8fa1;

  font-size: 0.92rem;
}

.footer a {
  transition: 0.2s ease;
}

.footer a:hover {
  color: var(--blue2);
}

.footer-links {
  display: grid;

  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(247, 247, 247, 0.08);

  margin-top: 40px;

  padding-top: 20px;

  color: #566576;

  font-size: 0.82rem;

  display: flex;

  justify-content: space-between;

  gap: 15px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .nav-links {
    display: none;

    position: absolute;

    top: 78px;
    left: 0;
    right: 0;

    background:
      rgba(11, 5, 18, 0.97);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--line);

    padding: 20px;

    flex-direction: column;

    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #e3dcef;
  }

  .menu-btn {
    display: block;
  }

  .nav > .btn {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 70px;
  }

  .visual {
    min-height: 390px;
  }
}

@media (max-width: 600px) {

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .cards,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 65px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .mock {
    inset: 55px 25px;
  }

  .cta {
    padding: 40px 20px;
  }

  .copyright {
    flex-direction: column;
  }
}
/* =========================================================
   NOSSAS SOLUÇÕES
========================================================= */

.solutions {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(110, 23, 232, 0.08),
      transparent 32%
    ),
    #090212;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.solutions-head {
  max-width: 760px;

  margin-bottom: 55px;
}

.solutions-head h2 {
  margin-top: 20px;

  font-size: clamp(2.5rem, 5vw, 4rem);

  line-height: 1;

  letter-spacing: -0.055em;
}

.solutions-head h2 span {
  color: #702bea;
}

.solutions-head .lead {
  max-width: 680px;

  margin-top: 22px;

  color: #91a4b7;

  font-size: 1.05rem;

  line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.solutions-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.solution-card {
  position: relative;

  min-height: 340px;

  display: flex;

  flex-direction: column;

  padding: 30px;

  overflow: hidden;

  border: 1px solid rgba(247, 247, 247, 0.08);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(29, 18, 48, 0.78),
      rgba(15, 6, 28, 0.9)
    );

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* brilho discreto */

.solution-card::before {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(110, 23, 232, 0.14),
      transparent 70%
    );

  filter: blur(20px);

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-6px);

  border-color: rgba(112, 43, 234, 0.35);

  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.3),
    0 0 35px rgba(110, 23, 232, 0.06);
}

.solution-card:hover::before {
  opacity: 1;
}


/* =========================================================
   ÍCONE
========================================================= */

.solution-icon {
  position: relative;

  z-index: 1;

  width: 56px;
  height: 56px;

  display: grid;

  place-items: center;

  margin-bottom: 24px;

  border: 1px solid rgba(112, 43, 234, 0.2);

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(112, 43, 234, 0.14),
      rgba(112, 43, 234, 0.04)
    );

  color: #702bea;

  box-shadow:
    inset 0 1px 0 rgba(247, 247, 247, 0.04),
    0 10px 25px rgba(110, 23, 232, 0.08);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: translateY(-2px);

  background:
    rgba(112, 43, 234, 0.16);

  box-shadow:
    0 12px 30px rgba(110, 23, 232, 0.16);
}


/* =========================================================
   NÚMERO
========================================================= */

.solution-number {
  display: block;

  margin-bottom: 9px;

  color: #702bea;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.12em;
}


/* =========================================================
   TÍTULO
========================================================= */

.solution-card h3 {
  position: relative;

  z-index: 1;

  margin: 0 0 12px;

  color: #f6f3fb;

  font-size: 1.3rem;

  line-height: 1.2;

  letter-spacing: -0.025em;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.solution-card p {
  position: relative;

  z-index: 1;

  margin: 0;

  color: #8fa1b2;

  font-size: 0.9rem;

  line-height: 1.7;
}


/* =========================================================
   LINK
========================================================= */

.solution-link {
  position: relative;

  z-index: 1;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  width: fit-content;

  margin-top: auto;
  padding-top: 25px;

  color: #d4cbe5;

  font-size: 0.76rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  transition:
    color 0.25s ease;
}

.solution-link span {
  font-size: 1rem;

  transition:
    transform 0.25s ease;
}

.solution-link:hover {
  color: #702bea;
}

.solution-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .solutions {
    padding: 85px 0;
  }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .solutions {
    padding: 70px 0;
  }

  .solutions-head {
    margin-bottom: 35px;
  }

  .solutions-head h2 {
    font-size: 2.45rem;
  }

  .solutions-head .lead {
    font-size: 0.98rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .solution-card {
    min-height: 310px;

    padding: 25px;

    border-radius: 20px;
  }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 400px) {

  .solutions-head h2 {
    font-size: 2.2rem;
  }

  .solution-card {
    min-height: 300px;
  }

}
/* =========================================================
   COMPORTAMENTO DE ROLAGEM
========================================================= */

html {
  scroll-behavior: smooth;
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

}

/* =========================================================
   B2B VISUAL REFRESH — TYPOGRAPHY
   Only typography is overridden here.
========================================================= */
body,
button,
input,
textarea,
select {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
}

strong, b {
  font-weight: 700;
}

/* =========================================================
   CETIS — IDENTIDADE VISUAL GLOBAL
   Fundo claro / azul-marinho / azul-ciano
========================================================= */

:root {
  --bg: #f5f9fc;
  --bg2: #edf5f9;
  --bg3: #e7f1f6;

  --card: #ffffff;
  --card2: rgba(8, 127, 189, 0.035);

  --line: rgba(24, 58, 92, 0.10);
  --line-blue: rgba(8, 127, 189, 0.28);

  --text: #183a5c;
  --muted: #647b8f;

  --blue: #087fbd;
  --blue2: #0088cc;
  --blue3: #066da4;

  --silver: #6f8395;
  --white: #ffffff;

  --gradient-blue: linear-gradient(
    135deg,
    #0088cc 0%,
    #087fbd 55%,
    #066da4 100%
  );

  --gradient-dark: linear-gradient(
    145deg,
    #ffffff 0%,
    #f3f8fb 55%,
    #e8f2f7 100%
  );

  --shadow: 0 25px 70px rgba(24, 58, 92, 0.12);
  --shadow-blue: 0 20px 60px rgba(8, 127, 189, 0.16);
}


/* =========================================================
   BASE
========================================================= */

html,
body {
  background: #f5f9fc;
  color: #183a5c;
}

body {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(0, 136, 204, 0.055),
      transparent 32rem
    ),
    radial-gradient(
      circle at 0% 45%,
      rgba(8, 127, 189, 0.035),
      transparent 30rem
    ),
    #f5f9fc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #183a5c;
}

p,
.lead,
.muted {
  color: #647b8f;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn-primary {
  background: linear-gradient(
    135deg,
    #0088cc 0%,
    #087fbd 55%,
    #066da4 100%
  );

  color: #ffffff;
  border-color: #087fbd;

  box-shadow:
    0 10px 30px rgba(8, 127, 189, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    #0097df 0%,
    #087fbd 55%,
    #066da4 100%
  );

  color: #ffffff;

  box-shadow:
    0 16px 40px rgba(8, 127, 189, 0.24);
}

.btn-ghost {
  background: #ffffff;
  color: #183a5c;
  border-color: rgba(24, 58, 92, 0.14);
}

.btn-ghost:hover {
  background: #eef8fc;
  border-color: rgba(8, 127, 189, 0.35);
  color: #087fbd;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(0, 136, 204, 0.10),
      transparent 38%
    ),
    linear-gradient(
      110deg,
      #f7fbfd 0%,
      #f3f8fb 48%,
      #eaf5fa 100%
    );
}

.hero::before {
  background:
    radial-gradient(
      circle,
      rgba(0, 136, 204, 0.10) 10%,
      rgba(8, 127, 189, 0.045) 35%,
      transparent 70%
    );
}

.hero::after {
  background: rgba(8, 127, 189, 0.055);
}

.hero-image {
  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 35px 90px rgba(24, 58, 92, 0.14),
    0 0 70px rgba(8, 127, 189, 0.08);
}

.hero-image:hover {
  box-shadow:
    0 45px 100px rgba(24, 58, 92, 0.17),
    0 0 85px rgba(8, 127, 189, 0.12);
}

.eyebrow {
  color: #087fbd;
  background: rgba(8, 127, 189, 0.06);
  border-color: rgba(8, 127, 189, 0.22);

  box-shadow:
    0 0 25px rgba(8, 127, 189, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

h1 span {
  background: linear-gradient(
    135deg,
    #0088cc 0%,
    #087fbd 55%,
    #066da4 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
}


/* =========================================================
   VISUAL / MOCK
========================================================= */

.visual {
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(0, 136, 204, 0.09),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #eef6fa
    );

  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 30px 80px rgba(24, 58, 92, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.visual::before {
  background: rgba(0, 136, 204, 0.09);
}

.visual::after {
  background: rgba(8, 127, 189, 0.05);
}

.mock {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f0f7fa
    );

  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 30px 70px rgba(24, 58, 92, 0.14),
    0 0 50px rgba(8, 127, 189, 0.05);
}

.mock-top {
  color: #647b8f;
}

.balance {
  color: #183a5c;
}

.bar {
  background:
    linear-gradient(
      to top,
      #066da4,
      #0088cc
    );

  box-shadow:
    0 0 18px rgba(8, 127, 189, 0.12);
}


/* =========================================================
   CARDS
========================================================= */

.card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7fbfd
    );

  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 15px 45px rgba(24, 58, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card:hover {
  border-color: rgba(8, 127, 189, 0.28);

  box-shadow:
    0 25px 60px rgba(24, 58, 92, 0.12),
    0 0 35px rgba(8, 127, 189, 0.06);
}

.icon {
  background:
    linear-gradient(
      145deg,
      rgba(0, 136, 204, 0.10),
      rgba(8, 127, 189, 0.04)
    );

  border-color: rgba(8, 127, 189, 0.18);
  color: #087fbd;

  box-shadow:
    0 8px 25px rgba(8, 127, 189, 0.06);
}

.number {
  color: #087fbd;
}

.card h3 {
  color: #183a5c;
}

.card p {
  color: #647b8f;
}


/* =========================================================
   SPLIT / PAINÉIS
========================================================= */

.panel {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f5fafc
    );

  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 20px 60px rgba(24, 58, 92, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.check {
  color: #526d82;
}

.check b {
  color: #087fbd;
}

.stat {
  background: #f7fbfd;
  border-color: rgba(24, 58, 92, 0.09);
}

.stat strong {
  color: #087fbd;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 136, 204, 0.13),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      #eaf6fb,
      #f7fbfd
    );

  border-color: rgba(8, 127, 189, 0.18);

  box-shadow:
    0 30px 80px rgba(24, 58, 92, 0.10),
    0 0 60px rgba(8, 127, 189, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cta h2 {
  color: #183a5c;
}

.cta p {
  color: #647b8f;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0, 136, 204, 0.08),
      transparent 30rem
    );

  border-bottom-color: rgba(24, 58, 92, 0.10);
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.field label {
  color: #365873;
}

.field input,
.field select,
.field textarea {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7fbfd
    );

  border-color: rgba(24, 58, 92, 0.13);

  color: #183a5c;

  box-shadow:
    inset 0 1px 2px rgba(24, 58, 92, 0.025);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(24, 58, 92, 0.40);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(8, 127, 189, 0.28);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(8, 127, 189, 0.60);

  background: #ffffff;

  box-shadow:
    0 0 0 4px rgba(8, 127, 189, 0.08),
    0 10px 30px rgba(24, 58, 92, 0.08);
}

.field select {
  background-color: #ffffff;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #087fbd 50%
    ),
    linear-gradient(
      135deg,
      #087fbd 50%,
      transparent 50%
    );
}

.field select option {
  background: #ffffff;
  color: #183a5c;
}

.form-status {
  color: #647b8f;
}


/* =========================================================
   SOLUÇÕES
========================================================= */

.solutions {
  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(0, 136, 204, 0.07),
      transparent 32%
    ),
    #f5f9fc;
}

.solutions-head h2 {
  color: #183a5c;
}

.solutions-head h2 span {
  color: #087fbd;
}

.solutions-head .lead {
  color: #647b8f;
}

.solution-card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f5fafc
    );

  border-color: rgba(24, 58, 92, 0.10);

  box-shadow:
    0 20px 50px rgba(24, 58, 92, 0.08);
}

.solution-card:hover {
  border-color: rgba(8, 127, 189, 0.30);

  box-shadow:
    0 30px 65px rgba(24, 58, 92, 0.12),
    0 0 35px rgba(8, 127, 189, 0.06);
}

.solution-card::before {
  background:
    radial-gradient(
      circle,
      rgba(0, 136, 204, 0.10),
      transparent 70%
    );
}

.solution-icon {
  background:
    linear-gradient(
      145deg,
      rgba(0, 136, 204, 0.10),
      rgba(8, 127, 189, 0.04)
    );

  border-color: rgba(8, 127, 189, 0.18);
  color: #087fbd;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 25px rgba(8, 127, 189, 0.06);
}

.solution-card:hover .solution-icon {
  background: rgba(8, 127, 189, 0.10);

  box-shadow:
    0 12px 30px rgba(8, 127, 189, 0.10);
}

.solution-number {
  color: #087fbd;
}

.solution-card h3 {
  color: #183a5c;
}

.solution-card p {
  color: #647b8f;
}

.solution-link {
  color: #365873;
}

.solution-link:hover {
  color: #087fbd;
}


/* =========================================================
   SOLUÇÃO SOB MEDIDA
========================================================= */

.solution-card-cta {
  background:
    linear-gradient(
      145deg,
      #eaf6fb,
      #f7fbfd
    );

  border-color: rgba(8, 127, 189, 0.18);
}

.solution-card-cta::after {
  background:
    radial-gradient(
      circle,
      rgba(0, 136, 204, 0.12),
      transparent 68%
    );
}

.solution-card-cta .solution-icon {
  background: rgba(8, 127, 189, 0.08);
  border-color: rgba(8, 127, 189, 0.20);

  box-shadow:
    0 0 30px rgba(8, 127, 189, 0.06);
}

.solution-card-cta .solution-number {
  color: #087fbd;
}

.solution-card-cta h3 {
  color: #183a5c;
}

.solution-card-cta:hover {
  border-color: rgba(8, 127, 189, 0.35);

  box-shadow:
    0 30px 70px rgba(24, 58, 92, 0.12),
    0 0 45px rgba(8, 127, 189, 0.08);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0, 136, 204, 0.07),
      transparent 25rem
    ),
    #eaf3f7;

  border-top-color: rgba(24, 58, 92, 0.10);
}

.footer h4 {
  color: #183a5c;
}

.footer a,
.footer p {
  color: #647b8f;
}

.footer a:hover {
  color: #087fbd;
}

.copyright {
  border-top-color: rgba(24, 58, 92, 0.10);
  color: #71879a;
}


/* =========================================================
   COMPATIBILIDADE — REGRAS ANTIGAS ROXAS/ESCURAS
========================================================= */

body,
body * {
  --blue: #087fbd;
  --blue2: #0088cc;
  --blue3: #066da4;
}


/* =========================================================
   HEADER CETIS — GARANTE FUNDO CLARO
========================================================= */

.header {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: rgba(24, 58, 92, 0.10) !important;

  box-shadow:
    0 6px 24px rgba(24, 58, 92, 0.08) !important;
}

.nav-links,
.nav-links a {
  color: #183a5c;
}

.nav-links a:hover {
  color: #087fbd;
}

.menu-btn {
  background: #ffffff;
  color: #183a5c;
  border-color: rgba(24, 58, 92, 0.14);
}

.menu-btn:hover {
  background: #eef8fc;
  color: #087fbd;
  border-color: rgba(8, 127, 189, 0.30);
}


/* =========================================================
   MOBILE — FUNDO CLARO
========================================================= */

@media (max-width: 900px) {

  .nav-links {
    background: #ffffff !important;
    border-bottom-color: rgba(24, 58, 92, 0.10);

    box-shadow:
      0 18px 35px rgba(24, 58, 92, 0.12);
  }

  .nav-links a {
    color: #183a5c;
    border-bottom-color: rgba(24, 58, 92, 0.07);
  }

  .nav-links a:hover {
    color: #087fbd;
    background: rgba(8, 127, 189, 0.04);
  }
}
/* =========================================================
   CETIS — SOLUÇÕES / WIDGETS
========================================================= */

.solutions {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(0, 136, 204, 0.07),
      transparent 32rem
    ),
    #f5f9fc;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.solutions-head {
  max-width: 820px;
  margin: 0 0 55px;
}

.solutions-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

.solutions-head h2 {
  margin: 0 0 20px;

  color: #183a5c;

  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.solutions-head h2 span {
  color: #087fbd;
}

.solutions-head .lead {
  max-width: 720px;
  margin: 0;

  color: #647b8f;

  font-size: 1rem;
  line-height: 1.75;
}


/* =========================================================
   LISTA
========================================================= */

.solutions-list {
  display: flex;
  flex-direction: column;

  width: 100%;

  gap: 14px;
}


/* =========================================================
   WIDGET
========================================================= */

.solution-widget {
  position: relative;

  display: grid;

  grid-template-columns:
    60px
    90px
    minmax(0, 1fr)
    60px;

  align-items: center;

  width: 100%;
  min-height: 150px;

  padding: 26px 32px;

  box-sizing: border-box;

  background:
    linear-gradient(
      110deg,
      #ffffff 0%,
      #f8fbfd 100%
    );

  border: 1px solid rgba(24, 58, 92, 0.10);

  border-radius: 20px;

  text-decoration: none;

  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(24, 58, 92, 0.06);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   LINHA LATERAL
========================================================= */

.solution-widget::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 4px;

  background:
    linear-gradient(
      180deg,
      #0088cc,
      #087fbd
    );

  transform: scaleY(0);

  transform-origin: center;

  transition:
    transform 0.3s ease;
}


/* =========================================================
   BRILHO
========================================================= */

.solution-widget::after {
  content: "";

  position: absolute;

  right: -120px;
  top: -150px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 136, 204, 0.10),
      transparent 68%
    );

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.solution-widget:hover {
  transform: translateX(8px);

  border-color:
    rgba(8, 127, 189, 0.25);

  box-shadow:
    0 22px 50px rgba(24, 58, 92, 0.11),
    0 0 35px rgba(8, 127, 189, 0.05);
}

.solution-widget:hover::before {
  transform: scaleY(1);
}

.solution-widget:hover::after {
  opacity: 1;
}


/* =========================================================
   NÚMERO
========================================================= */

.solution-widget-number {
  position: relative;
  z-index: 2;

  color: #91a4b3;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  transition:
    color 0.25s ease;
}

.solution-widget:hover .solution-widget-number {
  color: #087fbd;
}


/* =========================================================
   ÍCONE GRANDE
========================================================= */

.solution-widget-icon {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  background:
    linear-gradient(
      145deg,
      #eef8fc,
      #e1f2f8
    );

  border: 1px solid rgba(8, 127, 189, 0.15);

  border-radius: 18px;

  color: #087fbd;

  box-shadow:
    0 10px 25px rgba(8, 127, 189, 0.07);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.solution-widget-icon svg {
  width: 42px;
  height: 42px;
}

.solution-widget:hover .solution-widget-icon {
  transform:
    scale(1.08)
    rotate(-3deg);

  background:
    linear-gradient(
      145deg,
      #e3f6fb,
      #d5edf6
    );

  box-shadow:
    0 15px 32px rgba(8, 127, 189, 0.13);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.solution-widget-content {
  position: relative;
  z-index: 2;

  min-width: 0;

  padding: 0 28px;
}


.solution-widget-label {
  display: block;

  margin-bottom: 5px;

  color: #087fbd;

  font-size: 0.62rem;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.solution-widget h3 {
  margin: 0 0 8px;

  color: #183a5c;

  font-size: 1.32rem;
  line-height: 1.25;

  letter-spacing: -0.02em;

  transition:
    color 0.25s ease;
}


.solution-widget:hover h3 {
  color: #087fbd;
}


.solution-widget p {
  max-width: 760px;

  margin: 0;

  color: #647b8f;

  font-size: 0.92rem;

  line-height: 1.65;
}


/* =========================================================
   SETA
========================================================= */

.solution-widget-arrow {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  margin-left: auto;

  color: #087fbd;

  border: 1px solid rgba(24, 58, 92, 0.12);

  border-radius: 50%;

  font-size: 1.2rem;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}


.solution-widget:hover .solution-widget-arrow {
  transform: translateX(5px);

  background: #087fbd;

  border-color: #087fbd;

  color: #ffffff;
}


/* =========================================================
   WIDGET ESPECIAL
========================================================= */

.solution-widget-featured {
  background:
    linear-gradient(
      105deg,
      #e8f6fb 0%,
      #f8fcfe 55%,
      #e1f1f7 100%
    );

  border-color:
    rgba(8, 127, 189, 0.18);
}


.solution-widget-featured .solution-widget-icon {
  background:
    linear-gradient(
      145deg,
      #dff4fa,
      #cdeaf4
    );

  border-color:
    rgba(8, 127, 189, 0.22);
}


.solution-widget-featured .solution-widget-number {
  color: #087fbd;
}


.solution-widget-featured::after {
  opacity: 1;
}


.solution-widget-featured:hover {
  border-color:
    rgba(8, 127, 189, 0.32);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .solutions {
    padding: 80px 0;
  }

  .solution-widget {
    grid-template-columns:
      50px
      78px
      minmax(0, 1fr)
      52px;

    min-height: 135px;

    padding: 22px 24px;
  }

  .solution-widget-icon {
    width: 64px;
    height: 64px;
  }

  .solution-widget-icon svg {
    width: 38px;
    height: 38px;
  }

  .solution-widget-content {
    padding: 0 20px;
  }

  .solution-widget h3 {
    font-size: 1.18rem;
  }

  .solution-widget p {
    font-size: 0.87rem;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .solutions {
    padding: 70px 0;
  }

  .solutions-head {
    margin-bottom: 38px;
  }

  .solutions-list {
    gap: 12px;
  }

  .solution-widget {
    display: grid;

    grid-template-columns:
      48px
      1fr
      42px;

    min-height: auto;

    padding: 20px;

    border-radius: 17px;
  }

  .solution-widget-number {
    align-self: start;

    padding-top: 4px;
  }

  .solution-widget-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 16px;
  }

  .solution-widget-icon svg {
    width: 36px;
    height: 36px;
  }

  .solution-widget-content {
    grid-column: 1 / -1;

    padding: 0;

    margin-top: 2px;
  }

  .solution-widget-arrow {
    width: 38px;
    height: 38px;

    margin-left: auto;
  }

  .solution-widget h3 {
    font-size: 1.16rem;
  }

  .solution-widget p {
    font-size: 0.87rem;
    line-height: 1.6;
  }

  .solution-widget:hover {
    transform: translateY(-3px);
  }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 400px) {

  .solution-widget {
    padding: 18px;
  }

  .solution-widget-icon {
    width: 56px;
    height: 56px;
  }

  .solution-widget-icon svg {
    width: 33px;
    height: 33px;
  }

  .solution-widget h3 {
    font-size: 1.08rem;
  }

  .solution-widget p {
    font-size: 0.83rem;
  }

}

