:root {
  /* Tamanhos de fonte padronizados */
  --fonte-xs: 0.75rem;
  /* 12px */
  --fonte-sm: 0.875rem;
  /* 14px */
  --fonte-base: 1rem;
  /* 16px */
  --fonte-lg: 1.125rem;
  /* 18px */
  --fonte-xl: 1.25rem;
  /* 20px */
  --fonte-2xl: 1.5rem;
  /* 24px */
  --fonte-3xl: 1.875rem;
  /* 30px */
  --fonte-4xl: 2.25rem;
  /* 36px */
  --fonte-5xl: 3rem;
  /* 48px */
  --fonte-6xl: 3.75rem;
  /* 60px */

/* Cores principais - Tema Preto */
--cor-primaria: #000000;
--cor-primaria-escura: #000000;
--cor-texto: black;
--cor-texto-claro: #666666;
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  list-style: none;
}

body {
  scroll-behavior: smooth;
  font-size: var(--fonte-base);
  color: var(--cor-texto);
}

main {
  overflow-x: hidden;
}

.textDestaque {
  color: var(--cor-primaria);
}

.titleUni {
  font-size: var(--fonte-5xl);
  font-weight: 800;
  line-height: 2.9rem;
  display: ruby;
  letter-spacing: -1px;
}

