/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* BASE */
body {
  background: #141414;
  color: #e6e6e6;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER PREMIUM (FINTECH)
========================= */
.header-premium {
  background: linear-gradient(180deg, #0a0a0a, #151515);
  border-bottom: 4px solid #ff7a00;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.header-premium-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à esquerda, menu à direita */
  padding: 36px 0;
}

}

/* LOGO COM FUNDO INTEGRADO */
.logo-box {
  background: #141414; /* MESMA COR DO BODY */
  padding: 18px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #1f1f1f;
}

.logo-premium {
  height: 125px;
  display: block;
}

/* MENU */
.nav-premium a {
  color: #d8d8d8;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-premium a:hover {
  color: #ff7a00;
}

.btn-premium {
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  color: #000;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   HERO
========================= */
.hero-premium {
  background: linear-gradient(135deg, #1b1b1b, #0f0f0f);
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #ffffff;
}

.hero-text p {
  margin: 25px 0;
  color: #cccccc;
  font-size: 1.1rem;
}

.btn-primary {
  background: #ff7a00;
  color: #000;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
}

/* HERO CARD */
.hero-card {
  background: #1f1f1f;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #2b2b2b;
}

.hero-card h3 {
  color: #ff7a00;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 12px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 90px 0;
}

.section-dark {
  background: #1a1a1a;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #ff7a00;
}

/* BENEFÍCIOS */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.beneficio {
  background: #202020;
  padding: 30px;
  border-radius: 14px;
  border-left: 4px solid #ff7a00;
}

/* SERVIÇOS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #202020;
  padding: 35px;
  border-radius: 16px;
}

/* =========================
   BLOCO CONFIANÇA
========================= */
.trust {
  background: #0f0f0f;
  padding: 40px 0;
}

.trust-box {
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: #cccccc;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  color: #000;
  text-align: center;
  padding: 80px 0;
}

.btn-cta {
  background: #000;
  color: #ff7a00;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* =========================
   CONTATO
========================= */
.contato-container {
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border: 2px solid #ff7a00;
  border-radius: 10px;
  color: #ff7a00;
  text-decoration: none;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0b0b0b;
  text-align: center;
  padding: 30px 0;
  color: #777777;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .header-premium-container {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .logo-premium {
    height: 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-box {
    flex-direction: column;
    gap: 15px;
  }

  .nav-premium a {
    margin-left: 0;
  }
}
.brand-premium {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* força à esquerda */
}
/* =========================
   ANIMAÇÃO SUTIL DA LOGO
========================= */

/* Keyframes */
@keyframes logoEntrada {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* Aplica a animação na logo */
.logo-premium {
  animation: logoEntrada 0.8s ease-out forwards;
}

}
/* =================================================
   ANIMAÇÕES & MICROINTERAÇÕES PREMIUM
   (Banco / Fintech)
================================================= */

/* ---------- LOGO: entrada sutil ---------- */
@keyframes logoEntrada {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-premium {
  animation: logoEntrada 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

/* ---------- MENU: entrada elegante ---------- */
@keyframes menuEntrada {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-premium a,
.btn-premium {
  animation: menuEntrada 0.6s ease-out forwards;
}

/* ---------- HERO: entrada progressiva ---------- */
@keyframes heroEntrada {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-card {
  animation: heroEntrada 0.9s ease-out forwards;
}

.hero-card {
  animation-delay: 0.15s;
}

/* ---------- HEADER STICKY (FIXO AO ROLAR) ---------- */
.header-premium {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Suaviza quando rola */
body:has(.hero-premium) .header-premium {
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

/* ---------- BOTÕES: HOVER PREMIUM ---------- */
.btn-primary,
.btn-premium,
.btn-cta,
.btn-secondary {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-premium:hover,
.btn-cta:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* ---------- LINKS DO MENU ---------- */
.nav-premium a {
  position: relative;
}

.nav-premium a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff7a00;
  transition: width 0.3s ease;
}

.nav-premium a:hover::after {
  width: 100%;
}

/* ---------- HERO CARD: leve destaque ---------- */
.hero-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

/* ---------- MOBILE: remover animações pesadas ---------- */
@media (max-width: 768px) {
  .logo-premium,
  .nav-premium a,
  .btn-premium,
  .hero-text,
  .hero-card {
    animation: none;
  }
}

/* =========================
   CTA FINAL – CORREÇÃO + WHATSAPP
========================= */

.cta-container {
  text-align: center;
}

.cta-texto {
  margin: 20px auto 35px auto; /* espaço correto entre texto e botão */
  max-width: 700px;
  font-size: 1.1rem;
}

/* Botão WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
}

/* Ícone WhatsApp (CSS puro, sem imagem externa) */
.whatsapp-icon {
  width: 22px;
  height: 22px;
  background-color: #25d366;
  border-radius: 50%;
  position: relative;
}

.whatsapp-icon::before {
  content: "☎";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
}

/* Remove qualquer animação que cause sobreposição */
.cta-final .btn-cta {
  transform: none !important;
}

/* =========================
   CTA FINAL – WHATSAPP SVG
========================= */

.cta-container {
  text-align: center;
}

.cta-texto {
  margin: 20px auto 36px auto;
  max-width: 720px;
  font-size: 1.1rem;
}

/* Botão WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
}

/* Ícone SVG WhatsApp */
.whatsapp-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Remove QUALQUER efeito que cause sobreposição */
.cta-final .btn-cta {
  transform: none !important;
}
/* =========================
   PULSE VISÍVEL E SUTIL
   (ESCALA – FINTECH)
========================= */

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/* Aplica SOMENTE no botão WhatsApp */
.whatsapp-btn {
  animation: pulseWhatsapp 2.6s ease-in-out infinite;
}

/* Pausa ao interagir */
.whatsapp-btn:hover {
  animation-play-state: paused;
  transform: scale(1.04);
}
