body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 40px;
}

.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg,#f7f9fc,#ffffff);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: #0f172a;
  color: #fff;
  padding: 70px 0;
}

.center {
  text-align: center;
}

.tags span {
  display: inline-block;
  background: #f1f5f9;
  padding: 8px 14px;
  margin: 6px;
  border-radius: 20px;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.highlight {
  border: 2px solid #2563eb;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.steps {
  max-width: 600px;
  margin: auto;
  line-height: 2;
}

.final {
  text-align: center;
}

.footer {
  text-align: center;
  padding: 30px;
  background: #0f172a;
  color: white;
}

/* BOTÕES */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-ghost {
  color: #2563eb;
}


.whatsapp-float{
  position:fixed;
  width:58px;
  height:58px;
  bottom:22px;
  right:22px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  z-index:9999;
  transition:.3s ease;
}

.whatsapp-float img{
  width:30px;
  height:30px;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}


@media(max-width:600px){
  .whatsapp-float{
    width:52px;
    height:52px;
    bottom:18px;
    right:18px;
  }
}


/* =========================
   CRIAÇÃO DE SITES - FLUSIM
========================= */

.site-service {
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-content h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.service-content .lead {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-benefits li {
  margin-bottom: 10px;
  font-size: 16px;
}

.service-video .embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.service-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    text-align: center;
  }
}
