body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #1e1b2e 0%, #2c225b 100%);
  color: #f2f2f2;
}

.layout-center {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.app-name {
  color: #facc15; /* amarelo destaque */
  font-weight: 700;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background-color: rgba(30, 27, 46, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
}
.btn-login {
  padding: 0.5rem 1rem;
  background: transparent;
  color: #f2f2f2;
  border: 1px solid #a855f7;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: #a855f7;
  color: #fff;
}

.header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 12px #c084fc;
  opacity: 0.7;
  pointer-events: none;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 12px #c084fc;
  border-radius: 50%;
  opacity: 0.7;
}

img.logo {
  height: 36px;
  width: auto;
  display: block;
  margin-right: 0.2rem;
}

.nav {
  display: flex;
  gap: 0.05rem;
  align-items: center;
  font-size: 0.9rem;
  margin: 0 -1rem;
}

.nav a {
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  border-radius: 6px;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #c084fc;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: -2rem;
}

.hero-text {
  flex: 1 1 300px;
  max-width: 500px;
  margin-bottom: 0;
}

.hero h1 {
  font-size: 2.5rem;
  color: #c084fc;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
}

.hero-text, .hero-image {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.hero-text {
  animation-delay: 0.1s;
}
.hero-image {
  animation-delay: 0.3s;
}

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

.btn {
  background: linear-gradient(90deg, #a855f7, #9333ea);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background: linear-gradient(90deg, #9333ea, #a855f7);
  transform: scale(1.05);
  text-decoration: none;
}

.btn-hero {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #9333ea, #a855f7, #9333ea);
  background-size: 300% 100%;
  animation: pulseGradient 8s infinite linear;
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.35);
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
  text-decoration: none;
}



@keyframes pulseGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.destaque-fiado {
  background-color: #fefce8; /* tom amarelo suave para remeter a atenção/dinheiro */
  color: #333;
  border-radius: 16px;
  padding: 4rem 2rem;
  margin: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.destaque-fiado .feature-text h2 {
  color: #92400e; /* tom alaranjado/amarelo forte */
}

.destaque-estoque {
  background-color: #f8f8fa;
  color: #222;
  border-radius: 16px;
  padding: 4rem 2rem;
  margin: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.destaque-estoque .feature-text {
  flex: 1 1 350px;
  max-width: 480px;
}

.destaque-estoque .feature-img {
  flex: 1 1 500px;
  max-width: 700px;
}

.destaque-estoque .feature-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
}

.destaque-estoque .feature-text h2 {
  color: #111;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.destaque-estoque .feature-text p {
  color: #333;
  font-size: 1.1rem;
}

.h2-icon {
  width: 120px;
  height: 120px;
  vertical-align: middle;
  margin-right: 0.5rem;
  display: inline-block;
  margin-bottom: -1rem;
}

.btn-secundario {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: white;
  font-weight: bold;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  max-width: 260px;
  text-align: center;
}

.btn-secundario:hover {
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.5);
}

.feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.feature-text {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: left;
}

.feature-text h2 {
  font-size: 1.8rem;
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.feature-text p {
  color: #d1d5db;
  font-size: 1.1rem;
}

.feature-img {
  flex: 1 1 350px;
  max-width: 600px;
}

.feature-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.cta-mid {
  background: linear-gradient(90deg, #7e22ce, #a855f7);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  border-radius: 12px;
}

.cta-mid h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-mid .btn {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(253, 153, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-mid .btn:hover {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  transform: scale(1.05);
  text-decoration: none;
}
.highlight {
  color: #f59e0b; /* Cor amarela/laranja */
  font-weight: bold;
}
.benefits-list {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  text-align: center;
}

.benefits-list li {
  font-size: 1.1rem;
  color: #d1d5db;
  margin: 0.8rem 0;
}

.benefits-list li::before {
  content: "✔️";
  margin-right: 10px;
  color: #a855f7;
}

.cta-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(90deg, #7e22ce, #a855f7);
  border-radius: 12px;
}

.card-suspenso {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
}
.testimonials {
  background: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 1rem;
}

.testimonials h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.testimonials blockquote {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  color: #555555;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonials footer {
  margin-top: 1rem;
  font-weight: bold;
  color: #333333;
}

.plano-inicial {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 1rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plano-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #f9f5ff;
  border: 2px solid #c084fc;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(192, 132, 252, 0.2);
}

.plano-card h2 {
  color: #7e22ce;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.preco-card {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.preco-card .moeda {
  font-size: 1.5rem;
  color: #7c3aed;
  margin-right: 0.2rem;
}

.preco-card .valor {
  font-size: 3.5rem;
  color: #7c3aed;
  line-height: 1;
}

.preco-card .centavos {
  font-size: 1.2rem;
  color: #7c3aed;
  margin-left: 0.2rem;
}

.plano-card .mensagem {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 1rem 0 2rem;
}

.btn-plano {
  position: relative;
  background: linear-gradient(90deg, #9333ea, #a855f7);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.btn-plano::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #9333ea, #a855f7, #9333ea, #a855f7);
  background-size: 400% 400%;
  animation: borderShine 5s linear infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}

@keyframes borderShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-plano:hover {
  background: linear-gradient(90deg, #a855f7, #9333ea);
  transform: scale(1.05);
}

.texto-seguranca {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 1rem;
}

@keyframes pulsePreco {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Agora aplicamos a animação no valor */
.preco-card .valor {
  font-size: 3.5rem;
  color: #7c3aed;
  line-height: 1;
  animation: pulsePreco 2s infinite;
}

.cta-final {
  background: linear-gradient(90deg, #9333ea, #a855f7); /* Degradê roxo-vibrante */
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
  margin: 3rem 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #facc15; /* destaque amarelo */
  font-weight: bold;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f2f2f2;
}

.cta-final .btn {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(253, 186, 116, 0.4);
  transition: all 0.3s ease;
}

.cta-final .btn:hover {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  transform: scale(1.05);
}


.faq {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  margin: 2rem 1rem;
}

.faq h2 {
  text-align: center;
  color: #d8b4fe;
  margin-bottom: 2rem;
}

.faq details {
  max-width: 700px;
  margin: 1rem auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1rem;
  cursor: pointer;
  color: #f2f2f2;
}

.faq summary {
  font-weight: 600;
  color: #c084fc;
}

.footer {
  padding: 2rem;
  text-align: center;
  background-color: transparent;
  color: #d1d5db;
  font-size: 0.9rem;
}

.footer .social a {
  margin: 0 0.5rem;
  color: #d8b4fe;
  text-decoration: none;
  font-weight: 500;
}

.footer .social a:hover {
  color: #c084fc;
}

@media (max-width: 768px) {
  .layout-center {
    padding: 0 1rem;
    max-width: 90%;
  }

  .header {
  padding: 0.2rem 0.8rem;
  gap: 0.4rem;
}
  .hero, .feature {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .hero-text, .feature-text {
    max-width: 100%;
  }
  .h2-icon {
    width: 78px;
    height: 78px;
  }

  .destaque-fiado {
  flex-direction: column;
  text-align: center;
}

.destaque-fiado .feature-img {
  width: 100%;
  max-width: none;
  transform: scale(1);
  margin-bottom: 2rem;
}

.destaque-fiado .feature-img img {
  max-width: 90%;
  margin: 0 auto;
  display: block;
}
.destaque-fiado {
  padding-bottom: 2rem;
  width: 90%;
}
  .feature-img {
    width: 100%;
    max-width: none;
    transform: scale(1.2);
    margin-bottom: -10rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image img {
    margin-top: -2rem; /* Em vez de -3.5rem */
}
  .destaque-estoque {
    flex-direction: column;
    text-align: center;
  }
  .destaque-estoque,
  .destaque-estoque {
    max-width: 100%;
  }
  .feature {
    flex-direction: column;
    text-align: center;
  }
  .feature-img img {
    margin-bottom: 4rem; /* Em vez de 6rem */
}
  .feature-text {
    text-align: center;
  }
  .feature-text h2 {
    font-size: 1.5rem;
  }
  .cta-mid h2 {
    font-size: 1.5rem;
  }
  .boca {
    z-index: 1;
    margin-top: -10rem;
  }
  .btn-indicar{
    z-index: 99;
    margin-bottom: 1rem;
  }
  .btn-secundario {
    margin-top: 2rem;
  }
   .plano-inicial {
    margin: 2rem 1rem;
    padding: 2rem 1rem;
  }
  
  .plano-card {
    text-align: center;
    padding: 1.5rem;
  }

  .preco-card .valor {
    justify-content: center;
    font-size: 3rem;
  }

  .btn, .btn-hero, .btn-secundario, .btn-plano {
  padding: 1.2rem 2.2rem;
  font-size: 1.1rem;
}
.cta-final {
  padding: 3rem 1rem;
}

.cta-final h2 {
  font-size: 1.7rem;
}

.cta-final p {
  font-size: 1.1rem;
}
}