/* ===== COMPONENTES REUTILIZÁVEIS ===== */
.btncliente {
  background: var(--cor-primaria);
  color: white;
  box-shadow: 0 8px 20px rgba(58, 98, 158, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 20px;
  font-size: var(--fonte-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.btncliente:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.35);
  background: var(--cor-primaria-escura);
  color: white;
}


/* ===== HERO SECTION ===== */
.hero-moderno {
  background: linear-gradient(135deg, var(--cor-fundo-claro) 0%, var(--cor-fundo) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.conteudo-hero {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.grid-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Texto Principal */
.texto-principal {
  text-align: center;
  order: 2;
}

.titulo-destaque {
  font-size: var(--fonte-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cor-texto);
  letter-spacing: -0.5px;
}

.descricao-hero {
  font-size: var(--fonte-lg);
  line-height: 1.6;
  color: var(--cor-texto-claro);
  margin-bottom: 2.5rem;
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Botões */
.container-botoes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}

.botao-primario,
.botao-secundario {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: var(--fonte-base);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.botao-primario:hover,
.botao-secundario:hover {
  transform: translateY(-2px) perspective(500px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.botao-primario {
  background: var(--cor-primaria);
  color: var(--cor-fundo);
}

.botao-primario:active {
  transform: scale(0.98);
}

.botao-secundario {
  background: transparent;
  color: var(--cor-primaria);
  border: 2px solid var(--cor-primaria);
}

.botao-secundario:active {
  background: var(--cor-fundo-cinza);
}

/* Destaques Rápidos */
.destaques-rapidos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.destaque {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.numero {
  font-size: var(--fonte-2xl);
  font-weight: 700;
  color: var(--cor-primaria);
}

.texto {
  font-size: var(--fonte-sm);
  color: var(--cor-texto-claro);
}

/* ===== MOCKUP CELULAR ===== */
.visual-celular {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.mockup-dispositivo {
  width: 280px;
  height: 560px;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 10px solid var(--cor-primaria);
}

.tela-app {
  width: 100%;
  height: 100%;
  background: var(--cor-fundo-cinza);
  display: flex;
  flex-direction: column;
  position: relative;
}

.headerApp {
  background: var(--cor-primaria);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 4rem 2rem 1rem 2rem;
}

.StatusBar {
  color: white;
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0px;
  padding: 1rem 2rem;
}

.StatusBar span {
  font-size: var(--fonte-sm);
}

.app-content {
  margin-top: 10rem;
  gap: 0px !important;
}

.infoHeader span {
  color: white !important;
}

.feature-card {
  background: var(--cor-primaria);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  margin: 10px;
  color: white;
}

.feature-card i {
  font-size: var(--fonte-xl);
  margin-right: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0px;
  padding: 10px;
}

.stat-item {
  text-align: center;
  background: var(--cor-primaria);
  padding: 10px;
  border-radius: 8px;
  color: white;
}

.stat-number {
  font-size: var(--fonte-lg);
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: var(--fonte-xs);
  opacity: 0.9;
}

/* ===== CARROSSEL ===== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: var(--cor-primaria);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background-color: var(--cor-primaria-escura);
  transform: scale(1.2);
}

.carousel-slides {
  position: relative;
  height: 100%;
}

.carousel-slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slides .slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mockup-dinamico {
  transition: all 0.5s ease-in-out;
}

.mockup-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tela-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  padding: 20px;
}

.tela-slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SEÇÃO VANTAGENS ===== */
#vantagens-clientes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cor-fundo-claro) 0%, var(--cor-fundo) 100%);
}

#vantagens-clientes p {
  color: var(--cor-texto-claro);
  margin-bottom: 2.5rem;
  font-size: var(--fonte-lg);
  font-weight: 500;
}

.cardplataforma {
  width: 100%;
  border: none;
  border-radius: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 24px;
  position: relative;
  background: linear-gradient(135deg, var(--cor-fundo) 0%, #fafbfc 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 300px !important;
}

.cardplataforma p {
  margin: 0px;
}

.cardplataforma .icone {
  font-size: var(--fonte-3xl);
  background: var(--cor-primaria);
  color: white;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(58, 98, 158, 0.15);
}

.cardplataforma .title {
  font-weight: 700;
  font-size: var(--fonte-xl);
  color: var(--cor-texto);
}

.cardplataforma:hover {
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.2);
}

.cardplataforma:hover .icone {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(58, 98, 158, 0.25);
}

/* ===== SEÇÃO COMO FUNCIONA ===== */
#como-funciona-clientes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-fundo-claro) 100%);
}

.cardFluxoCliente {
  width: 100%;
  border: none;
  border-radius: 30px;
  padding: 45px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  position: relative;
  background: linear-gradient(135deg, var(--cor-fundo) 0%, #fafbfc 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 350px;
}

.cardFluxoCliente::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 98, 158, 0.05);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.cardFluxoCliente:hover::before {
  opacity: 1;
}

.cardFluxoCliente:hover {
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.2);
}

.cardFluxoCliente .numero {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-primaria);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fonte-xl);
  box-shadow: 0 6px 20px rgba(58, 98, 158, 0.3);
  transition: all 0.5s;
}

.cardFluxoCliente:hover .numero {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 8px 25px rgba(58, 98, 158, 0.4);
}

.cardFluxoCliente .icone {
  font-size: var(--fonte-4xl);
  color: var(--cor-primaria);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
}

.cardFluxoCliente h3 {
  font-size: var(--fonte-base);
  font-weight: 700;
  color: var(--cor-texto);
  margin: 0;
  letter-spacing: -0.3px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cardFluxoCliente:hover h3 {
  color: var(--cor-primaria);
}

.cardFluxoCliente p {
  font-size: var(--fonte-lg);
  color: var(--cor-texto-claro);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cardFluxoCliente:hover p {
  color: #555;
}

/* ===== SEÇÃO SERVIÇOS ===== */
#servicos-clientes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cor-fundo-claro) 0%, var(--cor-fundo) 100%);
}

#servicos-clientes p {
  color: var(--cor-texto-claro);
  margin-bottom: 2.5rem;
  font-size: var(--fonte-lg);
  font-weight: 500;
}

.cardService {
  width: 100%;
  border: none;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 45px 32px;
  position: relative;
  background: linear-gradient(135deg, var(--cor-fundo) 0%, #fafbfc 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cardService .icone {
  font-size: var(--fonte-3xl);
  background: var(--cor-primaria);
  color: white;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(58, 98, 158, 0.15);
}

.cardService:hover {
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.2);
}

.cardService:hover .icone {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(58, 98, 158, 0.25);
}

.cardService span {
  font-weight: 600;
  font-size: var(--fonte-xl);
  color: var(--cor-texto);
}

.cardService p {
  font-size: var(--fonte-sm);
  margin: 0px;
  color: var(--cor-texto-claro);
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
#depoimentos-clientes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cor-fundo-claro) 0%, var(--cor-fundo) 100%);
}

.depoimento-card-cliente {
  background: var(--cor-fundo);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.depoimento-texto-cliente {
  flex-grow: 1;
  font-style: italic;
  color: var(--cor-texto);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: var(--fonte-base);
}

.depoimento-autor-cliente {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.autor-foto-cliente {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(58, 98, 158, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-primaria);
  font-size: var(--fonte-2xl);
}

.autor-info-cliente h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--cor-texto);
  font-size: var(--fonte-base);
}

.autor-info-cliente p {
  color: #898790;
  margin-bottom: 0.5rem;
  font-size: var(--fonte-sm);
}

.autor-estrelas-cliente {
  color: #ffc107;
}

/* ===== SEÇÃO APP DOWNLOAD ===== */
#app-clientes {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f4fa 0%, #f7f9fc 50%, var(--cor-fundo) 100%);
}

.download-content-cliente {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.download-text-cliente h2 {
  font-size: var(--fonte-5xl);
  font-weight: 800;
  line-height: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--cor-texto);
}

.download-text-cliente>p {
  font-size: var(--fonte-lg);
  color: var(--cor-texto-claro);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-list-cliente {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.benefit-item-cliente {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fonte-base);
  color: var(--cor-texto);
}

.benefit-item-cliente i {
  font-size: var(--fonte-xl);
  color: var(--cor-primaria);
  flex-shrink: 0;
}

.app-download-buttons-cliente {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store-cliente {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: var(--fonte-base);
}

.btn-appstore-cliente {
  background: #000;
  color: var(--cor-fundo);
}

.btn-appstore-cliente:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: var(--cor-fundo);
}

.btn-playstore-cliente {
  background: var(--cor-primaria);
  color: var(--cor-fundo);
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--fonte-base);
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(58, 98, 158, 0.25);
  text-decoration: none;
}

.btn-playstore-cliente:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.35);
  color: var(--cor-fundo);
  background: var(--cor-primaria-escura);
}

