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

html, body {
  width: 100%;
  min-height: 100%;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 460px;
  overflow: hidden;

  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #05070c);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background:
    linear-gradient(
      to right,
      rgba(8,10,18,0.95) 0%,
      rgba(8,10,18,0.8) 35%,
      rgba(8,10,18,0.45) 60%,
      rgba(8,10,18,0) 85%
    ),
    url("assets/teste3.jpg") center center no-repeat;
  background-size: cover;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  width: 100%;
  transform: translateY(-20px);
}

.welcome {
  font-size: 12px;
  letter-spacing: 4px;
  color: #3B82F6;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 45px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.hero h1 .highlight {
  display: block;
  margin-top: 10px;
  color: #2563EB;
  font-size: 45px;
}

.hero p {
  margin-top: 16px;
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  max-width: 520px;
}

.hero button {
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

/* ================= MOTIVOS ================= */
.motivos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  color: white;
  background: #000;
}

.motivo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 16px;
  max-width: 220px;
  background-image: linear-gradient(to top,#2564eb, #000);
  border-radius: 10px;
}

.motivo img {
  width: 320px;
  height: auto;
  margin-bottom: 12px;
}

.descricao {
  font-size: 20px;
}

/* ================= SOBRE ================= */
.sobre-section {
  position: relative;
  min-height: 160vh;
  padding: 140px 0;
  background-image: url("/assets/teste02.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 15%;
  overflow: hidden;
}

.sobre-container {
  max-width: 760px;
  margin-left: auto;
  margin-right: 8%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sobre-nos {
  color: #2564eb;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.pt1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
}

.pt2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #2564eb;
}

/* ================= AVALIAÇÕES ================= */
.avaliacoes {
  padding: 160px 0;
}

.avaliacoes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  text-align: center;
}

.avaliacoes-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #2564eb;
}

.avaliacoes-titulo {
  margin: 16px 0 60px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.avaliacao-card {
  background: linear-gradient(to top, rgba(122,60,255,0.15), rgba(0,0,0,0.65));
  border-radius: 16px;
  padding: 28px;
  color: #fff;
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding-top: 120px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-bottom {
  margin-top: 80px;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: unset;
    padding: 80px 16px;
  }

  .hero h1,
  .hero h1 .highlight {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .motivos {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }

  .motivo img {
    width: 100%;
    max-width: 240px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-container {
    margin-right: 0;
    padding: 0 16px;
  }
}
