* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {background: #0b0b0f;
      color: #fff;
    }

/*header*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
    background: #0b0b0f;
}

.header .logo img {
    width: 150px;
    height: auto;
}

.nav {
    display: flex;
    flex-direction: row;
    gap: 32px;
    list-style: none;
}

.nav a {
 
    position: relative;
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #6a5cff, #00e5ff);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #ffffff;

}

.nav a:hover::after {
    width: 100%;
}

.btn-aura {
    background: linear-gradient(90deg, #6a5cff, #00e5ff);
    border: none;
    padding: 10px 20px;
    color: #000;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-aura:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 92, 255, 0.4);
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #11172b, #05070f);
  padding: 0 8%;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1, .solucoes-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f0ff, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p, .solucoes-hero p {
  font-size: 1.1rem;
  color: #cfd3ff;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff, #7b2cff);
  border: none;
  color: #fff;
  padding: 14px 26px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* VISUAL AURA */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aura-orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00f0ff, #7b2cff);
  position: relative;
  filter: blur(0.5px);
  animation: pulseAura 4s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(0,240,255,0.6),
    0 0 80px rgba(123,44,255,0.5);
}

.eye {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
}

.left-eye {
  left: 70px;
}

.right-eye {
  right: 70px;
}

@keyframes pulseAura {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}




/* SERVIÇOS */
.servicos {
  padding: 100px 8%;
  background: linear-gradient(180deg, #05070f, #0b1020);
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00f0ff, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
  transition: 0.4s ease;
  backdrop-filter: blur(6px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,240,255,0.2);
  border-color: rgba(0,240,255,0.4);
}

.card-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  font-size: 0.95rem;
  color: #cfd3ff;
  line-height: 1.4;
}


