/* Hero Section */
.hero {
  background-image: linear-gradient(135deg, #C25A3D, #dd7152 );
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: start;
}

.hero-content p {
  font-size: 24px;
  margin: 0 auto;
  opacity: 0.7;
  text-align: start;
}

/* Sobre Nós Section */
.sobre-nos {
  padding: 80px 0;
  background: #f8f6f4;
}

.sobre-nos h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #C25A3D;
  margin-bottom: 3rem;
  font-weight: bold;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #2E2E2E;
}

.beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.beneficio img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.beneficio h4 {
  font-size: 1rem;
  color: #595959;
  line-height: 1.5;
  font-weight: normal;
  margin: 0;
}

.sobre-image {
  text-align: center;
}

.sobre-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Serviços Section */
.servicos {
  padding: 80px 0;
  background: white;
}

.servicos h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #C25A3D;
  margin-bottom: 3rem;
  font-weight: bold;
}

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

.servico-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.servico-card i {
  font-size: 3rem;
  color: #C25A3D;
  margin-bottom: 1rem;
}

.servico-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.servico-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-agendar-horario {
  background: #C25A3D;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-agendar-horario:hover {
  background: #dd7152;
}

.ver-todos {
  text-align: center;
}

.btn-ver-todos {
  background: transparent;
  color: #C25A3D;
  border: 2px solid #C25A3D;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-ver-todos:hover {
  background: #C25A3D;
  color: white;
}

/* Cursos Section */
.cursos {
  padding: 80px 0;
  background: #f8f6f4;
}

.cursos h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #C25A3D;
  margin-bottom: 3rem;
  font-weight: bold;
}

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

.curso-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.curso-image {
  height: 350px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.curso-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.curso-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .beneficios {
    grid-template-columns: 1fr;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .cursos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .sobre-nos,
  .servicos,
  .cursos {
    padding: 60px 0;
  }

  .sobre-nos h2,
  .servicos h2,
  .cursos h2 {
    font-size: 1.8rem;
  }
}
