/* ============================= */
/* HERO - SERVIÇOS */
/* ============================= */

.page-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 interno */

.page-hero .hero-inner {
  max-width: 900px;
}

/* Tag superior */

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

/* Título */

.page-hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 25px 0;
  letter-spacing: 0;
}

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

/* Subtexto */

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

/* Linha gráfica */

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

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

.services-section {
  background: #0b1220;
  padding: 120px 0 200px;
  display: flex;
  justify-content: center;
}

.services-section .container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

/* ============================= */
/* LAYOUT ALTERNADO */
/* ============================= */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 200px;
}

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

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

/* ============================= */
/* TEXTO */
/* ============================= */

.service-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: white;
  letter-spacing: 0;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.service-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================= */
/* FEATURES */
/* ============================= */

.service-results {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.service-results>div {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.service-results>div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
}

.service-results h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.service-results p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================= */
/* IMAGEM */
/* ============================= */

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

.service-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 8px;
  box-shadow:
    0 80px 160px rgba(0, 0, 0, 0.6),
    0 30px 60px rgba(0, 0, 0, 0.4);
  transition: 0.5s ease;
}

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

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

.services-cta {
  background: #0f172a;
  padding: 180px 20px;
  text-align: center;
  color: white;
}

.services-cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

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

@media (max-width: 1100px) {

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

  .service-image {
    order: -1;
  }

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

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

@media (max-width: 600px) {

  .page-hero-content h1 {
    font-size: 2.4rem;
  }

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

  .service-text p {
    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;
  }
}

.services-section,
.services-cta,
.page-hero {
  border: none !important;
  box-shadow: none !important;
}

body {
  background: #0b1220;
}

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

@media (max-width: 900px) {

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

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

  .services-section {
    padding: 100px 20px;
  }

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

  .service-image img {
    max-width: 100%;
  }
}
