/* Gradientes y texto */
.texto-gradiente {
  background: linear-gradient(90deg, rgba(152,6,177,1) 21%, rgba(244,11,223,1) 44%, rgba(219,13,20,1) 69%, rgba(255,189,4,1) 89%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body {
  margin-top: 70px; /* Ajustar según el alto del header */
}

/* Navbar links */
.navbar .nav-link {
  position: relative;
  color: #fff !important;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  padding: 8px 12px;
}

.navbar .nav-link:hover {
  color: rgba(244,11,223,1) !important;
  transform: translateY(-2px);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(152,6,177,1), rgba(244,11,223,1), rgba(219,13,20,1), rgba(255,189,4,1));
  transition: width 0.3s ease-in-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* Botones */
.btn {
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 30px;
}

.btn-dark {
  background: #121212;
  border: none;
}

.btn-dark:hover {
  background: linear-gradient(90deg, rgba(152,6,177,1), rgba(244,11,223,1), rgba(219,13,20,1), rgba(255,189,4,1));
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.btn-light:hover {
  background: #f40bdf;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(244,11,223,0.4);
}

/* Iconos */
.icono-hover, i.bi {
  font-size: 3rem;
  color: #9806b1;
  transition: transform 0.4s ease, color 0.4s ease;
  display: inline-block;
  cursor: pointer;
}

i.bi.bi-facebook, 
i.bi.bi-whatsapp,
i.bi.bi-instagram, 
i.bi.bi-linkedin 
{
  font-size: 1rem;
}


.icono-hover:hover, i.bi:hover {
  transform: scale(1.2) rotate(8deg);
  color: #f40bdf;
}

/* Tarjetas servicios */
.card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
}

.social-btn {
  transition: all 0.3s ease-in-out;
}

.social-btn:hover {
  transform: scale(1.2);
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Responsive */
.titulo-completo { display: block; }
.titulo-abreviado { display: none; }

@media(max-width: 768px){
  .text-footer{ margin-top: 0; }
}

@media (max-width: 425px) {
  .titulo-completo { display: none; }
  .titulo-abreviado { display: block; }
}
