/* Font Awesome Custom: Solo iconos usados en FrandoWeb */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  src: url('https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}
.fas, .fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.fab {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}
/* Iconos solidos */
.fa-arrow-up:before { content: "\f062"; }
.fa-pen-nib:before { content: "\f5ad"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-mobile-alt:before { content: "\f3cd"; }
.fa-search:before { content: "\f002"; }
.fa-tools:before { content: "\f7d9"; }
.fa-chevron-left:before { content: "\f053"; }
.fa-chevron-right:before { content: "\f054"; }
/* Iconos de marcas */
.fa-whatsapp:before { content: "\f232"; }
.fa-facebook:before { content: "\f09a"; }
.fa-x-twitter:before { content: "\e61b"; }
.fa-instagram:before { content: "\f16d"; }
.fa-youtube:before { content: "\f167"; }
.fa-wordpress:before { content: "\f19a"; }

/* Estilos elegantes para titulos de seccion */
.section-title {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #007bff;
  border-radius: 1px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.section-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, #f8f9fa 0%, #eef5ff 100%);
}

.section-title:hover::after {
  width: 60px;
  opacity: 1;
}