/* Fuente general y estilo base */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #3B3B3B;
}

/* Logo responsivo en navbar */
@media screen and (max-width: 768px) {
  .navbar-brand img {
    height: 32px;
  }
}

/* Fondo texturizado elegante */
.bg-texture {
  background-image: url('images/texture-pattern.png'); /* reemplázalo con tu textura deseada */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Imagen decorativa superior */
.header-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Titulares */
h1 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #3B3B3B;
}

h3 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #3B3B3B;
}

/* Responsividad en textos y columnas */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .header-img {
    max-height: 180px;
    margin: 0 auto 1.5rem;
  }

  .btn-custom {
    width: 100%;
  }

  .col-lg-6 {
    margin-bottom: 2rem;
  }
}

/* Íconos sociales */
.social-link i {
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #3B3B3B;
}

.social-link:hover i {
  transform: scale(1.15);
  color: #ce967B;
}

/* Botón personalizado: sobrio y elegante */
.btn-custom {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid #F5B76B;
  border-radius: 0;
  color: #F5B76B;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #F5B76B;
  color: #1a1a1a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Lista de información de contacto */
.contact-info {
  padding-left: 0;
}

.contact-info li {
  font-size: 16px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

.contact-info a:hover {
  color: #ce967B;
  text-decoration: underline;
}

/* Tarjetas de contacto */
.contact-card {
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Línea divisoria opcional */
.contact-divider {
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}