body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.header {
  background: linear-gradient(to right, #6a8eb7, #a4c3d6);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn-principal {
  display: inline-block;
  padding: 14px 30px;
  background-color: #1d3557;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn-principal:hover {
  background-color: #457b9d;
}

.timer {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ffebcd;
}

.story img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  margin-top: 20px;
}

.hero {
  background: linear-gradient(to bottom right, #f8f8f8, #eaeaea);
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.text {
  flex: 1 1 400px;
}

.text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.btn-comprar {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-comprar:hover {
  background-color: #0056b3;
}

.mockup-container {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.mockup-img:hover {
  transform: scale(1.03);
}


.beneficios ul {
  list-style: none;
  padding: 0;
}

.beneficios li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.depoimentos .cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.depoimentos .card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cta-final {
  background: #f1f5f9;
  text-align: center;
  padding: 60px 20px;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-final p {
  font-size: 1.2rem;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #1d3557;
  color: white;
}
