/* =======================
   RESET & VARIÁVEIS
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #020617;
  --bg-card: #0f172a;
  --neon: #38bdf8;
  --text-light: #e5e7eb;
  --text-muted: #9ca3af;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* =======================
   HEADER
======================= */
.header {
  padding: 20px 40px;
  border-bottom: 1px solid #1e293b;
  background: rgba(2,6,23,0.9);
}

.header-left {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 42px;
  filter: drop-shadow(0 0 10px rgba(56,189,248,0.6));
}

.menu a {
  margin-right: 20px;
  text-decoration: none;
  color: var(--text-light);
}

.menu a:hover {
  color: var(--neon);
}

/* =======================
   HERO
======================= */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.hero-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-texto h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  color: var(--neon);
  margin-bottom: 20px;
}

.hero-texto p {
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-img img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(56,189,248,0.35));
}

/* =======================
   TÍTULOS
======================= */
.section-title {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: var(--neon);
  position: relative;
  z-index: 5;
  margin-bottom: 80px;
}

/* =======================
   SERVIÇOS
======================= */
.servicos {
  padding: 80px 40px;
}

.small-cards {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(56,189,248,0.35);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(56,189,248,0.35);
}

.card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  max-width: 100%;
  max-height: 100%;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =======================
   MINI HEADER
======================= */
.mini-header-unificado {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.info-unico {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  text-align: center;
}

.icon {
  width: 70px;
  height: 70px;
}

.info-unico h4 {
  color: var(--neon);
  font-size: 15px;
}

.info-unico p {
  font-size: 13px;
}

/* =======================
   DEPOIMENTOS — ROLETA INFINITA
======================= */
.depoimentos {
  padding: 140px 40px 120px;
  position: relative;
  overflow: visible;
}

/* =======================
   CARROSSEL
======================= */
.carousel-infinite {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 140px;
  user-select: none;
}

.carousel-infinite::before,
.carousel-infinite::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.carousel-infinite::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.carousel-infinite::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.carousel-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

/* =======================
   FEEDBACK CARD
======================= */
.feedback {
  min-width: 260px;
  height: 150px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid rgba(56,189,248,0.25);

  display: flex;
  flex-direction: column;

  position: relative;
  flex-shrink: 0;

  opacity: 0.25;
  filter: blur(3px);
  transform: scale(0.88);

  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
}

/* =======================
   HEADER DO FEEDBACK
======================= */
.feedback-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.feedback-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--neon);
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

.feedback-header span {
  height: 56px;
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--neon);
  font-weight: 600;
  font-size: 15px;
}

/* =======================
   TEXTO
======================= */
.feedback p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;

  flex-grow: 1;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* =======================
   GLOW
======================= */
.feedback::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: 85%;
  height: 36px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(56,189,248,0.55),
    transparent 70%
  );
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feedback.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.12);
  z-index: 4;
  box-shadow: 0 0 50px rgba(56,189,248,0.45);
}

.feedback.active::after {
  opacity: 1;
}

/* =======================
   CONTATO
======================= */
.contato {
  padding: 80px 40px;
  text-align: center;
}

.botoes {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.whatsapp {
  background: linear-gradient(45deg,#25d366,#16a34a);
}

.instagram {
  background: linear-gradient(45deg,#e1306c,#f77737);
}

/* =======================
   FOOTER
======================= */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid #1e293b;
}

/* =======================
   RESPONSIVO
======================= */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-left {
    flex-direction: column;
    gap: 15px;
  }

  .feedback {
    min-width: 230px;
    height: 230px;
  }

  .carousel-infinite {
    padding: 60px 0 120px;
  }
}



/* =======================
   SCROLL REVEAL
======================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* VARIAÇÕES OPCIONAIS */

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.show.reveal-left,
.reveal.show.reveal-right {
  transform: translateX(0);
}