/* ====== VARIÁVEIS ====== */
:root {
  --roxo-primario: #66009d;
  --roxo-hover: #3c096c;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --fonte-titulo: 'Charukola Unicode', sans-serif;
  --fonte-texto: 'Ubuntu', sans-serif;
}

/* ====== RESET BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-texto, 'Poppins', sans-serif);
  color: #ffffff;
  background-color: #040324;
  overflow-x: hidden;
}

/* ====== NAVBAR REFINADA AIVY STYLE ====== */
.navbar {
  width: 100%;
  background-color: rgba(4, 3, 36, 0.8); /* Transparência elegante */
  backdrop-filter: blur(12px); /* efeito vidro leve */
  padding: 0.8rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.navbar-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.logo img {
  max-height: 64px;
  width: auto;
  display: block;
}

/* MENU */
.menu-list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.menu-list li a {
  color: #d3baff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-list li a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #a874ff;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  font-size: 2rem;
  background: none;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(4, 3, 36, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    display: none;
  }

  .menu-list.open {
    display: flex;
  }
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1e002e;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    display: none;
  }

  .menu-list.ativo {
    display: flex;
  }

  .menu-list li a {
    font-size: 1.1rem;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-texto);
  background-color: #040324;
  color: var(--branco);
  line-height: 1.6;
}

/* BOTÃO CONTACTAR ESTILO CTA */
.cta-menu a {
  background-color: #66009d;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 8px rgba(170, 102, 255, 0.3);
}

