/* RESET GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #323337;
}


/* HEADER */
.header {
  padding: 120px 20px 60px;
  background-color: #E1E2E6;
  position: relative;
  overflow: hidden;
}

/* IMAGEN */
.header-img {
  position: absolute;
  top: 30px;
  left: 30px;
  max-width: 280px;
  width: 100%;
  height: auto;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* CONTENIDO TEXTO */
.header-content {
  position: relative;
  z-index: 1;
}

.header-content h1 {
  font-size: 55px;
  line-height: 1.3;
  color: #323337;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.header-content h2 {
  font-size: 25px;
  line-height: 1.3;
  color: #323337;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.header-content p {
  font-size: 16px;
  color: #414247;
  text-align: justify;
  margin-bottom: 15px;
  padding: 0 20px;
}

.header-content ul {
  padding: 0 40px;
  margin-bottom: 20px;
}

.header-content ul li {
  font-size: 16px;
  color: #414247;
  list-style-type: square;
  list-style-position: inside;
  text-align: justify;
  margin-bottom: 10px;
}

/* BOTÓN */
.btn-custom {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid #5e5d5d;
  border-radius: 0;
  color: #1a1918;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #F5B76B;
  color: #3b3a3a;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .header {
    padding: 80px 15px 40px;
  }

  .header-img {
    display: none;
  }

  .header-content h1 {
    font-size: 42px;
  }

  .header-content h2 {
    font-size: 20px;
  }

  .header-content p,
  .header-content ul {
    padding: 0 10px;
  }

  .btn-1 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 32px;
  }
}

/* FOOTER ORIGINAL — No modificado */
.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;
  margin-bottom: 1rem;
  font-weight: 600;
}

.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;
}

@media (max-width: 768px) {
  .footer-title,
  .footer-link {
    text-align: center;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1.3rem;
  }

  .footer .col-md-3 {
    text-align: center;
  }

  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }

    .btn-custom {
    width: 100%;
  }
}

@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;
  }
}