body{
    color: rgb(15, 9, 9);
}

/*---------------------------------------------------------------------------------------------*/

.whatsapp-btn {
  position: fixed;   

  right: 20px;          /* distância da lateral direita */
  z-index: 999;         /* fica por cima de tudo */
}

.whatsapp-btn img {
  width: 60px;          /* tamanho do ícone */
  height: 60px;
  border-radius: 50%;   /* deixa circular */
  box-shadow: 0 4px 8px rgba(7, 7, 7, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}


/*---------------------------------------------------------------------------------------------*/


.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 3%;
  background: rgb(231, 81, 81);
}

.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin: 15px 10px 10px 10px;
}

.card p {
  font-size: 0.95em;
  margin: 0 10px 15px 10px;
  color: #555;
}

.card a {
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  background-color: #e63946;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.card a:hover {
  background-color: #d62839;
}

@media (max-width: 1000px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}

/*----------------------------------------------------------------------------------------------------------*/



.section-golden {
  position: relative;
  min-height: 100vh; /* ocupa toda a tela */
display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #80aeeb, #033c868a);
  overflow: hidden;
}

.section-golden h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.section-golden h1 span {
  color: red;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  z-index: 2;
  position: relative;
}

.card {
  background: white;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex: 1 1 300px;
  max-width: 320px;
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: red;
}

.card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* SVG das ondas */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
}

/*----------------------------------------------------------------------------------------------------------*/

.A1{
  position: absolute;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-decoration: none;
  border: 3px solid rgb(39, 98, 224);
  border-radius: 30px;
	color: rgb(214, 28, 28);
	padding: 15px;
  text-align: left;
}