/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gray-300);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-decoration: none;
  font-family: var(--font-titles);
  letter-spacing: -0.025em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
  font-size: 0.875rem;
  overflow: hidden;
  transition: color .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-blue);
  cursor: pointer;
  padding: .5rem;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: floatPattern 25s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/neural-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .22;
  z-index: 1;
  animation: neuralGlow 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) .3s forwards;
}

.hero-title .highlight {
  color: #FF7A29;
}

.hero-subtitle {
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) .6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--primary-blue);
  padding: .875rem 1.75rem;
  border-radius: 10px;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(255, 255, 255, .25);
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) .9s forwards;
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, .35);
  background: var(--gray-50);
}

.hero-copy {
  z-index: 100;
}


@keyframes floatPattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-60px, -60px);
  }
}

@keyframes neuralGlow {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: .7;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BENEFÍCIOS */
.benefits {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-blue);
  border-color: var(--light-blue);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--lighter-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary-blue);
  border: 2px solid var(--light-blue);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-family: var(--font-titles);
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* GARANTIAS */
.social-proof {
  background: var(--white);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 1.75rem 1.25rem;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-blue);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.guarantee-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: .75rem;
  display: block;
  letter-spacing: .02em;
  font-family: var(--font-titles);
}

.guarantee-text {
  font-size: .9375rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* PLANOS */
.pricing {
  background: var(--lighter-blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
  position: relative;
  text-align: center;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary-blue);
}

.pricing-card.popular {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: .4rem 1.25rem;
  border-radius: 18px;
  font-weight: 600;
  font-size: .8125rem;
  box-shadow: var(--shadow-blue);
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: .75rem 0;
  font-family: var(--font-primary);
}

.price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 1.25rem 0;
  font-family: var(--font-primary);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
  flex-grow: 1;
}

.features-list li {
  padding: .35rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-700);
  font-size: .75rem;
  line-height: 1.3;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 900;
  font-size: .9375rem;
}

.pricing-cta {
  width: 100%;
  background: var(--primary-blue);
  color: var(--white);
  padding: .625rem .875rem;
  border: none;
  border-radius: 8px;
  font-size: .8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-blue);
}

.pricing-cta:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, .3);
}

/* FOOTER */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: .9375rem;
}

/* MODAL */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transform: scale(.8) translateY(20px);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  border: 2px solid var(--primary-blue);
}

.promo-modal-overlay.active .promo-modal {
  transform: scale(1) translateY(0);
}

.promo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s ease;
}

.promo-modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.promo-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.promo-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-family: var(--font-titles);
}

.promo-modal-subtitle {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promo-modal-highlight {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.promo-modal-highlight .highlight-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
  font-family: var(--font-titles);
}

.promo-modal-highlight .highlight-text {
  font-size: .9375rem;
  opacity: .95;
}

.promo-modal-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.promo-modal-benefits li {
  padding: .5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--gray-700);
  font-size: .9375rem;
}

.promo-modal-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.promo-modal-cta {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(30, 58, 138, .3);
}

.promo-modal-cta:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, .4);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--light-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, .05);
}

.faq-question::after {
  content: '+';
  font-size: 1.375rem;
  color: var(--primary-blue);
  transition: transform .3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
  padding: 1rem 1.5rem 2rem;
  max-height: 250px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: .9375rem;
}

/* VOLTAR AO TOPO */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: .2;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(30, 58, 138, .3);
  z-index: 1000;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, .4);
}

/* Notificação promocional simplificada */
.promo-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--primary-blue);
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícone SVG centralizado */
.promo-notification .promo-icon {
  width: 26px;
  height: 26px;
  display: block;
}

/* Badge de notificação */
.promo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2px solid var(--white);
}


.promo-notification.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.promo-notification:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

.promo-notification .promo-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  display: block;
}

.promo-notification .promo-title {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .25rem;
  font-family: var(--font-titles);
}

.promo-notification .promo-text {
  font-size: .8125rem;
  opacity: .95;
  line-height: 1.4;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(255, 107, 107, .4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 12px 40px rgba(255, 107, 107, .6);
    transform: scale(1.02);
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}


/* Layout 2 colunas do hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 6vw, 64px);
  min-height: clamp(520px, 68vh, 760px);
}

.hero-copy {
  max-width: 760px
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center
}

/* Cartão/device principal */
.device-card {
  position: relative;
  width: min(480px, 92%);
  aspect-ratio: 1 / 1;
  /* card agora é quadrado como a imagem */
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.device-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Badges dos ícones */
.badge {
  position: absolute;
  z-index: 3;
  /* acima da foto e dos mini cards */
  width: 64px;
  height: 64px;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  /* não capturam cliques */
}

.badge img {
  width: 100%;
  height: 100%
}

.badge-wa {
  top: 15px;
  right: 25px;
}

.badge-cu {
  bottom: 20px;
  left: 12px;
}

.badge-ig {
  top: 18%;
  left: -22px;
  width: 56px;
  height: 56px;
  animation-delay: .9s
}

.badge-tg {
  bottom: 14%;
  right: -18px;
  width: 56px;
  height: 56px;
  animation-delay: 1.3s
}

/* Cartões flutuantes */
.floating-card {
  position: absolute;
  background: #fff;
  color: #0F172A;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: rise 7s ease-in-out infinite;
}

.fc-1 {
  top: 12px;
  left: 12px;
  animation-delay: .4s
}

.fc-2 {
  right: 12px;
  bottom: 12px;
  animation-delay: 1s
}

.fc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e
}

.fc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.fc-text strong {
  font-size: 14px
}

.fc-text span {
  font-size: 12px;
  opacity: .7
}

.fc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.fc-bubble {
  font-size: 12px;
  background: #f1f5f9;
  padding: 8px 10px;
  border-radius: 12px;
  max-width: 180px
}

/* Animações */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes rise {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* Respeitar usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {

  .badge,
  .floating-card {
    animation: none
  }
}

/* Responsivo */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-visual {
    order: -1
  }

  .device-card {
    width: min(420px, 100%)
  }
}