:root {
  --verde: #2bffb3;
  --cinza: #aab4c8;
  --branco: #fff;
  --bg1: #05070c;
  --bg2: #08162f;
  --bg3: #0b1d3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif
}

body {
  background: linear-gradient(180deg,
      #05070c 0%,
      #07152f 35%,
      #0b1d3a 65%,
      #05070c 100%);
  color: var(--branco);
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px
}

/* ===== SISTEMA GLOBAL DE SEÇÕES ===== */
section {
  position: relative;
  padding: 160px 0;
  background: transparent;
}

/* Fade superior */
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom,
      rgba(5, 7, 12, 1),
      rgba(5, 7, 12, 0));
  pointer-events: none;
}

/* Fade inferior */
section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to top,
      rgba(5, 7, 12, 1),
      rgba(5, 7, 12, 0));
  pointer-events: none;
}

/* Conteúdo sempre acima */
section>.container {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1
}

h2 {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center
}

h3 {
  font-size: 1.5rem;
  font-weight: 700
}

p {
  color: var(--cinza);
  line-height: 1.7
}

.center {
  text-align: center;
  max-width: 900px;
  margin: 25px auto 80px
}

.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 20px 44px;
  background: linear-gradient(90deg, var(--verde), #00e6a8);
  color: #000;
  font-weight: 800;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(43, 255, 179, .4);
  transition: .3s
}

.btn:hover {
  transform: scale(1.05)
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px
}

.card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center
}

.hero span {
  color: var(--verde)
}

/* SERVIÇOS */
.icon {
  font-size: 2rem;
  margin-bottom: 15px
}

/* PROVA SOCIAL */
.reviews {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center
}

.stars {
  color: #ffc107;
  font-size: 1.4rem;
  margin: 15px 0
}

.reviews-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto
}

.review {
  min-width: 300px;
  background: #0c1324;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

/* FAQ */
/* ===== FAQ ===== */
.faq-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #000000, #0b1d3a);
}

.faq-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 80px;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 26px 30px;
  margin-bottom: 24px;
  transition: 0.3s;
}

.faq details[open] {
  background: rgba(255, 255, 255, 0.09);
}

.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.6rem;
  transition: 0.3s;
}

.faq details[open] summary::after {
  content: "–";
}

.faq-content {
  margin-top: 20px;
}

.faq-content p {
  color: #aab4c8;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
  }

  .faq details {
    padding: 22px;
  }
}


/* ===== SOBRE MIM ===== */
.sobre-mim {
  background: linear-gradient(135deg, #000000, #0b1d3a);
  padding: 10px 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.sobre-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  padding: 20px;
}

.breadcrumb {
  display: block;
  color: #aab4c8;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.sobre-texto h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.sobre-texto h2 span {
  color: #00e6a8;
}

.sobre-texto p {
  color: #aab4c8;
  font-size: 1.05rem;
  line-height: 1.8;
  
}

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-img img {
    margin: 0 auto;
  }
}

/* ===== AVALIAÇÕES ===== */
.avaliacoes {
  background: linear-gradient(135deg, #000000, #0b1d3a);
  padding: 120px 0;
}

.avaliacoes-header {
  text-align: center;
  margin-bottom: 80px;
}

.avaliacoes-header h2 {
  font-size: 3rem;
  font-weight: 800;
}

.avaliacoes-header span {
  color: #00e6a8;
  border-bottom: 3px solid #00e6a8;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.avaliacoes-resumo h3 {
  font-size: 1.8rem;
  font-weight: 800;
}

.google-logo {
  width: 90px;
  margin-top: 15px;
}

.stars {
  color: #ffc107;
  font-size: 1.4rem;
  margin: 15px 0;
}

/* ÁREA DO SLIDER */
.avaliacoes-slider-area {
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.avaliacoes-slider {
  display: flex;
  gap: 25px;
  transition: .3s;
}

/* CARD */
.avaliacao-card {
  min-width: 320px;
  background: #0c1324;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* TOPO DO CARD */
.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  background: #6c5ce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.card-top small {
  color: #aab4c8;
}

.google-icon {
  margin-left: auto;
  width: 20px;
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: #00e6a8;
  color: #000;
}

@media(max-width:900px) {
  .avaliacoes-grid {
    grid-template-columns: 1fr;
  }
}

.avaliacoes-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.avaliacoes-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.avaliacoes-slider::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

/* ===== AVALIAÇÕES – AJUSTE FINAL ===== */

.avaliacoes-slider-wrapper {
  position: relative;
  max-width: 740px;
  /* 2 cards visíveis */
  overflow: hidden;
}

.avaliacoes-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.avaliacoes-slider::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

.avaliacao-card {
  min-width: 350px;
  background: #0c1324;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* SETAS – FORA DOS CARDS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  z-index: 10;
}

.arrow.left {
  left: -70px;
}

.arrow.right {
  right: -70px;
}

.arrow:hover {
  background: #00e6a8;
  color: #000;
}

/* MOBILE */
@media (max-width: 900px) {
  .avaliacoes-slider-wrapper {
    max-width: 350px;
    /* 1 card */
  }

  .arrow.left {
    left: -55px;
  }

  .arrow.right {
    right: -55px;
  }
}

/* ===== COMO FUNCIONA – GRID AJUSTADO ===== */

.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 cards lado a lado */
  gap: 24px;
}

.processo-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.processo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.processo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aab4c8;
}

