body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.contato-section {
  background: url("../img/background1.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  height: 500px;
}

.contato-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contato-section .container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  width: 1300px;
  margin: 0 auto;
}

.contato-titulo {
  font-size: 3rem;
  color: #ff7b00;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.contato-texto {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #fff;
  text-align: left;
}

.btn-contato {
  display: inline-block;
  background-color: #e4005d;
  margin-top: 60px;
  color: white;
  padding: 15px 30px;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-contato:hover {
  background-color: #c90051;
}

@media (max-width: 1200px) {
  .contato-section .container {
    width: 95%;
  }

  .contato-titulo {
    font-size: 2.5rem;
  }

  .contato-texto {
    font-size: 20px;
  }

  .btn-contato {
    font-size: 2.5rem;
    padding: 14px 26px;
  }

  /* FOOTER */
  .fin-footer {
    padding: 20px;
  }

  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0;
  }

  .footer-logo img {
    max-width: 150px;
    height: auto;
  }

  .footer-info {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contato-section {
    padding: 80px 20px;
    height: auto;
  }

  .contato-titulo {
    font-size: 2rem;
    text-align: center;
  }

  .contato-texto {
    font-size: 16px;
    text-align: center;
  }

  .btn-contato {
    font-size: 1.5rem;
    padding: 12px 20px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .contato-titulo {
    font-size: 1.6rem;
  }

  .contato-texto {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-contato {
    width: 100%;
    padding: 14px 0;
    font-size: 1.2rem;
  }
}
