body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #2A364E;
}
.hero {
  background: linear-gradient(to right, #6F3D61 0%, #2A364E 100%);
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero-text {
  max-width: 550px;
  text-align: center;
}

.hero-text .logo {
  width: 120px;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text .subheadline {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e6e6e6;
}

.btn-primary {
  background-color: #fff;
  color: #6F3D61;
  font-weight: bold;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #f5e1c4;
  color: #2A364E;
}

.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder {
  width: 280px;
  height: 500px;
  background-color: #ccc;
  border-radius: 20px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: white;
  color: #6F3D61;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.mockup-placeholder {
  width: 300px;
  height: 500px;
  background-color: #ccc;
  border-radius: 20px;
  margin-top: 2rem;
}
.modules {
  padding: 3rem 2rem;
  text-align: center;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.module {
  padding: 1rem;
}
.img-placeholder.circle {
  width: 180px;
  height: 180px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Para imagens dentro do .img-placeholder.circle */
.img-placeholder.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Opcional: overlay escuro sutil */
.img-placeholder.circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.08); /* ajuste a opacidade se quiser mais/menos overlay */
  pointer-events: none;
}
.benefits {
  padding: 3rem 2rem;
  background-color: #f9f6f2;
  text-align: center;
}

.benefits-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #6F3D61;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: #2A364E;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.testimonials {
  padding: 2rem;
}
.testimonial {
  margin-bottom: 1.5rem;
  background-color: #f1f1f1;
  padding: 1rem;
  border-left: 4px solid #6F3D61;
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #2A364E;
  color: white;
}
