/* ============================= */
/* HERO - SOLUÇÕES */
/* ============================= */

.solutions-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 10%;
  color: white;
  overflow: hidden;

  background: linear-gradient(to bottom,
      #0b1220 0%,
      #0f172a 60%,
      #0b1220 100%);
}

/* Container */

.solutions-hero .hero-inner {
  max-width: 950px;
}

/* Tag */

.solutions-hero .hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 700;
}

/* Título maior e mais impactante */

.solutions-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 25px 0;
  letter-spacing: 0;
}

.solutions-hero h1 span {
  color: #3b82f6;
}

/* Subtexto */

.solutions-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.75);
}

/* Linha tech */

.solutions-hero .hero-line {
  margin-top: 45px;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, transparent);
}

/* ============================= */
/* LISTA DE SOLUÇÕES */
/* ============================= */

.solutions-list {
  background: #0b1220;
  padding: 120px 0 200px;
}

/* Cada produto */

.solution-row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 120px;
}

/* Alternado */

.solution-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

/* Texto */

.solution-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 700;
}

.solution-text h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 20px 0 30px;
  color: white;
  letter-spacing: 0;
}

.solution-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Features minimalistas */

.solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.solution-features li {
  margin-bottom: 18px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 28px;
}

.solution-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
}

/* Botão estilo SaaS premium */

.btn-solution {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 8px;
  background: linear-gradient(135deg,
      #3b82f6,
      #2563eb);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.35);
}

.btn-solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(59, 130, 246, 0.45);
}

/* ============================= */
/* IMAGEM - FLUTUANDO */
/* ============================= */

.solution-image {
  display: flex;
  justify-content: center;
}

.solution-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 8px;

  box-shadow:
    0 80px 160px rgba(0, 0, 0, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.4);

  transition: 0.6s ease;
}

.solution-image img:hover {
  transform: scale(1.04);
}

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

.solutions-cta {
  background: linear-gradient(180deg,
      #0b1220 0%,
      #0c1424 28%,
      #0f172a 58%,
      #111b31 100%);
  padding: 180px 20px;
  text-align: center;
  color: white;
}

.solutions-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 1100px) {

  .solution-row,
  .solution-row.reverse {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .solution-image {
    order: -1;
  }

  .solution-text h2 {
    font-size: 2.4rem;
  }

  .solution-intro {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {

  .solutions-hero h1 {
    font-size: 2.3rem;
  }

  .solution-text h2 {
    font-size: 2rem;
  }

  .solution-intro {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {

  .page-hero,
  .solutions-hero {
    padding: 140px 8%;
  }

  .page-hero h1,
  .solutions-hero h1 {
    font-size: 2.6rem;
  }

  .page-hero p,
  .solutions-hero p {
    font-size: 1.05rem;
  }
}

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

@media (max-width: 900px) {

  .solutions-hero {
    padding: 140px 20px 100px;
    min-height: auto;
  }

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

  .solution-text h2 {
    font-size: 1.8rem;
  }

  .solutions-list {
    padding: 100px 20px;
  }

  .solution-row {
    gap: 60px;
  }
}
