* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

html, body {
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.top-color {
    background: linear-gradient(
    to bottom,
    #7C7C7C 0%,  
    #F2F2F2 50%, 
    #7C7C7C 100% 
  );
  padding: 20px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.logo img {
  animation: slideDown 0.8s ease forwards;
  opacity: 0;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.card {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border: 3px solid #f9b202;
  background-color: #e9e6e6;
  padding: 24px;
}

.card p {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 16px;
   border-bottom: 3px solid #f6b303;
   display: inline-block;
   padding-bottom: 5px;
}

.fale  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fale p {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
}

.btn-container {
  position: relative;
  display: inline-block;
}

.menu-telefones {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #f9b202;
  border-radius: 5px;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-telefones.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.menu-telefones a {
  display: block;
  padding: 12px 16px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.menu-telefones a:hover {
  background-color: #ccc;
  color: #000;
}

.separator {
  height: 3px;
  background-color: #f9b202;
  margin: 0;
}

.btn {
  padding: 16px 90px;
  background-color: #f9b202;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 16px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn:hover, .btn:focus {
  background-color: #f1c40f;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn.pulse {
  animation: pulse 2s infinite;
}

.cite {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: 100px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
}

.footer {
 background: linear-gradient(
    to bottom,
    #7C7C7C 0%,  
    #F2F2F2 50%, 
    #7C7C7C 100% 
  );
  padding: 10px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}