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

body {
  background: linear-gradient(180deg, #f7f9fb 0%, #eef2f7 100%);
  color: #0f172a;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.logo {
  max-width: 260px;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}

.buttons {
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px;
  transition: 0.2s;
}

.btn-whatsapp {
  background: #22c55e;
  color: white;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.btn-lang {
  border: 2px solid #22c55e;
  color: #16a34a;
}

.btn-lang:hover {
  background: #dcfce7;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h2 {
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
}

.card li {
  font-size: 18px;
  margin: 10px 0;
}
.pricing {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.plan {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.plan h3 {
  font-size: 24px;
}

.plan .price {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
  color: #16a34a;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan ul li {
  margin: 10px 0;
}

.plan.featured {
  border: 3px solid #22c55e;
  transform: scale(1.05);
}
/* ===== PLANS ===== */
.pricing {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.plan {
  background: white;
  border-radius: 18px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.2s;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan h3 {
  font-size: 26px;
}

.plan .price {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
  color: #16a34a;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan ul li {
  margin: 10px 0;
}

.plan.featured {
  border: 3px solid #22c55e;
  transform: scale(1.05);
}
.pricing {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.plan {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.plan.featured {
  border: 3px solid #22c55e;
  transform: scale(1.05);
}
/* FORÇAR GRID DOS PLANOS */
.pricing {
  display: flex !important;
  gap: 30px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.plan {
  background: white !important;
  border-radius: 16px !important;
  padding: 30px !important;
  width: 280px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  text-align: center !important;
}
