.footer-section {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-col h4 {
  color: #8B0000;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-col p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #1a1b1b;
  border-color: #8B0000;
  color: #111;
}

.contact-info-footer i {
  margin-right: 10px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter-form button {
  background-color: #8B0000;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #8B0000;
}

.inefop {
  margin-top: 10px;
  color: #8B0000;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
    margin-top: 5px;
  }

  .newsletter-form input {
    border-right: 1px solid #ccc;
  }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
  }
  
  .footer-bottom p {
    color: #aaa;
    font-size: 14px;
  }
  
  .footer-bottom a {
    color: #8B0000;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #8B0000;
  }