/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo base */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;

}

.logo img {
  height: 70px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: large;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #007bff;
}

.btn-header-link {
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-header-link:hover {
  background: #f5faff;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1d1d1d;
}


#typing {
  color: #007bff;
  z-index: 1;
}

#typing::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.hero p {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #555;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: large;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn-secondary:hover {
  background: #007bff;
  color: #fff;
}

/* SERVICES */
.services {
  padding: 100px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: stretch; 
}

.service-card {
  background: #fff;
  height: 100%;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  justify-content: space-between; 
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card i {
  color: #007bff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}


.services-grid a {
  text-decoration: none; /* Remove sublinhado */
  color: inherit;         /* Mantém a cor original do texto */
  display: block;         /* Faz o link agir como um bloco */
}

.services-grid a:hover {
  color: inherit; /* Garante que no hover não mude de cor */
}


/* CLIENTES */
.clients {
  padding: 80px 20px;
  text-align: center;
}

.clients h2 {
  font-size: 2rem;
  color: #333;
}

.clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.clients-logos img {
  height: 60px;
  transition: transform 0.3s ease;
}

.clients-logos img:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #f5f5f5;
  padding: 40px 20px;
  font-size: 0.95rem;
  color: #333;
  margin-top: 80px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-contact, .footer-social, .footer-logo {
  flex: 1 1 250px;
}

.footer-contact h4, .footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-contact p, .footer-social a {
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-social a {
  font-size: 1.2rem;
  color: #007bff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #0056b3;
}

.menu-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 8888;
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #007bff;
}

#typing.hidden {
  color: transparent;
}


/* Responsividade extra */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services {
    padding: 60px 20px;
  }
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 107px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .nav.active {
    display: flex;
  }
  .hero h1 {
    height: 160px;
    overflow: hidden;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact, .footer-social, .footer-logo {
    align-items: center;
  }

  .footer-contact,
  .footer-social,
  .footer-logo {
    flex: 0 1 135px;
  }


}
/* PREMIUM GESTÃO */
.premium-gestao {
  padding: 100px 20px;
  background: #f9f9f9;
  text-align: center;
}

.premium-gestao h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.premium-gestao h2 span {
  color: #007bff;
}

.premium-gestao .subtitle {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 1.1rem;
}

/* INTRO */
.intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* VIDEO (mantém seu estilo mobile 👇) */
.video-box {
  max-width: 320px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.video-box:hover {
  transform: translateY(-5px) scale(1.02);
}

.video-box iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
}

/* BENEFÍCIOS EM GRID (igual services) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.benefit-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
}

/* PREÇOS */
.pricing {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.price-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.destaque {
  background: #007bff;
  color: #fff;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
}

.price span {
  font-size: 0.9rem;
}

/* CTA */
.cta {
  margin-top: 30px;
}

.cta p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.btn-premium {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  background: #0056b3;
  transform: translateY(-2px);
}


/* ===== BENEFÍCIOS PREMIUM ===== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.benefit-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #007bff;
  opacity: 0;
  transition: 0.3s;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 123, 255, 0.1);
  color: #007bff;

  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 18px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1d1d1d;
}

.benefit-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
}

/* ===== PREÇOS PREMIUM ===== */

.pricing {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 50px 0;
}

.price-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  width: 240px;

  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: all 0.3s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 123, 255, 0.1);
  color: #007bff;

  border-radius: 12px;
  font-size: 18px;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}

.price-card .price span {
  font-size: 0.9rem;
  color: #666;
}

.price-card .desc {
  font-size: 0.9rem;
  color: #666;
}

/* destaque premium */
.price-card.destaque {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  transform: scale(1.05);
}

.price-card.destaque .icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.price-card.destaque .price span,
.price-card.destaque .desc {
  color: rgba(255,255,255,0.85);
}



 /*teste*/
 
 .demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.demo-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.demo-text h3 {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}