:root {
      --verde-claro: #9f6c4a;
      --verde-escuro: #845235;
      --branco: #FFFFFF;
      --cinza-claro: #F5F5F5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .btn-comprar{
      cursor:pointer;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background-color: var(--cinza-claro);
      color: var(--verde-escuro);
    }

    header {
      background-color: var(--verde-claro);
      text-align: center;
      padding: 2rem 0 0;
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
    }

    nav{
      margin-top: 30px;
    }

    nav > ul{
      background-color: var(--verde-escuro);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 1rem;
      list-style: none;
    }

    nav a {
      color: var(--branco);
      text-decoration: none;
      margin: 0.5rem 1rem;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }


   


    .hero {

      background-image: url('img/photo-1506126613408-eca07ce68773.jpg');
      background-size: cover;
      background-position: center;
      height: 450px;
      display: flex;
      flex-direction:column;
      align-items: center;
      justify-content: center;
      color: var(--branco);
      text-shadow: 1px 1px 4px #000;
      text-align: center;
      padding: 1rem;
    }

    .hero h2 {
      font-size: 2.5rem;
      font-family: 'Playfair Display', serif;
    }

    .hero a{
      color: #696bc5;
      text-decoration: none;;
    }

    .section {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .section h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .section p {
      margin-bottom: 1rem;
      line-height: 1.6;
      text-align: center;
    }

    .courses {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .card {
      background: var(--branco);
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-body h4 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .card-body p {
      font-size: 0.95rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .card-body a {
      background: var(--verde-escuro);
      color: var(--branco);
      text-decoration: none;
      padding: 0.6rem;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      transition: background 0.3s;
    }

    .card-body a:hover {
      background: var(--verde-claro);
    }

    footer {
      background: var(--verde-escuro);
      color: var(--branco);
      text-align: center;
      padding: 1.5rem;
      margin-top: 3rem;
    }

/* Estilo geral da seção */
.depoimentos-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.depoimentos-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

/* Container dos cards */
.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Card individual */
.depoimento-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 320px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
}

/* Informações do usuário */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
}

.user-info span {
  font-size: 0.9rem;
  color: #999;
}

/* Comentário */
.comentario {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  .depoimentos-container {
    flex-direction: column;
    align-items: center;
  }

  .depoimento-card {
    max-width: 100%;
  }
}

    @media (max-width: 600px) {
      .hero h2 {
        font-size: 1.8rem;
      }
    }