/*aura*/
.aura {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(180deg, #0b1020, #05070f);
  position: relative;
}
.aura p {
    margin-bottom: 30px;
}
.aura button.btn-aura {
    background: linear-gradient(90deg, #6a5cff, #00e5ff);
    border: none;
    padding: 12px 28px;
    color: #000;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.aura button.btn-aura:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 92, 255, 0.4);
}

/* CHAT AURA */
.aura-chat {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 340px;
  height: 460px;
  background: #0b0f1a;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: auraEnter 0.4s ease;
  z-index: 999;
}

.aura-chat.active {
  display: flex;
}

@keyframes auraEnter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aura-header {
  padding: 14px 18px;
  background: linear-gradient(90deg, #00f0ff, #7b2cff);
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aura-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  font-size: 14px;
  color: #fff;
}

.aura-msg {
  background: rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.aura-input {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.aura-input input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
}

.aura-input button {
  background: linear-gradient(135deg, #00f0ff, #7b2cff);
  border: none;
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
}



/*cta*/

.cta button {
    background: linear-gradient(90deg, #6a5cff, #00e5ff);
    border: none;
    padding: 12px 28px;
    color: #000;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;

}

/*footer*/
.footer {
    padding: 20px;
    text-align: center;
    color: #777;

}

/*aurawidget*/
.aura-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, #6a5cff, #00e5ff);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.aura-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 92, 255, 0.4);
}

.aura {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.aura.show {
  opacity: 1;
  transform: translateY(0);
}

.aura-status {
  font-size: 12px;
  color: #9aa0ff;
  padding: 6px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aura-status.active {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========== SOLUÇÕES GRID ========== */

.solucoes-grid {
  padding: 80px 0;
}

.solucoes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card base */
.solucao-card {
  position: relative;
  padding: 28px;
  background: #0b0f1a;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Borda gradiente */
.solucao-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    #00f0ff,
    #7b2cff,
    #00f0ff
  );
  background-size: 300% 300%;
  animation: gradientBorder 6s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Conteúdo */
.solucao-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.solucao-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* CTA do card */
.solucao-card span {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(90deg, #00f0ff, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover */
.solucao-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

/* Animação da borda */
@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* HERO IA */
.hero-ia {
    background: #0b0f1a;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Avatar da Aura */
.avatar-aura {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #00f0ff, #7b2cff);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    animation: auraPulse 2s infinite alternate;
}

.avatar-aura::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 25%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 40px 0 #fff; /* segundo olho */
}

@keyframes auraPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0,255,255,0.3); }
    100% { transform: scale(1.05); box-shadow: 0 0 35px rgba(0,255,255,0.6); }
}

/* Texto da Hero IA */
.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    max-width: 500px;
}

/* SEÇÃO: O que a Aura faz */
.aura-funcionalidades {
    padding: 80px 20px;
    background: #0f1320;
    color: #fff;
    text-align: center;
}

.aura-funcionalidades h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.card {
    background: linear-gradient(135deg, #00f0ff, #7b2cff);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,255,255,0.3);
}

.para-quem {
    text-align: center;
    padding: 60px 20px;
    background: #0b0f1a; /* mesma cor de fundo da página */
    color: #fff;
}

.para-quem h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #00f0ff; /* destaque com cor gradiente/azul */
}

.para-quem p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
}

.para-quem-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pq-card {
    background: linear-gradient(145deg, #0b0f1a, #121620);
    border: 2px solid #00f0ff;
    padding: 24px 30px;
    border-radius: 16px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00f0ff;
}

.como-funciona {
    text-align: center;
    padding: 60px 20px;
    background: #121620; /* fundo ligeiramente diferente */
    color: #fff;
}

.como-funciona h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #00f0ff;
}

.como-funciona p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
}

.fluxo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.fluxo-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    background: linear-gradient(145deg, #0b0f1a, #121620);
    border: 2px solid #00f0ff;
    padding: 20px 25px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fluxo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00f0ff;
}

.arrow {
    margin: 0 15px;
    font-size: 22px;
    color: #00f0ff;
}

.cta-ia {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #00f0ff, #7b2cff);
    color: #fff;
}

.cta-ia h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.cta-ia .btn-cta {
    padding: 16px 36px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    background: #0b0f1a;
    color: #00f0ff;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-ia .btn-cta:hover {
    background: #00f0ff;
    color: #0b0f1a;
    box-shadow: 0 0 20px #00f0ff;
}

/* HERO SOBRE NÓS */
.sobre-hero {
  display: flex;
  flex-direction: column; /* empilha os elementos verticalmente */
  justify-content: flex-start; /* em vez de center */
  padding-top: 80px;          /* ou até 60px */
  min-height: auto;
  align-items: center; /* centraliza horizontalmente */
  padding: 70px 30px 30px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  background: linear-gradient(135deg, #0b0f1a, #0f1222);
  gap: 20px; /* espaçamento entre os elementos */
}

.sobre-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0; /* remove margens que atrapalham centralização */
}

.sobre-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0; /* remove margens para ficar bem centralizado */
  color: #aab2c0;
}


.sobre-hero .btn-aura {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00f0ff, #7b2cff);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sobre-hero .btn-aura:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Linha animada do Hero (opcional) */
.sobre-hero .hero-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #7b2cff);
  margin: 0 auto 30px auto;
  border-radius: 2px;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CARDS SOBRE NÓS */
.sobre-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza os cards */
  gap: 30px;
  padding: 25px 20px 60px;
}

.sobre-cards .card {
  background: #0b0f1a;
  border-radius: 18px;
  padding: 25px 20px;
  width: 260px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.sobre-cards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #00f0ff, #7b2cff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sobre-cards .card:hover::before {
  opacity: 1;
}

.sobre-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.sobre-cards .card p {
  font-size: 0.95rem;
  margin-top: 12px;
  color: #aab2c0;
}

/* =========================
   HERO CONTATO
========================= */
.hero-contato {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-contato .hero-content {
  max-width: 900px;
}

.hero-contato h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-contato p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   INTRO CONTATO
========================= */
.contato-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* =========================
   CARDS CONTATO
========================= */
.contato-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contato-card{
  background: linear-gradient(135deg, #00f0ff, #7b2cff);
  color: #fff;

  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;

  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}


.contato-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
   color: inherit;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contato-card p {
  opacity: 0.85;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  font-family: inherit;

  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
/* Hover */
.contato-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 25px rgba(0,240,255,0.35),
    0 0 45px rgba(123,44,255,0.35);
  text-decoration: underline;
}

/* =========================
   FORMULÁRIO CONTATO
========================= */
.contato-form {
  max-width: 700px;
  margin: 100px auto;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
}

.contato-form h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow:
    0 0 0 2px rgba(0,240,255,0.6),
    0 0 25px rgba(0,240,255,0.4);
}

/* Botão */
.contato-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  margin-top: 10px;
}

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

  .hero-contato h1 {
    font-size: 2.2rem;
  }

  .hero-contato p {
    font-size: 1rem;
  }

  .contato-form {
    margin: 60px 20px;
    padding: 30px 20px;
  }
}
 /* Links dentro dos cards de contato */
.contact-link{
  color: inherit;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word; /* quebra só se precisar */
}

.contact-link:hover{
  text-decoration: underline;
}

.contact-link.phone{
  white-space: nowrap; /* telefone nunca quebra */
}

@media (max-width: 768px) {
  .btn-aura-topo { /* troca pelo seletor real */
    right: 12px !important;
    top: 84px !important; /* opcional */
    max-width: calc(100vw - 24px);
  }
}

/* utilitários */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* MOBILE */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  
  /* hidden tem que ganhar de qualquer display */
  [hidden] {
    display: none !important;
  }



  .desktop-only { display: none; }
  .mobile-only { display: block; }


  /* Header seguro no mobile */
  .header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    max-width: 140px;
    height: auto;
    display: block;
  }

  /* Hamburger */
  .hamburger {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
  }

  /* Drawer */
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: rgba(10, 12, 20, .98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;

    transform: translateX(100%);
    transition: transform .22s ease;
  }

  .mobile-drawer.open {
    transform: translateX(0);
  }

  .drawer-close {
    align-self: flex-end;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 6px 8px;
  }

  .mobile-drawer a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .mobile-aura {
    margin-top: 8px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-visual,
  .aura-orb {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 0 18px;    /* mais respiro pra não “colar” */
    margin: 0 auto;
  }

  .cards .card {
    width: min(84vw, 340px);  /* menor que antes */
    border-radius: 18px;      /* opcional: mais “card” */
    padding: 18px;            /* opcional: deixa mais compacto */
    box-sizing: border-box;
  }

  /* Título da seção "O que fazemos" mais alinhado */
  .services-title, .section-title, h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0; /* dá respiro vertical */
  }

  .hero-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero-text {
    text-align: center;
    width: 100%;
  }

  .hero-text h1 {
    line-height: 1.05; /* melhora leitura mobile */
  }

  .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: min(86vw, 320px);
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .hero { min-height: 80vh; }
}

@media (max-width: 992px) {
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 40px; }
}