.cta-menu a:hover {
  background-color: #3c096c;
  color: #ffffff;
  text-shadow: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 10rem 2rem 8rem;
  text-align: center;
  background: radial-gradient(circle at top right, #66009d 0%, #3c096c 60%, #040324 100%);
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 116, 255, 0.2), transparent 70%);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  background: rgba(4, 3, 36, 0.65);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(102, 0, 157, 0.15);
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-family: var(--fonte-titulo);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(168, 116, 255, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e5d4ff;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* GERAL */
.section-padding {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #e0beff;
  margin-bottom: 2.5rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.sticky-cta .btn-principal {
  background: var(--cor-destaque, #6a0dad);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sticky-cta .btn-principal:hover {
  background-color: #4e038d;
}

/* Botões "Saiba mais" */
.btn-secundario {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 16px;
  background: transparent;
  border: 2px solid var(--cor-destaque, #6a0dad);
  color: var(--cor-destaque, #6a0dad);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secundario:hover {
  background: var(--cor-destaque, #6a0dad);
  color: #fff;
}

/* Hover nos summaries */
.summary-hover {
  cursor: pointer;
  transition: color 0.3s;
}
.summary-hover:hover {
  color: var(--cor-destaque, #6a0dad);
  text-decoration: underline;
}

/* GRELHA */
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* CARTÃO BASE */
.unidade {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 0, 157, 0.25);
  padding: 2.8rem 2rem 3.2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* GLOWS */
.unidade::before,
.unidade::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.unidade::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(168, 116, 255, 0.15), transparent 70%);
  top: -60px;
  right: -60px;
}
.unidade::after {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* HOVER */
.unidade:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 14px 36px rgba(168, 116, 255, 0.4);
}

/* IMAGEM */
.unidade img {
  width: 120%;
  max-width: 130px;
  height: auto;
  margin-bottom: 1.8rem;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(168, 116, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.unidade:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 18px rgba(168, 116, 255, 0.5));
}

/* TÍTULO */
.unidade h3 {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-family: var(--fonte-titulo);
  position: relative;
  z-index: 1;
}

/* SUBTÍTULO */
.unidade-sub {
  font-size: 1.05rem;
  color: #cbb9e4;
  margin-bottom: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* LISTA DE SUBSERVIÇOS */
.unidade ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
  color: #dcd2ec;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
  max-width: 90%;
  position: relative;
  z-index: 1;
}
.unidade li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}
.unidade li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--roxo-primario);
  font-size: 0.9rem;
  line-height: 1;
}

/* DETALHES - + Ver todos os serviços */
.servicos-extra summary {
  color: #a874ff;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: color 0.3s;
}
.servicos-extra summary:hover {
  color: #ffffff;
}

.servicos-extra ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #cab8e3;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.7;
}

/* MOBILE AJUSTES */
@media (max-width: 480px) {
  .unidade h3 {
    font-size: 1.5rem;
  }

  .unidade-sub {
    font-size: 0.95rem;
  }

  .unidade img {
    max-width: 100px;
  }
}

/* PLANOS E PACOTES ============================ */

.planos {
  background: linear-gradient(135deg, #1e002e, #3c096c);
  padding: 6rem 2rem;
  color: #f2e9ff;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.planos::before,
.planos::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.planos::before {
  top: -60px;
  left: -60px;
}

.planos::after {
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(168, 116, 255, 0.08), transparent 70%);
}

.planos h2 {
  font-size: 2.5rem;
  font-family: var(--fonte-titulo);
  color: #e0beff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.planos .section-subtitle {
  font-size: 1.15rem;
  color: #d4c9e2;
  max-width: 680px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Cartão do Plano */
.plano {
  padding: 2.2rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(168, 116, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(168, 116, 255, 0.3);
}

.plano.destaque {
  border: 2px solid #a874ff;
  box-shadow: 0 0 28px rgba(168, 116, 255, 0.35);
}

.plano h3 {
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.plano > p {
  font-size: 1rem;
  color: #d0c4e0;
  margin-bottom: 1.5rem;
}

/* Detalhes do Plano */
.plano details {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: left;
  color: #e6dbfa;
  transition: all 0.3s ease;
  max-width: 100%;
  margin-inline: auto;
}

.plano details[open] {
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.08);
}

.plano summary {
  font-weight: 600;
  cursor: pointer;
  color: #e0beff;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  list-style: none;
}

.plano summary::-webkit-details-marker {
  display: none;
}

.plano ul {
  list-style: none;
  padding-left: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbb9e8;
}

.plano ul li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
}

.plano ul li::before {
  content: "➤";
  color: var(--roxo-primario);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 0.15rem;
}

/* Botão */
.hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #66009d;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #3c096c;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.plano-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--roxo-primario);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 3;
}

/* Botão CTA */
.hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #66009d;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 3rem;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #66009d;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(168, 116, 255, 0.4);
}

/* O NOSSO PROCESSO */
.processo {
  background: linear-gradient(135deg, #040324, #1a0030);
  padding: 6rem 2rem;
  color: #e8dbff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.processo .section-subtitle {
  font-size: 1.1rem;
  color: #cbb9e8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.processo::before,
.processo::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(168, 116, 255, 0.06), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.processo::before {
  top: -50px;
  left: -50px;
}

.processo::after {
  bottom: -50px;
  right: -50px;
}

.processo h2 {
  font-size: 2.5rem;
  font-family: var(--fonte-titulo);
  color: #e0beff;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.etapa {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(102, 0, 157, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.etapa:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(168, 116, 255, 0.25);
}

.etapa-numero {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #a874ff, #e0beff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.etapa h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.etapa p {
  font-size: 0.95rem;
  color: #d4c9e2;
  line-height: 1.6;
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 500px) {
  .processo-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #1a0030, #2a0052);
  padding: 6rem 2rem;
  color: #f2e9ff;
}

/* Blocos de Pergunta */
.faq details {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 12px rgba(168, 116, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Hover do bloco */
.faq details:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px rgba(168, 116, 255, 0.2);
}

/* Título da pergunta */
.faq summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: #e0beff;
  outline: none;
  list-style: none; /* remove a seta nativa */
  position: relative;
  padding-right: 1.5rem;
}

/* Oculta seta padrão do summary */
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::marker {
  display: none;
}

/* Ícone personalizado */
.faq summary::after {
  content: "➤";
  position: absolute;
  right: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: #a874ff;
  transition: transform 0.3s ease;
}

/* Ícone girado ao abrir */
.faq details[open] summary::after {
  transform: rotate(90deg);
}

/* Conteúdo da resposta */
.faq p {
  margin-top: 1rem;
  font-size: 0.975rem;
  color: #d7c9f3;
  line-height: 1.6;
}

/* Destaque suave ao abrir */
.faq details[open] p {
  animation: fadeIn 0.4s ease;
  border-left: 3px solid #a874ff;
  padding-left: 0.75rem;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 600px) {
  .faq summary {
    font-size: 1rem;
  }
  .faq p {
    font-size: 0.95rem;
  }
}

/* CTA FINAL */
.cta-final {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #66009d, #1e0033);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: 0;
  animation: pulseBlur 6s ease-in-out infinite;
}

.cta-final::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 116, 255, 0.15), transparent 70%);
  z-index: 0;
  animation: pulseBlur 8s ease-in-out infinite;
}