.processo-title {
  margin-bottom: 40px;
  margin-top: -50px;
}

/* Número da etapa */
.step {
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .processo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .processo-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TIPOS DE SITE ===== */


.tipos-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 80px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tipo-card {
  border-radius: 24px;
  padding: 42px 32px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tipo-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.tipo-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e6f1;
  margin-bottom: 32px;
}

/* CORES (HARMONIA COM AZUL) */
.institucional {
  background: linear-gradient(135deg, #0f3c88, #0b2b5e);
}

.landing {
  background: linear-gradient(135deg, #1f6fb2, #164f86);
}

.loja {
  background: linear-gradient(135deg, #163e6d, #0e2a4f);
}

/* BOTÃO */
.btn-card {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: #ffffff;
  color: #07152f;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-card:hover {
  transform: translateY(-3px);
  background: #2bffb3;
  color: #000;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .tipos-grid {
    grid-template-columns: 1fr;
  }

  .tipos-title {
    font-size: 2.2rem;
  }
}

/* ===== SOLUÇÃO ===== */


.solucao-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 80px;
}

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solucao-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.solucao-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.solucao-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aab4c8;
}

/* ÍCONE */
.solucao-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bffb3, #00e6a8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #000;
  font-size: 1.3rem;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .solucao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solucao-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SEÇÃO PROBLEMA ===== */

/* Degradê superior */
.problema-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #05070c, transparent);
}

/* Degradê inferior */
.problema-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, #05070c, transparent);
}

.problema-title {
  text-align: center;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.problema-title span {
  color: #2bffb3;
}

.problema-texto {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #aab4c8;
}

/* MOBILE */
@media (max-width: 768px) {
  .problema-title {
    font-size: 2.2rem;
  }

  .problema-texto {
    font-size: 1.05rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: -150px;
}

.hero-text span {
  color: var(--verde);
}

.hero-text h1 {
  margin-top: -50px;
}

/* IMAGEM HERO */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}

/* ANIMAÇÃO FLUTUANDO */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    margin-top: 60px;
  }
}

/* ===== HERO IMAGE – INTEGRAÇÃO PROFISSIONAL ===== */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* IMAGEM */
.hero-image img {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.55));
}

/* GLOW DESFOCADO ATRÁS */
.hero-image::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(43, 255, 179, 0.35),
      rgba(43, 255, 179, 0.05),
      transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

/* DEGRADÊ NA BASE DA IMAGEM */
.hero-image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom,
      rgba(5, 7, 12, 0),
      rgba(2, 7, 17, 0.85),
      #02070f);
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-image::before {
    width: 240px;
    height: 320px;
  }

  .hero-image::after {
    height: 120px;
  }
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 10px 0;
  background: transparent;
}

.cta-final h2 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}

.cta-final h2 span {
  color: var(--verde);
}

.cta-text {
  max-width: 720px;
  margin: 0 auto 45px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cinza);
}

.cta-btn {
  padding: 20px 56px;
  font-size: 1.05rem;
}

.cta-note {
  display: block;
  margin-top: 22px;
  font-size: 0.9rem;
  color: #9aa6c4;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-final h2 {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1.05rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #05070c, #07152f);
  padding: 100px 0 40px;
  color: #aab4c8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-list i {
  color: var(--verde);
}

/* REDES SOCIAIS */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--verde);
  color: #000;
}

/* BASE */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #8b96b3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-list li {
    justify-content: center;
  }
}

