body {
  margin: 0;
  min-height: 100vh;
  background-color: #f5f5f5;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 0 10px 12px rgba(12, 1, 1, 0.527);
  position: relative;
  z-index: 10;
  gap: 15px;
}

header p {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #c40c0c;
  font-size: 50px;
}

.logo {
  width: 10em;
  margin: 1rem;
}

.botao-whatsapp {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  overflow: hidden;
}

.botao-whatsapp p {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 4.5rem;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 900;
}


.bg-whatsapp {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a área */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.btn-whatsapp {
  background-color: #10a848;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 50px;
  border-radius: 12px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 38px;
  font-weight: 100;
  margin-top: 2em;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 4px 11px 8px rgba(0, 0, 0, 0.432);
  position: relative;
  z-index: 2;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

.logo-whatsapp {
  width: 2.5em;
  padding-right: 12px;
}

/* --- TABLET --- */
@media (max-width: 768px) {
  header p {
    display: none;
  }

  .btn-whatsapp {
    font-size: 26px;
    padding: 25px 30px;
    gap: 8px;
  }

  .botao-whatsapp p {
    font-size: 3.5rem;
  
  }

  .logo-whatsapp {
    width: 1.8em;
    padding-right: 8px;
  }

  .btn-whatsapp:hover {
    transform: none;
  }
}

/* --- CELULAR --- */
@media (max-width: 580px) {
  header {
    padding: 1px;
  }

  .logo {
    width: 6em;
  }

  .botao-whatsapp p {
    font-size: 2.5rem;
  
  }

  .btn-whatsapp{
    font-size: 22px;
    
  }
}
