html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d18;
  color: #3a3a3a;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

a { text-decoration: none; }

/* ============================================================
   CONTAINER — Alinhamento e Grid padrão Synox
   ============================================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: navAppear 0.35s ease forwards;
}

.site-header.scrolled .nav-menu a  { color: #111; }
.site-header.scrolled .logo-white  { opacity: 0; }
.site-header.scrolled .logo-dark   { opacity: 1; }

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  transition: padding 0.3s;
}
.site-header.scrolled .main-nav { padding: 15px 0; }

/* Logo */
.nav-logo {
  position: relative;
  display: block;
  width: 160px;
  height: 50px;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(26,108,245,0.45));
}
.nav-logo img {
  position: absolute;
  top: 0; left: 0;
  width: 160px;
  height: auto;
  transition: opacity 0.3s ease;
}
.logo-white { opacity: 1; }
.logo-dark  { opacity: 0; }

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}
.nav-menu li a {
  position: relative;
  color: white;
  font-weight: 500;
  font-size: 17px;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background-color: #1a6cf5;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li a:hover        { color: #1a6cf5; }
.site-header.scrolled .nav-menu li a:hover { color: #1a6cf5; }

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #1a6cf5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1001;
  transition: background 0.2s;
}
.hamburger:hover                           { background: #1558d6; }
.site-header.scrolled .hamburger           { background: #1a6cf5; }
.site-header.scrolled .hamburger:hover     { background: #1558d6; }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1),
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2),
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3),
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,22,0.98);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.site-header.scrolled .mobile-menu { background: rgba(255,255,255,0.97); }
.mobile-menu.open { max-height: 420px; }

.mobile-nav-list {
  list-style: none;
  width: 100%;
  padding: 8px 20px 0;
}
.mobile-nav-link {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover                        { color: #1a6cf5; padding-left: 8px; }
.site-header.scrolled .mobile-nav-link        { color: #111; border-bottom-color: rgba(0,0,0,0.08); }
.site-header.scrolled .mobile-nav-link:hover  { color: #1a6cf5; }
.mobile-cta { margin: 20px 20px 28px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  padding-top: 140px;
  min-height: 95vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* ---- Backgrounds Adicionais ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Grid sutil */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Glows azuis */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow--left {
  top: -10%; left: -5%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,108,245,0.22) 0%, transparent 70%);
}
.hero-glow--right {
  bottom: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(26,108,245,0.35) 0%, transparent 65%);
  border-radius: 0;
}

/* Partículas decorativas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(26,108,245,0.35);
  filter: blur(1px);
  animation: particleFloat 6s infinite ease-in-out alternate;
}
.hero-particles span:nth-child(1) { width:8px;  height:8px;  top:18%; left:12%;  animation-delay: 0s;   animation-duration:5s; }
.hero-particles span:nth-child(2) { width:5px;  height:5px;  top:55%; left:20%;  animation-delay: 1s;   animation-duration:7s; }
.hero-particles span:nth-child(3) { width:10px; height:10px; top:30%; right:28%; animation-delay: 0.5s; animation-duration:6s; }
.hero-particles span:nth-child(4) { width:6px;  height:6px;  top:70%; right:18%; animation-delay: 2s;   animation-duration:8s; }
.hero-particles span:nth-child(5) { width:4px;  height:4px;  top:12%; right:42%; animation-delay: 1.5s; animation-duration:5.5s; }

/* Wave SVG — posicionada absolutamente cobrindo canto inferior direito */
.hero-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Remove o ::before antigo */
.hero-section::before { display: none; }

/* ---- Layout Grid ---- */
.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* ---- Texto ---- */
.hero-content {
  position: relative;
  padding: 20px 0 60px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 36px;
  max-width: 540px;
}

.btn-primary {
  display: inline-block;
  background-color: #1a6cf5;
  color: #fff;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background-color: #1558d6;
  transform: translateY(-2px);
}

/* Container espaçador */
.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ============================================================
   A MÃO E OS CARTÕES — Estilo Synox
   ============================================================ */

/* MÃO: canto inferior direito, saindo pela borda */
.hero-hand {
  position: absolute;
  bottom: -160px;
  right: 0;
  width: 580px;
  height: auto;
  z-index: 100;
  pointer-events: none;
}

/* CARTÕES: acima da palma aberta */
.hero-cards {
  position: absolute;
  bottom: 220px;
  right: 220px;
  width: 240px;
  height: auto;
  z-index: 5;
  animation: floatCards 2.4s infinite ease-in-out alternate;
  pointer-events: none;
}

/* ---- Estrelas decorativas ---- */
.hero-star {
  position: absolute;
  line-height: 1;
  opacity: 0.85;
  z-index: 6;
  pointer-events: none;
}
.hero-star--1 {
  color: #4e8cff;
  top: 10%; right: 5%;
  font-size: 40px;
  animation: spinStar 5s infinite linear;
}
.hero-star--2 {
  color: #fff;
  bottom: 22%; left: 2%;
  font-size: 40px;
  animation: spinStar 7s infinite linear reverse;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes navAppear {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spinStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes floatCards {
  from { transform: translate(0, 0) rotate(-1deg); }
  to   { transform: translate(0, -14px) rotate(1deg); }
}
@keyframes particleFloat {
  from { transform: translateY(0) scale(1); opacity: 0.5; }
  to   { transform: translateY(-18px) scale(1.3); opacity: 0.9; }
}

/* ============================================================
   BREAKPOINTS / RESPONSIVIDADE
   ============================================================ */

/* Ultrawide 2560px+ */
@media (min-width: 2000px) {
  .hero-wave { width: 72%; }
  .hero-hand  { width: 820px; bottom: -200px; right: 0; z-index: 100; }
  .hero-cards { width: 340px; bottom: 270px; right: 380px; }
}

@media (max-height: 768px) and (min-width: 901px) {
  .hero-section { padding-top: 110px; }
  .hero-hand    { width: 500px; bottom: -140px; right: 0; }
  .hero-cards   { width: 200px; bottom: 180px; right: 280px; }
}

@media (max-width: 1400px) {
  .hero-hand  { width: 620px; bottom: -150px; right: 0; }
  .hero-cards { width: 270px; bottom: 200px; right: 310px; }
}

@media (max-width: 1280px) {
  .container       { padding: 0 40px; }
  .nav-menu        { gap: 32px; }
  .nav-menu li a   { font-size: 15px; }
  .hero-content h1 { font-size: clamp(26px, 3vw, 40px); }
  .hero-hand       { width: 620px; bottom: -150px; right: 0; z-index: 100; }
  .hero-cards      { width: 270px; bottom: 200px; right: 310px; }
}

@media (max-width: 1024px) {
  .container       { padding: 0 32px; }
  .nav-menu        { gap: 22px; }
  .nav-menu li a   { font-size: 14px; }
  .hero-content h1 { font-size: 28px; max-width: 100%; }
  .hero-wave       { width: 78%; }
  .hero-hand       { width: 620px; bottom: -150px; right: 0; }
  .hero-cards      { width: 270px; bottom: 200px; right: 310px; }
}

@media (max-width: 900px) {
  .nav-menu    { display: none; }
  .hamburger   { display: flex; }
  .mobile-menu { display: flex; }
  .container   { padding: 0 20px; }

  .main-nav { padding: 18px 0; }
  .site-header.scrolled .main-nav { padding: 12px 0; }

  .nav-logo     { width: 140px; height: 44px; }
  .nav-logo img { width: 140px; }

  .hero-section {
    padding-top: 80px;
    min-height: 70svh;
    display: flex;
    flex-direction: column;
    background-position: bottom center;
    background-size: 100% auto;
    overflow: hidden;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    flex: 1;
    gap: 0;
    padding-bottom: 0;
    align-content: start;
  }

  .hero-content {
    order: 1;
    padding: 32px 0 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: clamp(26px, 8vw, 42px);
    max-width: 100%;
    margin-bottom: 28px;
    line-height: 1.2;
  }

  .btn-primary { padding: 16px 44px; font-size: 16px; }

  .hero-image  { display: none; }
  .hero-hand   { display: none; }
  .hero-wave   { display: none; }
  .hero-cards  { display: none; }

  .hero-star--1 { top: 14%; right: 6%; font-size: 28px; }
  .hero-star--2 { top: 42%; left: 4%; font-size: 26px; }
  .hero-bg { inset: 0; }

  .hero-section .container {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .hero-content { padding: 44px 0 36px; }
  .hero-content h1 { font-size: clamp(24px, 7.5vw, 38px); }
}

@media (max-width: 640px) {
  .hero-content { padding: 40px 0 28px; }
  .hero-content h1 { font-size: clamp(22px, 7vw, 32px); }
  .btn-primary { padding: 14px 36px; }
}

@media (max-width: 430px) {
  .container { padding: 0 16px; }
  .hero-section { padding-top: 72px; }
  .hero-content { padding: 36px 0 24px; }
  .hero-content h1 { font-size: clamp(20px, 6.5vw, 28px); }
  .btn-primary { padding: 14px 32px; font-size: 15px; }
  .nav-logo { width: 125px; height: 40px; }
}

/* Celulares deitados (Landscape) */
@media (max-width: 768px) and (max-height: 450px) and (orientation: landscape) {
  .hero-section { padding-top: 60px; min-height: auto; display: block; background-size: 100% auto; }
  .hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 20px; }
  .hero-image { display: block; height: 240px; order: 2; }
  .hero-content { order: 1; padding: 20px 0 16px; text-align: left; align-items: flex-start; }
  .hero-content h1 { font-size: 18px; margin-bottom: 16px; line-height: 1.3; max-width: 100%; }
  .btn-primary { padding: 10px 24px; font-size: 14px; }
  .hero-hand { display: block; position: absolute; width: 220px; max-width: 220px; min-width: 220px; bottom: -40px; right: 0; left: auto; transform: none; z-index: 2; }
  .hero-cards { display: block; position: absolute; width: 120px; max-width: 120px; min-width: 120px; bottom: 50px; right: 40px; left: auto; transform: none; z-index: 3; animation: floatCardsMobile 2.4s infinite ease-in-out alternate; }
  .hero-star--1, .hero-star--2 { display: none; }
  .hero-section .container { display: block; }
}

@keyframes floatCardsMobile {
  from { transform: rotate(-1deg); }
  to   { transform: translateY(-6px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hamburger span, .nav-logo, .btn-primary, .mobile-menu, .site-header { transition: none; }
  .hero-cards, .hero-star--1, .hero-star--2, .hero-particles span { animation: none; }
}
/* ============================================================
   SOBRE SECTION
   ============================================================ */
.sobre-section {
  position: relative;
  background: #f0f4ff;
  padding: 160px 0 140px;
  overflow: hidden;
}

/* Fundo com glow sutil azul nos cantos */
.sobre-section::before,
.sobre-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.sobre-section::before {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(26,108,245,0.12) 0%, transparent 70%);
}
.sobre-section::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(26,108,245,0.10) 0%, transparent 70%);
}

/* Estrelas decorativas */
.sobre-star {
  position: absolute;
  font-size: 36px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
  animation: spinStar 8s infinite linear;
}
.sobre-star--tl { color: #1a6cf5; top: 60px;  left: 40px; }
.sobre-star--br { color: #1a6cf5; bottom: 50px; right: 40px; animation-direction: reverse; }

/* ---- Layout desktop 2 colunas ---- */
.sobre-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* ---- Coluna texto ---- */
.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contador-box {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.sobre-title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: #0d0d18;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sobre-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

/* Stats */
.sobre-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.sobre-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sobre-stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,108,245,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sobre-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0d0d18;
  line-height: 1.1;
}



.sobre-stat span {
  font-size: 13px;
  color: #6b7a99;
}

.mais{
  color: #000000;
  font-weight: 700;
  font-size: 15px;
}

/* ---- Coluna cards ---- */
.sobre-cards-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Track: os 3 cards lado a lado, card do meio maior */
.sobre-cards-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.sobre-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.5s ease;
  flex-shrink: 0;
  /* cards laterais */
  width: 28%;
  opacity: 0.78;
  transform: scale(0.88) translateY(20px);
}

/* Card central: maior e em destaque */
.sobre-card--center {
  width: 38%;
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 20px 56px rgba(26,108,245,0.22);
  z-index: 2;
}

.sobre-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ---- Animação automática: alterna qual card é o "centro" ---- */
/* Estado 0: card 0 no centro */
.sobre-cards-track.state-0 .sobre-card:nth-child(1) {
  width: 38%; opacity: 1; transform: scale(1) translateY(0);
  box-shadow: 0 20px 56px rgba(26,108,245,0.22); z-index: 2;
}
.sobre-cards-track.state-0 .sobre-card:nth-child(2),
.sobre-cards-track.state-0 .sobre-card:nth-child(3) {
  width: 28%; opacity: 0.78; transform: scale(0.88) translateY(20px); z-index: 1;
}

/* Estado 1: card 1 no centro (default via --center class) */
.sobre-cards-track.state-1 .sobre-card--center,
.sobre-cards-track:not([class*="state"]) .sobre-card--center {
  width: 38%; opacity: 1; transform: scale(1) translateY(0);
  box-shadow: 0 20px 56px rgba(26,108,245,0.22); z-index: 2;
}
.sobre-cards-track.state-1 .sobre-card:not(.sobre-card--center) {
  width: 28%; opacity: 0.78; transform: scale(0.88) translateY(20px); z-index: 1;
}

/* Estado 2: card 2 no centro */
.sobre-cards-track.state-2 .sobre-card:nth-child(3) {
  width: 38%; opacity: 1; transform: scale(1) translateY(0);
  box-shadow: 0 20px 56px rgba(26,108,245,0.22); z-index: 2;
}
.sobre-cards-track.state-2 .sobre-card:nth-child(1),
.sobre-cards-track.state-2 .sobre-card:nth-child(2) {
  width: 28%; opacity: 0.78; transform: scale(0.88) translateY(20px); z-index: 1;
}

/* Dots */
.sobre-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sobre-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c5d4f0;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}

.sobre-dot.active {
  background: #1a6cf5;
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   SOBRE — BREAKPOINTS
   ============================================================ */

@media (max-width: 1100px) {
  .sobre-layout { gap: 40px; }
  .sobre-card   { width: 30%; }
  .sobre-card--center { width: 36%; }
}

@media (max-width: 1024px) {
  /* Mobile/Tablet: layout coluna única, texto em cima, carrossel slide-style embaixo */
  .sobre-section { padding: 100px 0 90px; }

  .sobre-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-content {
    text-align: center;
    align-items: center;
  }

  .sobre-desc { max-width: 100%; }

  .sobre-stats { justify-content: center; gap: 32px; }

  /* No mobile: carrossel de slide único — apenas 1 card visível por vez */
  .sobre-cards-wrap {
    overflow: hidden;
    width: 100%;
  }

  .sobre-cards-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 300%;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
  }

  /* cada card ocupa 1/3 da track = 100% da tela visível */
  .sobre-card,
  .sobre-card--center {
    min-width: calc(100% / 3);
    width: calc(100% / 3);
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
    z-index: 1 !important;
    border-radius: 16px;
    overflow: hidden;
  }

  /* imagem ocupa o card todo, altura proporcional */
  .sobre-card img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block;
  }

  /* Sobrescreve TODOS os estados de animação desktop no mobile */
  .sobre-cards-track.state-0 .sobre-card,
  .sobre-cards-track.state-0 .sobre-card--center,
  .sobre-cards-track.state-1 .sobre-card,
  .sobre-cards-track.state-1 .sobre-card--center,
  .sobre-cards-track.state-2 .sobre-card,
  .sobre-cards-track.state-2 .sobre-card--center,
  .sobre-cards-track:not([class*="state"]) .sobre-card {
    min-width: calc(100% / 3) !important;
    width: calc(100% / 3) !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
    z-index: 1 !important;
  }

  .sobre-star--tl { font-size: 24px; top: 24px; left: 16px; }
  .sobre-star--br { font-size: 24px; bottom: 24px; right: 16px; }
}

@media (max-width: 480px) {
  .sobre-title { font-size: 26px; }
  .sobre-stat strong { font-size: 20px; }
}
/* ============================================================
   MÉTODOS DE PAGAMENTO
   ============================================================ */
.pagamento-section {
  position: relative;
  background: linear-gradient(160deg, #dce8ff 0%, #eaf1ff 40%, #c8dbff 100%);
  padding: 160px 0 160px;
  overflow: hidden;
}

.pag-star--tr {
  position: absolute;
  top: 48px; right: 60px;
  font-size: 40px;
  color: #1a6cf5;
  opacity: 0.85;
  animation: spinStar 5s infinite linear;
  pointer-events: none;
}

.pag-header {
  text-align: center;
  margin-bottom: 64px;
}

.pag-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #0d0d18;
  line-height: 1.1;
  margin-bottom: 14px;
}

.pag-blue { color: #1a3faa; }

.pag-sub {
  font-size: 16px;
  color: #4a5568;
}

/* Grid 4 cards */
.pag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card base */
.pag-card {
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 340px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.pag-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: -1;
}

.pag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,108,245,0.18);
}

.pag-card--light     { background: #f0f5ff; }
.pag-card--blue-light { background: #d8e8ff; }
.pag-card--blue-mid  { background: #a8c8ff; }
.pag-card--blue-dark { background: #1a6cf5; }

/* Ícone */
.pag-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.pag-icon--pix     { background: rgba(255,255,255,0.85); }
.pag-icon--card    { background: #fff; }
.pag-icon--transfer { background: #fff; }
.pag-icon--wallet  { background: rgba(255,255,255,0.95); }

.pag-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d0d18;
  margin-bottom: 10px;
  line-height: 1.2;
}

.pag-card-title--white { color: #0d0d18; }

.pag-card-desc {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.6;
  flex-grow: 1;
}

.pag-card-desc--light { color: rgba(0,0,0,0.6); }

.pag-card-img {
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pag-card-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 0 14px 14px;
}

/* ============================================================
   CARTÕES CREDIAVI
   ============================================================ */
.cartoes-section {
  position: relative;
  background: #080814;
  padding: 160px 0 160px;
  overflow: hidden;
}

/* Glow de fundo */
.cartoes-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: -100px; bottom: -100px;
  background: radial-gradient(circle, rgba(26,108,245,0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cartoes-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  right: -60px; top: 50px;
  background: radial-gradient(circle, rgba(26,108,245,0.10) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cartoes-star {
  position: absolute;
  font-size: 36px;
  color: #1a6cf5;
  opacity: 0.85;
  pointer-events: none;
  animation: spinStar 6s infinite linear;
}
.cartoes-star--tl { top: 80px; left: 220px; }
.cartoes-star--tr { top: 60px; right: 60px; animation-direction: reverse; font-size: 30px; }

.cartoes-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.cartoes-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cartoes-blue { color: #5599ff; }

.cartoes-star-inline {
  font-size: 32px;
  color: #1a6cf5;
  animation: spinStar 4s infinite linear;
  display: inline-block;
}

.cartoes-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Layout: imagem esquerda + cards direita */
.cartoes-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.cartoes-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartoes-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(26,108,245,0.3));
}

/* Info cards */
.cartoes-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cartoes-info-card {
  background: linear-gradient(160deg, #1a2540 0%, #0f1a38 60%, #1a3fa8 100%);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(26,108,245,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cartoes-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,108,245,0.25);
}

.cartoes-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cartoes-info-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.cartoes-info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cartoes-info-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
}
.cartoes-info-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #5599ff;
}

/* ============================================================
   ESPECIALISTAS
   ============================================================ */
.especialistas-section {
  position: relative;
  background: #060612;
  padding: 160px 0 160px;
  overflow: hidden;
}

.especialistas-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -150px; top: -100px;
  background: radial-gradient(circle, rgba(26,108,245,0.10) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.esp-star--tl {
  position: absolute;
  top: 50px; left: 60px;
  font-size: 32px;
  color: #1a6cf5;
  opacity: 0.85;
  animation: spinStar 7s infinite linear;
  pointer-events: none;
}

/* Header 2 colunas */
.esp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.esp-title {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.esp-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Grid 3 colunas */
.esp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.esp-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Text cards */
.esp-card {
  background: linear-gradient(160deg, #121830 0%, #0d1530 50%, #1a3fa8 100%);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(26,108,245,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.esp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,108,245,0.2);
}

.esp-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.esp-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Centro: cartão visual */
.esp-col--center {
  align-items: center;
}

.esp-card-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg, #0d1a50 0%, #1540b8 100%);
  border-radius: 24px;
  padding: 40px 28px 36px;
  border: 1px solid rgba(26,108,245,0.25);
  width: 100%;
}

.esp-card-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.esp-card-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.esp-btn {
  padding: 14px 52px;
  font-size: 15px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.esp-btn:hover {
  background: #1a6cf5;
  border-color: #1a6cf5;
}

/* ============================================================
   RESPONSIVIDADE — PAGAMENTO
   ============================================================ */
@media (max-width: 1100px) {
  .pag-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet: 2 colunas com cards mais altos para imagens não ficarem cortadas */
@media (min-width: 641px) and (max-width: 900px) {
  .pag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pag-card {
    min-height: 420px;
    flex-direction: column;
    padding: 24px 20px 0;
  }
  .pag-card-img {
    margin-top: auto;
    padding-top: 16px;
  }
  .pag-card-img img,
  .pag-card--blue-dark .pag-card-img img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 640px) {
  .pagamento-section { padding: 100px 0 100px; }
  .pag-header { margin-bottom: 40px; }
  .pag-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pag-card {
    min-height: unset;
    padding: 24px 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
  }
  .pag-card-icon { margin-bottom: 0; margin-right: 14px; width: 44px; height: 44px; flex-shrink: 0; }
  .pag-card-title { font-size: 16px; align-self: center; margin-bottom: 0; }
  /* Desc e imagem em baixo, largura total */
  .pag-card-desc {
    width: 100%;
    flex-grow: 0;
    font-size: 13px;
    margin-top: 14px;
  }
  .pag-card-img {
    width: 100%;
    margin-top: 16px;
    padding-top: 0;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
  }
  /* todas as imagens contidas no mobile */
  .pag-card-img img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* gráfico carteiras digitais — mostra a imagem inteira */
  .pag-card--blue-dark .pag-card-img img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 0 14px 14px !important;
  }
  .pag-star--tr { font-size: 26px; top: 20px; right: 20px; }
}

/* mobile único já coberto acima */

/* ============================================================
   RESPONSIVIDADE — CARTÕES
   ============================================================ */
@media (max-width: 1100px) {
  .cartoes-layout { gap: 40px; }
  .cartoes-info   { gap: 16px; }
}

@media (max-width: 900px) {
  .cartoes-section { padding: 100px 0 100px; }
  .cartoes-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cartoes-img-wrap { order: 1; }
  .cartoes-info     { order: 2; }
  .cartoes-img { max-width: 320px; }
  .cartoes-star--tl { left: 20px; top: 60px; }
}

@media (max-width: 600px) {
  .cartoes-info { grid-template-columns: 1fr; }
  .cartoes-title { font-size: clamp(26px, 8vw, 38px); }
  .cartoes-info-card { padding: 24px 20px; }
}

/* ============================================================
   RESPONSIVIDADE — ESPECIALISTAS
   ============================================================ */
@media (max-width: 1100px) {
  .esp-header { gap: 40px; }
  .esp-grid   { gap: 16px; }
}

@media (max-width: 900px) {
  .especialistas-section { padding: 100px 0 100px; }
  .esp-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .esp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .esp-col { gap: 16px; }
  .esp-col--center { order: -1; }
  .esp-card-visual { max-width: 360px; margin: 0 auto; width: 100%; }
  .esp-title { font-size: clamp(26px, 7vw, 38px); }
  .esp-star--tl { font-size: 22px; top: 24px; left: 20px; }
}

@media (max-width: 480px) {
  .esp-card { padding: 22px 18px; }
  .esp-card-visual { padding: 24px 16px 24px; }
}

/* === Ajustes específicos por card de pagamento === */

/* PIX — maquininha com fundo transparente */
.pag-card--light .pag-card-img img {
  max-width: 200px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}

/* Crédito/Débito — cartão photo, ocupa bem o espaço */
.pag-card--blue-light .pag-card-img img {
  max-width: 100%;
  border-radius: 0 0 18px 18px;
  object-fit: cover;
  height: 160px;
}

/* Transferências — app mobile centralizado */
.pag-card--blue-mid .pag-card-img img {
  max-width: 200px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Carteiras digitais — gráfico ocupa largura total */
.pag-card--blue-dark .pag-card-img {
  padding-top: 8px;
}
.pag-card--blue-dark .pag-card-img img {
  max-width: 100%;
  border-radius: 0 0 18px 18px;
  height: 160px;
  object-fit: cover;
  object-position: center bottom;
}

/* === Correção: imagens sem fundo não devem ter height fixo ou object-fit cover === */
.pag-card--blue-light .pag-card-img img,
.pag-card--blue-mid .pag-card-img img {
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  max-width: 220px;
}

.pag-card--light .pag-card-img img {
  height: auto !important;
  object-fit: contain !important;
  max-width: 210px;
}

/* ============================================================
   APP DOWNLOAD
   ============================================================ */
.app-section {
  position: relative;
  background: linear-gradient(160deg, #dce8ff 0%, #eaf1ff 40%, #c5d9ff 100%);
  padding: 160px 0 0;
  overflow: hidden;
  min-height: 680px;
}

.app-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.app-glow--left {
  width: 600px; height: 600px;
  left: -120px; top: -80px;
  background: radial-gradient(circle, #a8c8ff 0%, transparent 70%);
}
.app-glow--right {
  width: 500px; height: 500px;
  right: 100px; bottom: -60px;
  background: radial-gradient(circle, #c0d8ff 0%, transparent 70%);
}

.app-star--bl {
  position: absolute;
  bottom: 120px; left: 60px;
  font-size: 40px;
  color: #1a6cf5;
  animation: spinStar 6s infinite linear;
  pointer-events: none;
}

/* Layout */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  min-height: 560px;
}

/* Conteúdo texto */
.app-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.app-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #0d0d18;
  line-height: 1.15;
  margin-bottom: 24px;
}

.app-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
}

.app-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d0d18;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.app-btn:hover {
  background: #1a6cf5;
  transform: translateY(-2px);
}

/* ---- Celulares ---- */
.app-phones {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.app-phone {
  position: absolute;
  top: 40%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(26,108,245,0.25));
}

/* posições iniciais (fora de cena) */
.app-phone--left {
  width: 210px;
  left: 0;
  transform: translateY(-50%) translateX(-60px) rotate(-8deg);
  opacity: 0;
  z-index: 1;
}

.app-phone--center {
  width: 245px;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  opacity: 0;
  z-index: 3;
}

.app-phone--right {
  width: 210px;
  right: 0;
  transform: translateY(-50%) translateX(60px) rotate(8deg);
  opacity: 0;
  z-index: 1;
}

/* Estado animado — quando a seção entra na viewport */
.app-phones.in-view .app-phone--left {
  transform: translateY(-50%) translateX(0) rotate(-8deg);
  opacity: 1;
  transition-delay: 0.1s;
}

.app-phones.in-view .app-phone--center {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  transition-delay: 0.25s;
}

.app-phones.in-view .app-phone--right {
  transform: translateY(-50%) translateX(0) rotate(8deg);
  opacity: 1;
  transition-delay: 0.4s;
}

/* ---- Responsividade ---- */
@media (max-width: 900px) {
  .app-section { padding: 100px 0 0; }

  .app-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .app-content {
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .app-title { text-align: center; }
  .app-desc  { text-align: center; }
  .app-btns  { justify-content: center; }

  .app-phones {
    height: 420px;
    width: 100%;
    margin-top: 56px;
  }

  .app-phone--left {
    width: 150px;
    left: 50%;
    margin-left: -220px;
  }
  .app-phone--center {
    width: 180px;
    left: 50%;
  }
  .app-phone--right {
    width: 150px;
    right: auto;
    left: 50%;
    margin-left: 70px;
  }

  .app-phones.in-view .app-phone--left {
    transform: translateY(-50%) translateX(0) rotate(-8deg);
  }
  .app-phones.in-view .app-phone--right {
    transform: translateY(-50%) translateX(0) rotate(8deg);
  }
}

@media (max-width: 520px) {
  .app-phones {
    height: 320px;
    margin-top: 48px;
  }
  .app-phone--left  { width: 105px; margin-left: -160px; }
  .app-phone--center { width: 130px; }
  .app-phone--right  { width: 105px; margin-left: 50px; }
  .app-btns { gap: 12px; }
  .app-btn  { padding: 14px 24px; font-size: 14px; }
  .app-star--bl { font-size: 26px; bottom: 60px; left: 20px; }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato-section {
  position: relative;
  background: #060612;
  padding: 160px 0 160px;
  overflow: hidden;
}

.contato-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contato-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
.contato-glow--left {
  width: 600px; height: 600px;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #1a6cf5 0%, transparent 70%);
}
.contato-glow--right {
  width: 500px; height: 500px;
  right: -150px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #1a6cf5 0%, transparent 70%);
}

.contato-star--tr {
  position: absolute;
  top: 48px; right: 60px;
  font-size: 32px;
  color: #1a6cf5;
  animation: spinStar 6s infinite linear;
  pointer-events: none;
}

.contato-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.1;
}

.contato-blue { color: #5599ff; }

/* Card principal */
.contato-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.contato-lead {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 32px;
}

/* Formulário */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

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

.form-input:focus,
.form-textarea:focus {
  border-color: #1a6cf5;
  background: rgba(26,108,245,0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a6cf5;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
  margin-top: 4px;
}

.btn-enviar:hover {
  background: #1558d0;
  transform: translateY(-1px);
}

/* Logo lateral */
.contato-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  /* Remove fundo preto da logo via mix-blend-mode */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  position: relative;
  background: #060612;
  padding: 0 0 60px;
  overflow: hidden;
}

.footer-bg { position: absolute; inset: 0; pointer-events: none; }
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.footer-glow--left {
  width: 400px; height: 300px;
  left: 0; top: 50%;
  background: #1a6cf5;
}
.footer-glow--right {
  width: 400px; height: 300px;
  right: 0; top: 50%;
  background: #1a6cf5;
}

/* Info bar */
.footer-info-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-info-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-info-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info-value:hover { color: #5599ff; }

.footer-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

/* ============================================================
   RESPONSIVIDADE — CONTATO
   ============================================================ */
@media (max-width: 900px) {
  .contato-section { padding: 100px 0 100px; }

  .contato-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 28px;
  }

  .contato-logo-wrap { order: -1; }
  .contato-logo { max-width: 200px; }
  .contato-lead { font-size: 17px; margin-bottom: 24px; }
  .contato-star--tr { font-size: 22px; top: 20px; right: 20px; }
}

@media (max-width: 520px) {
  .contato-title { margin-bottom: 36px; }
  .contato-card { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVIDADE — FOOTER
   ============================================================ */
@media (max-width: 900px) {
  .footer-info-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .footer-divider {
    width: 100%;
    height: 1px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .footer-info-item { gap: 14px; }
  .footer-info-icon { width: 40px; height: 40px; }
  .footer-info-value { font-size: 13px; }
  .footer-links { flex-wrap: wrap; gap: 8px; }
}
/* Wave wrapper — clipa apenas a onda, não a mão */
.hero-wave-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   HERO — EFEITOS EXTRAS
   ============================================================ */

/* Orbs flutuantes */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s infinite ease-in-out alternate;
}
.hero-orb--1 {
  width: 300px; height: 300px;
  top: -80px; left: 5%;
  background: radial-gradient(circle, rgba(26,108,245,0.18) 0%, transparent 70%);
  animation-duration: 9s;
}
.hero-orb--2 {
  width: 200px; height: 200px;
  top: 40%; left: 25%;
  background: radial-gradient(circle, rgba(26,108,245,0.12) 0%, transparent 70%);
  animation-duration: 7s;
  animation-delay: 1s;
}
.hero-orb--3 {
  width: 250px; height: 250px;
  bottom: 0; left: 40%;
  background: radial-gradient(circle, rgba(100,160,255,0.10) 0%, transparent 70%);
  animation-duration: 11s;
  animation-delay: 2s;
}

@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.1); }
}

/* Circuito SVG */
.hero-circuit {
  position: absolute;
  top: 10%; left: 0;
  width: 340px; height: 260px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.circuit-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCircuit 3s ease forwards infinite;
}

@keyframes drawCircuit {
  0%   { stroke-dashoffset: 300; opacity: 0; }
  20%  { opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 0.6; }
  100% { stroke-dashoffset: 300; opacity: 0; }
}

/* Badge "ao vivo" */
.hero-badge {
  position: absolute;
  top: 100px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,108,245,0.12);
  border: 1px solid rgba(26,108,245,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  z-index: 3;
  pointer-events: none;
  animation: badgePulse 3s infinite ease-in-out;
  white-space: nowrap;
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1a6cf5;
  box-shadow: 0 0 0 0 rgba(26,108,245,0.6);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(26,108,245,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(26,108,245,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,108,245,0); }
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(26,108,245,0.35); box-shadow: none; }
  50%       { border-color: rgba(26,108,245,0.7); box-shadow: 0 0 16px rgba(26,108,245,0.2); }
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-item strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Animação de entrada do conteúdo */
.hero-content h1 {
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-content .btn-primary {
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

/* Mobile — esconde badge e circuito */
@media (max-width: 900px) {
  .hero-badge   { display: none; }
  .hero-circuit { display: none; }
  .hero-stats-row { gap: 16px; justify-content: center; }
  .hero-stat-item strong { font-size: 18px; }
}

/* ============================================================
   SOBRE — GRID ESTÁTICO MOBILE/TABLET (igual ao Synox)
   ============================================================ */

.sobre-mobile-grid { display: none; }

@media (max-width: 1024px) {
  .sobre-cards-track { display: none !important; }
  .sobre-dots        { display: none !important; }

  .sobre-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall top"
      "tall bot";
    gap: 10px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .sobre-mobile-card--tall   { grid-area: tall; }
  .sobre-mobile-card:nth-child(2) { grid-area: top; }
  .sobre-mobile-card--wide   { grid-area: bot; }

  .sobre-mobile-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    aspect-ratio: unset;
  }

  /* Card esquerdo: alto — altura das 2 da direita somadas + gap */
  .sobre-mobile-card--tall {
    height: 100%;
    min-height: 360px;
  }

  /* Cards direita: metade da altura do esquerdo cada */
  .sobre-mobile-card:nth-child(2),
  .sobre-mobile-card--wide {
    height: 175px;
  }

  .sobre-mobile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

@media (max-width: 480px) {
  .sobre-mobile-grid {
    max-width: 100%;
    gap: 8px;
  }
  .sobre-mobile-card--tall         { min-height: 290px; }
  .sobre-mobile-card:nth-child(2),
  .sobre-mobile-card--wide          { height: 141px; }
}

/* ============================================================
   FORMULÁRIO — FEEDBACK WEB3FORMS
   ============================================================ */
.form-success,
.form-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
  animation: fadeInUp 0.4s ease both;
}

.form-success h3,
.form-error h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.form-success p,
.form-error p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.form-success-icon svg circle { stroke: #22c55e; }
.form-success-icon svg path  { stroke: #22c55e; }

/* Botão loading */
.btn-enviar.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-enviar.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* PIX Recorrente — fundo já transparente */
.pag-card--blue-light .pag-card-img img {
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(26,108,245,0.15));
}

/* Ícone PIX Recorrente */
.pag-icon--pix-rec { background: rgba(255,255,255,0.9); }