/* === HEADER IMAGE === */
.container-fluid img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* === MAIN SECTION === */
section.bg-light {
  background-color: #f8f9fa;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

section.bg-light h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #323337;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

section.bg-light h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6c757d;
}

/* === FORM SECTION === */
section.bg-gray {
  background-color: #e9ecef;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

section.bg-gray h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #323337;
  text-align: center;
  margin-bottom: 2rem;
}

/* === FORM FIELDS === */
form input,
form textarea {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #F5B76B;
  box-shadow: 0 0 0 0.2rem rgba(245, 183, 107, 0.25);
  outline: none;
}

form textarea {
  resize: vertical;
}

/* === BUTTON === */
.btn.btn-dark {
  background-color: #F5B76B;
  color: #323337;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn.btn-dark:hover {
  background-color: #e0a95c;
  color: #fff;
}










/* Footer */
.footer {
  background: linear-gradient(135deg, #2b2b2b, #000000);
  color: #f5f5f5;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.footer-title {
  font-size: 1.1rem;
  color: #F5B76B;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #C5C5C5;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #F5B76B;
}

.social-icon {
  font-size: 1.5rem;
  color: #C5C5C5;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #F5B76B;
}

/* Responsivo */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.2rem;
  }

  .footer-title,
  .footer-link {
    text-align: center;
  }

  .footer .col-md-3 {
    text-align: center;
  }

  .social-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 0.95rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .social-icon {
    font-size: 1.2rem;
    margin: 0 6px;
  }

  .footer img {
    max-width: 80px;
  }

  .footer .row > div {
    margin-bottom: 30px;
  }
}