@keyframes pulseBlur {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.cta-final h2 {
  font-size: 2.5rem;
  color: #e9d4ff;
  font-family: var(--fonte-titulo);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-final .hero-btn {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  color: #66009d;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-final .hero-btn:hover {
  background-color: #3c096c;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #d0c3f4;
  font-weight: 400;
  max-width: 520px;
  margin-inline: auto;
}

.badge-urgente {
  display: inline-block;
  background: linear-gradient(135deg, #a874ff, #e0beff);
  color: #1a0030;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(168, 116, 255, 0.3);
  animation: pulseBadge 2s infinite;
}

.cta-final h2 {
  font-size: 2rem;
  color: #f2e9ff;
}

.cta-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #d0c3f4;
  font-weight: 400;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

/* ====== FOOTER ====== */
.footer-heroico {
  background: linear-gradient(to top, #3c096c, #1e002e);
  color: #ffffff;
  padding: 6rem 2rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-titulo {
  font-family: var(--fonte-titulo);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e0beff;
}

.footer-navegacao h4,
.footer-cta h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e0beff;
}

.footer-navegacao ul {
  list-style: none;
  padding: 0;
}

.footer-navegacao ul li {
  margin-bottom: 0.6rem;
}

.footer-navegacao a {
  color: #d4c9e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navegacao a:hover {
  color: #ffffff;
}

.footer-btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #ffffff;
  color: #66009d;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #3c096c;
  color: #ffffff;
}

.footer-bottom {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.95rem;
  color: #c8b9da;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-links {
  color: #ffffff;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e0beff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #d4c9e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* === Acessibilidade: Focus visível === */
a:focus,
button:focus {
  outline: 2px dashed var(--roxo-primario);
  outline-offset: 4px;
}

/* Base */
.animar-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.animar-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Fade-up (padrão) */
[data-anim="fade-up"].animar-scroll {
  transform: translateY(40px);
}
[data-anim="fade-up"].animar-scroll.visible {
  transform: translateY(0);
}

/* Fade-down */
[data-anim="fade-down"].animar-scroll {
  transform: translateY(-40px);
}
[data-anim="fade-down"].animar-scroll.visible {
  transform: translateY(0);
}

/* Fade-left */
[data-anim="fade-left"].animar-scroll {
  transform: translateX(-40px);
}
[data-anim="fade-left"].animar-scroll.visible {
  transform: translateX(0);
}

/* Fade-right */
[data-anim="fade-right"].animar-scroll {
  transform: translateX(40px);
}
[data-anim="fade-right"].animar-scroll.visible {
  transform: translateX(0);
}

/* Zoom-in */
[data-anim="zoom-in"].animar-scroll {
  transform: scale(0.9);
}
[data-anim="zoom-in"].animar-scroll.visible {
  transform: scale(1);
}

/* Zoom-out */
[data-anim="zoom-out"].animar-scroll {
  transform: scale(1.1);
}
[data-anim="zoom-out"].animar-scroll.visible {
  transform: scale(1);
}

/* Suavização extra */
[data-anim].animar-scroll {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Títulos */
.titulo-animado {
  opacity: 0;
  transform: translateY(20px);
  animation: surgirTitulo 0.8s ease-out forwards;
}

@keyframes surgirTitulo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brilhoTitulo {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes brilhoTitulo {
  0% { background-position: 0%; }
  100% { background-position: 100%; }
}

.unidades-negocio {
  text-align: center;
  margin-bottom: 4rem;
}

.unidades-negocio h2 {
  font-size: 2.8rem;
  font-family: var(--fonte-titulo, 'Poppins', sans-serif);
  background: linear-gradient(90deg, #a874ff, #e0beff);
  background-size: 200% auto;
  background-repeat: no-repeat;
  display: inline-block; /* necessário para aplicar o clip corretamente */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback para browsers que não suportam */
  opacity: 0;
  transform: translateY(20px);
  animation: tituloFadeUp 1.2s ease-out forwards;
}

/* Animação definida corretamente */
@keyframes tituloFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unidades-negocio .subtitulo {
  font-size: 1.15rem;
  color: #d4c9e2;
  max-width: 700px;
  margin: 1rem auto 0;
  animation: fadeIn 1.6s ease-out forwards;
  opacity: 0;
  transform: translateY(12px);
}

/* Animações */
@keyframes tituloFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 100px;
  }
}
