* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
}

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

/* Header */
header {
    background: #0a2540;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    margin-top: 10px;
    font-size: 1.1rem;
}

.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services .subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.service-icon {
  font-size: 42px;
  color: #2e8b57;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-service {
  display: inline-block;
  padding: 10px 18px;
  background: #2e8b57;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.btn-service:hover {
  background: #256f47;
}


/* Destaque */
.destaque {
    border: 2px solid #0a2540;
}

/* CTA */
.cta {
    background: #0a2540;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #00c853;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #081c33;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 26px;

    background-color: #25D366;
    color: #ffffff;

    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;

    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);

    transition: all 0.25s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.45);
}

.testimonials {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.testimonial-icon {
  font-size: 4rem;
  color: #2e8b57;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin: 15px 0 25px;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #666;
}


/* Mensalidade */
.mensalidade {
    background: #f0f4f8;
    padding: 70px 0;
    text-align: center;
}

.mensalidade h2 {
    margin-bottom: 15px;
}

.mensalidade-desc {
    max-width: 700px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

.mensalidade-vantagens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.vantagem {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
