/* contato */

/* topo  */
.form-inline{
  background: #212121; 
  box-shadow: none !important;
}
/* fim topo */

/* banner */
.contato{
    background: url('../img_/imgFundo.png') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.banner-content{
  max-width:  700px;
}

.banner-content h1 {
    font-size: 36px;
    margin: 0;
}

.banner-content p {
    text-align: left;
    font-size: 18px;
    margin: 10px 0 0;
}

.contact-icon{
  background-color: #FFC6C9;
}

/* fim do contato */


/* FOOTER rodapé */
.footer {
  background: #1c1c1c;
  color: #f0f0f0;
  font-family: 'Josefin Sans', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1520px;
    margin: auto;
    padding: 40px 20px;
    gap: 100px;
    
}
/* Logo footer */
.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px; 
    display: block; 
    margin-left: 0%;
    margin-bottom: 15px; 

}

/*colunas */
.footer-col {
  flex: 1px;
  margin: 1px;
  min-width: 220px;
  padding: 20px;
}

.footer h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Josefin Sans', sans-serif;
}

.footer h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    gap: 20px;
}

.footer p {
  margin: 15px 0;
  line-height: 1.5;
  font-style: bold medium;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    gap: 10px;
    
}

.footer ul li {
  margin: 15px 0;
}

.footer ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ff4c4c;
}


/* Redes sociais */
.social-icons {
  margin-top: 10px;
    
}

.social-icons a {
  color: #f0f0f0;
  margin-right: 12px;
  font-size: 30px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff4c4c;
}

/* linha separadora */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  color: #aaa;
}
/* fim do footer*/


/* Formulário de contato */
form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 24px auto 0 auto;
  padding: 18px 18px;
  font-family: 'Josefin Sans', Arial, sans-serif;
  transition: 0.3s ease;
}

form h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #212121;
  text-align: center;
}

form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

form input,
form textarea {
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 1rem;
}

form input::placeholder,
form textarea::placeholder {
  color: #aaa;

}

/* Botão */
form button[type="submit"] {
  background: #F23041;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  display: block;
  width: 100%;
}

form button[type="submit"]:hover {
  background: #d11c36;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 28, 54, 0.4);
}

/* Responsividade */
@media (max-width: 600px) {
  form {
    padding: 10px 6px;
    max-width: 98vw;
  }
  form button[type="submit"] {
    font-size: 1rem;
    padding: 10px 0;
  }
}