.btn-store-cliente i {
  font-size: var(--fonte-3xl);
}

.btn-store-cliente div {
  display: flex;
  flex-direction: column;
}

.btn-store-cliente small {
  font-size: var(--fonte-xs);
  opacity: 0.8;
}

.btn-store-cliente strong {
  font-size: var(--fonte-base);
}

/* Phone Mockup */
.download-visual-cliente {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-cliente {
  position: relative;
  width: 280px;
  height: 560px;
  background: var(--cor-primaria);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(58, 98, 158, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-mockup-cliente::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: var(--cor-primaria);
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.phone-screen-cliente {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f4fa 0%, #f7f9fc 100%);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-content-cliente {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
}

.status-bar-cliente {
  height: 20px;
  margin-bottom: 20px;
}

.app-header-cliente {
  font-size: var(--fonte-2xl);
  font-weight: 800;
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.screen-item-cliente {
  height: 60px;
  background: rgba(58, 98, 158, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
}

/* ===== SEÇÃO FAQ ===== */
#faq-clientes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cor-fundo) 0%, #f9f9fb 100%);
}

#faq-clientes p {
  color: #898790;
  margin-bottom: 2.5rem;
  font-size: var(--fonte-lg);
}

.faq-item {
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--cor-fundo) 0%, #fafbfc 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
  border: none;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(58, 98, 158, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: var(--fonte-lg);
  font-weight: 600;
  color: var(--cor-texto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  background-color: transparent;
  color: var(--cor-primaria);
}

.faq-question i {
  font-size: var(--fonte-xl);
  color: var(--cor-primaria);
  transition: transform 0.5s;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  background-color: transparent;
  border-top: 1px solid rgba(58, 98, 158, 0.1);
}

.faq-answer p {
  padding: 24px 28px;
  margin: 0;
  font-size: var(--fonte-sm);
  line-height: 1.7;
  color: #545454;
}

/* ===== COMPONENTES SOCIAIS ===== */
.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(58, 98, 158, 0.1);
  color: var(--cor-primaria);
  border-radius: 50%;
  text-decoration: none;
  font-size: var(--fonte-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(58, 98, 158, 0.2);
}

.social-icon:hover {
  background: rgba(58, 98, 158, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(58, 98, 158, 0.2);
}

/* ===== BOTÕES FLUTUANTES ===== */
.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--cor-primaria);
  color: var(--cor-fundo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fonte-3xl);
  box-shadow: 0 8px 25px rgba(58, 98, 158, 0.35);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

.btn-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 98, 158, 0.45);
  color: var(--cor-fundo);
  background: var(--cor-primaria-escura);
}

.btn-arrow-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--cor-primaria);
  color: var(--cor-fundo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fonte-3xl);
  box-shadow: 0 8px 25px rgba(58, 98, 158, 0.35);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  transform: rotate(180deg);
}