/* ===== SOBRE MIM – DEGRADÊ INVISÍVEL (FINAL) ===== */

.sobre-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* IMAGEM */
.sobre-img img {
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
}

/* FUNDO SUAVE (MESMO TOM EXATO DO SITE) */
.sobre-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.75),
      rgba(51, 108, 192, 0.95));
  filter: blur(90px);
  z-index: 0;
}

/* DEGRADÊ INFERIOR – SOMENTE ESCURECENDO */
.sobre-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom,
      rgba(4, 12, 26, 0),
      rgba(3, 11, 22, 0.6),
      rgba(2, 6, 12, 0.85),
      rgb(0, 4, 15));
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .sobre-img::after {
    height: 120px;
  }

  .sobre-img::before {
    filter: blur(70px);
  }
}

.preco {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preco-antigo {
  font-size: 0.95rem;
  color: #cfd6e6;
  text-decoration: line-through;
  opacity: 0.7;
}

.preco-atual {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2bffb3;
}

/* ===== AVALIAÇÕES ===== */

.avaliacoes-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

/* WRAPPER */
.avaliacoes-slider-wrapper {
  position: relative;
  max-width: 760px;
  /* mostra 2 cards */
  overflow: hidden;
}

/* SLIDER */
.avaliacoes-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* CARD */
.avaliacao-card {
  min-width: 360px;
  background: #0c1324;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: 10;
}

.arrow.left {
  left: -70px;
}

.arrow.right {
  right: -70px;
}

.arrow:hover {
  background: #2bffb3;
  color: #000;
}

/* MOBILE */
@media (max-width: 900px) {
  .avaliacoes-grid {
    grid-template-columns: 1fr;
  }

  .avaliacoes-slider-wrapper {
    max-width: 360px;
    /* 1 card */
  }

  .arrow.left {
    left: -55px;
  }

  .arrow.right {
    right: -55px;
  }
}

/* =========================
   RESPONSIVO – MOBILE
========================= */

@media (max-width: 900px) {

  section {
    padding: 90px 0;
  }

  h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2.1rem;
  }

  p {
    font-size: 1rem;
  }

  /* ===== HERO ===== */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero img,
  .hero .card {
    max-width: 280px;
    margin: 0 auto;
  }

  .btn {
    margin-top: 30px;
    padding: 16px 34px;
  }

  /* ===== PROBLEMA ===== */
  .problema-title {
    font-size: 2rem;
  }

  .problema-texto {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* ===== SOLUÇÃO ===== */
  .solucao-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solucao-card {
    padding: 28px 22px;
  }

  /* ===== TIPOS DE SITE ===== */
  .tipos-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .tipo-card {
    padding: 36px 26px;
  }

  /* ===== PROCESSO ===== */
  .processo-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .processo-card {
    padding: 30px 24px;
  }

  /* ===== SOBRE MIM ===== */
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .sobre-img img {
    max-width: 260px;
    margin: 0 auto;
  }

  .sobre-texto h2 {
    font-size: 2.1rem;
  }

  /* ===== AVALIAÇÕES ===== */
  .avaliacoes-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .avaliacoes-slider-area {
    max-width: 360px;
    margin: 0 auto;
  }

  .avaliacao-card {
    min-width: 320px;
  }

  .arrow.left {
    left: -45px;
  }

  .arrow.right {
    right: -45px;
  }

  /* ===== FAQ ===== */
  .faq-title {
    font-size: 2rem;
  }

  .faq details {
    padding: 22px;
  }

  /* ===== CTA FINAL ===== */
  .center {
    margin: 25px auto 40px;
  }
}

/* =========================
   MOBILE PEQUENO
========================= */

@media (max-width: 480px) {

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .arrow.left {
    left: -35px;
  }

  .arrow.right {
    right: -35px;
  }
}

/* HERO – ORDEM MOBILE */
@media (max-width: 900px) {

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  /* IMAGEM PRIMEIRO */
  .hero-grid .card {
    order: 1;
  }

  /* TEXTO DEPOIS */
  .hero-grid>div:first-child {
    order: 2;
  }

}

@media (max-width: 900px) {
  .hero-grid .card img {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ===== AVALIAÇÕES ===== */

.avaliacoes {
  background: linear-gradient(135deg, #05070c, #0b1d3a);
  padding: 140px 0;
}

.avaliacoes-header {
  text-align: center;
  margin-bottom: 80px;
}

.avaliacoes-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.avaliacoes-header span {
  color: #2bffb3;
  border-bottom: 3px solid #2bffb3;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

/* RESUMO */
.avaliacoes-resumo h3 {
  font-size: 1.8rem;
  font-weight: 800;
}

.google-logo {
  width: 90px;
  margin-top: 16px;
}

.stars {
  color: #ffc107;
  font-size: 1.4rem;
  margin: 14px 0;
}

/* LISTA */
.avaliacoes-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.avaliacao-card {
  background: #0c1324;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* TOPO */
.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6c5ce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.card-top small {
  color: #aab4c8;
}

.google-icon {
  margin-left: auto;
  width: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .avaliacoes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .avaliacoes-header h2 {
    font-size: 2.2rem;
  }
}

/* ===== CENTRALIZAR AVALIAÇÕES ===== */

/* Centraliza a coluna de avaliações */
.avaliacoes-lista {
  align-items: center;
}

/* Limita largura e centraliza cada card */
.avaliacao-card {
  width: 100%;
  max-width: 420px; /* largura elegante */
  margin: 0 auto;
}

@media (max-width: 900px) {
  .avaliacao-card {
    max-width: 360px;
  }
}

/* ===== AVALIAÇÕES – LAYOUT RESPONSIVO ===== */

/* MOBILE (padrão) */
.avaliacoes-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.avaliacao-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

/* DESKTOP */
@media (min-width: 901px) {
  .avaliacoes-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 lado a lado */
    gap: 32px;
    justify-items: center;
  }

  .avaliacao-card {
    max-width: 420px;
  }
}

/* ===== CENTRALIZAR RESUMO DAS AVALIAÇÕES ===== */

/* Ajusta o grid principal */
.avaliacoes-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centraliza o resumo */
.avaliacoes-resumo {
  text-align: center;
  margin: 10px 0 20px;
}

/* Estrelas centralizadas */
.avaliacoes-resumo .stars {
  justify-content: center;
}

/* Logo Google centralizado */
.avaliacoes-resumo .google-logo {
  margin: 16px auto 0;
  display: block;
}

/* Cards abaixo do resumo */
.avaliacoes-slider-wrapper {
  width: 100%;
}

/* Grid dos cards */
.avaliacoes-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .avaliacoes-slider {
    grid-template-columns: 1fr;
  }
}

/* ===== AVALIAÇÕES – CORREÇÃO MOBILE ===== */

@media (max-width: 900px) {

  /* Garante centralização geral */
  .avaliacoes {
    overflow-x: hidden;
  }

  .avaliacoes-grid {
    align-items: center;
  }

  /* Grid vira coluna */
  .avaliacoes-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Card centralizado de verdade */
  .avaliacao-card {
    width: 100%;
    max-width: 360px;
    min-width: unset;
    margin: 0 auto;
  }
}

.sobre-img {
    position: relative;
    display: inline-block;
}

.sobre-img img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .sobre-img img {
    max-width: 520px;   /* AUMENTA bem no mobile */
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sobre-img {
    margin-bottom: 0px;
    margin-top: -200px;
  }

  .sobre-img img {
    max-width: 520px;
    width: 100%;
  }
}


/* DEGRADÊ INFERIOR */
.sobre-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to top,
        #04070e 0%,
        rgba(5, 7, 12, 0.85) 35%,
        rgba(5, 7, 12, 0.4) 65%,
        transparent 100%
    );
    pointer-events: none;
}

.sobre-img::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(11, 29, 58, 0.55) 0%,
        rgba(11, 29, 58, 0.35) 35%,
        rgba(11, 29, 58, 0.15) 55%,
        transparent 70%
    );
    filter: blur(35px);
    z-index: -1;
}
 
 /* TIPOS DE SITE */
.tipos-site {
    padding: 80px 20px;
    background: #020b1c;
}

.tipos-center {
    text-align: center;
}

.tipos-title {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.tipos-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tipos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tipo-card {
    background: linear-gradient(180deg, #0b2a4a, #04182f);
    border-radius: 18px;
    padding: 35px 30px;
    max-width: 360px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.tipo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tipo-card p {
    font-size: 0.95rem;
    color: #d1d9e6;
    margin-bottom: 12px;
    line-height: 1.6;
}

.preco {
    margin: 25px 0;
}

.preco-antigo {
    display: block;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.preco-atual {
    font-size: 1.6rem;
    font-weight: 700;
    color: #22f3aa;
}

.btn-card {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #020b1c;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
