

    @font-face {
      font-family: 'Google Sans';
      src: url('https://fonts.gstatic.com/s/googlesans/v57/4UaGrENHsxJlGDuGo1OIlLUhBb5AGPqz.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Google Sans';
      src: url('https://fonts.gstatic.com/s/googlesans/v57/4UaGrENHsxJlGDuGo1OIlLUhBb5AGPk6z.ttf') format('truetype');
      font-weight: bold;
      font-style: normal;
    }

     /* Estilo do modal */
  .modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro */
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
  }

  .quantity-select label {
    display: block;
    margin-top: 10px;
  }

  .quantity-select input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
  }

  .cta-button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .cta-button:hover {
    background-color: #0056b3;
  }
	
	
	:root {
      --primary-color: #1a1a1a;
      --secondary-color: #f5f5f5;
      --accent-color: #e63946;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Google Sans', sans-serif;
    }

    .product-card {
      background: white;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

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

    .price {
      color: var(--accent-color);
      font-size: 1.5rem;
      font-weight: bold;
      margin: 1rem 0;
    }

    .cta-button {
      background: var(--accent-color);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      margin-top: 1rem;
    }

    .cta-button:hover {
      background: #d62828;
    }

    footer {
      background: var(--primary-color);
      color: white;
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
    }



:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f5f5f5;
  --accent-color: #e63946;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Google Sans', sans-serif;
}

body {
  background-color: var(--secondary-color);
}

.hero {
  margin-top: 80px;
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(45deg, #1ab9d9, #15814f);
  color: white;
}

.product-card {
  background: white;
  border-radius: 0;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.cta-button {
  background: var(--accent-color);  
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #d62828;
}

footer {
  background: var(--primary-color);
  color: white; 
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
 
.whatsapp-button {
  background: #198754; /* Verde do WhatsApp */
  display: inline-flex;
  align-items: center;  
  gap: 0.5rem;
}

.whatsapp-button:hover {
  background: #1ebe5b; /* Cor mais escura ao passar o mouse */
  /* font-size: 23px; */  
  /* font-weight: 400; */
}

.whatsapp-button i {
  font-size: 29px;
}  

.card {
    padding: 20px;
}