.btn-arrow-top:hover {
  transform: rotate(180deg) scale(1.12) translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 98, 158, 0.45);
  color: var(--cor-fundo);
  background: var(--cor-primaria-escura);
}

/* ===== HEADER MOBILE ===== */
.headerMobile {
  display: none;
}

.areaHeaderMobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .headerDesktop {
    display: none;
  }

  .headerMobile {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--cor-fundo);
    width: 100%;
    border-radius: 30px;
    height: 4rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .areaHeaderMobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    padding: 28px 40px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 999;
  }

  .areaHeaderMobile .headerMobile h1 {
    font-size: var(--fonte-xl);
    font-weight: bold;
    color: var(--cor-primaria);
    margin: 0px;
  }

  .hamburger {
    width: 42px;
    height: 34px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }

  .hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--cor-primaria);
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.2s ease;
  }

  .hamburger:focus {
    outline: 2px solid rgba(58, 98, 158, 0.18);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .hamburger.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .areaManuMobile {
    background-color: #22222a00;
    position: fixed;
    width: 100%;
    top: 7rem;
    padding: 0px 40px;
  }

  .menuMobile {
    background-color: var(--cor-fundo);
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .menuMobile .navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px;
  }

  .menuMobile .navigation a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-weight: 500;
    font-size: var(--fonte-base);
    transition: color 0.3s ease;
  }

  .menuMobile .navigation a:hover {
    color: var(--cor-primaria-escura);
  }

  .titleUni {
    font-size: var(--fonte-3xl);
    line-height: 30px;
    margin-bottom: 1.9rem;
  }
}

/* ===== MEDIA QUERIES ===== */

/* Desktop */
@media (min-width: 768px) {
  .hero-moderno {
    padding: 10rem 2rem;
  }

  .grid-hero {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .texto-principal {
    text-align: left;
    order: 1;
  }

  .visual-celular {
    order: 2;
  }

  .titulo-destaque {
      font-size: 5rem;
        line-height: 4.2rem;
  }

  .descricao-hero {
    margin-left: 0;
    margin-right: 0;
    font-size: var(--fonte-xl);
  }

  .container-botoes {
    flex-direction: row;
    align-items: flex-start;
  }

  .botao-primario,
  .botao-secundario {
    width: auto;
    min-width: 160px;
  }

  .destaques-rapidos {
    justify-content: flex-start;
  }

  .mockup-dispositivo {
    width: 320px;
    height: 640px;
  }
}

/* Mobile Pequeno */
@media (max-width: 360px) {
  .hero-moderno {
    padding: 1.5rem 1rem;
  }

  .titulo-destaque {
    font-size: var(--fonte-3xl);
  }

  .descricao-hero {
    font-size: var(--fonte-base);
  }

  .mockup-dispositivo {
    width: 240px;
    height: 480px;
  }

  .destaques-rapidos {
    gap: 1.5rem;
  }

  .numero {
    font-size: var(--fonte-xl);
  }
}

/* Melhorias para mobile geral */
@media (max-width: 767px) {
  .titulo-destaque {
    font-size: var(--fonte-4xl);
    line-height: 1.2;
  }

  .descricao-hero {
    font-size: var(--fonte-base);
    width: 100%;
  }

  .container-botoes {
    flex-direction: column;
    align-items: center;
  }

  .botao-primario,
  .botao-secundario {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .destaques-rapidos {
    gap: 0.5rem;
  }

  .destaque {
    border-right: none;
  }

  .download-content-cliente {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .download-text-cliente h2 {
    font-size: var(--fonte-4xl);
    line-height: 2.8rem;
  }

  .download-visual-cliente {
    order: -1;
  }

  .phone-mockup-cliente {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 462px) {
  .titulo-destaque {
    font-size: var(--fonte-3xl);
  }

  .descricao-hero {
    font-size: var(--fonte-base);
  }

  .download-text-cliente h2 {
    font-size: var(--fonte-3xl);
    line-height: 2.3rem;
  }

  .download-text-cliente>p {
    font-size: var(--fonte-base);
  }

  .app-download-buttons-cliente {
    flex-direction: column;
    gap: 12px;
  }

  .btn-store-cliente {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup-cliente {
    width: 200px;
    height: 400px;
    transform: scale(0.9);
  }
}