@import url('https://fonts.googleapis.com/css2?family=inter:wght@300;400;500;600;800&display=swap');

/* ======= ============== ============== ============== ============== ============== ======= */
/* ======= ============== whatsppp section ============== ============== ======= */
/* ======= ============== ============== ============== ============== ============== ======= */

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

body {
  font-family: "inter", sans-serif;
  background-color: #F9F7F5;
}


body {
  font-family: "inter", sans-serif;
  background-color: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

h1 {
  color: #1f2937;
  margin-bottom: 30px;
}

.container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 280px;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111827;
}

.whatsapp-btn {
  background: linear-gradient(90deg, #AA9273 0%, #867052 100%);
  color: white;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  font-family: "inter", sans-serif;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #867052;
}

 /* ====================================
   responsivo
   ==================================== */
  /* ======= mobile first 0 – 768 px ======= */
  @media (max-width: 768px) {
    h1 {
      margin-bottom: 20px;
      text-align: center;
    }
    .container {
      display: flex;
      gap: 40px;
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .card {
    background-color: white;
    padding: 20px;
    width: 100%;
    margin-bottom: 15px;
  }
  .card img {
    width: 200px;
    height: 200px;
  }
}
  
