/* DEGRADADO VIOLETA-AZUL */
.degrade-violeta-azul {
  background: linear-gradient(135deg, #ad88fd 0%, #6d8cff 50%, #4a7dff 100%);
  background-attachment: fixed; /* Hace que el degradado sea fijo al hacer scroll */
}


/* .about {
  background:
    linear-gradient(rgba(245,215,240,0.92), rgba(245,215,240,0.92)),
    url("img/dev.jpg");
  background-size: cover;
  background-position: center;
} */

.about {
  min-height: 420px;

  background:
    linear-gradient(rgba(245,215,240,0.92), rgba(245,215,240,0.22)),
    url("../img/pantalla\ inicio.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 18px;
}

.about {
  filter: grayscale(10%) contrast(0.95);
}
.about:hover {
  filter: grayscale(0%);
  transition: 0.4s ease;
}


/* Para mantener la separación visual entre secciones */
section.fondo-degrade {
  position: relative;
  z-index: 1;
}

/* Opcional: Para añadir un poco de espacio visual */
.separador-transparente {
  height: 30px;
  background: transparent;
}

/* Tarjetas tipo planes */
.tarjeta-plan {
  border-radius: 18px;
  background: #ffffff;
  transition: all .25s ease-in-out;
  min-height: 100%;
}

.tarjeta-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 2rem rgba(0,0,0,0.15) !important;
}

.tarjeta-titulo {
  font-weight: 800;
  text-transform: uppercase;
}

.tarjeta-sub {
  font-weight: 700;
  color: #444;
}

.tarjeta-lista {
  list-style: none;
  padding-left: 0;
}

.tarjeta-lista li {
  margin-bottom: .4rem;
}



    /* BLOQUE DE TARJETAS DE PLANES – NOMBRES EN ALEMÁN */
.tarifkarte-bereich {
  margin-top: 2rem;
}

.tarifkarte {
  border-radius: 18px;
  background: #ffffff;
  transition: all .25s ease-in-out;
  min-height: 100%;
}

.tarifkarte:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 2rem rgba(0,0,0,0.15) !important;
}

.tarifkarte-titel {
  font-weight: 800;
}

.tarifkarte-preis {
  font-weight: 700;
  color: #111;
}

.tarifkarte-liste {
  list-style: none;
  padding-left: 0;
}

.tarifkarte-liste li {
  margin-bottom: .35rem;
  font-size: .95rem;
}
/* Botón flotante */
.wapp-burbuja{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(90deg, #4D3C77, #607274);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: .3s;
}

.wapp-burbuja:hover{
  transform: scale(1.07);
}

/* Globito de mensaje */
.wapp-mensaje{
  position: fixed;
  bottom: 35px;
  right: 95px;
  background: white;
  padding: 12px 18px;
  border-radius: 15px;
  max-width: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 9998;
  font-size: 14px;
  display: none;
}

/* triángulo tipo chat */
.wapp-mensaje::after{
  content: "";
  position: absolute;
  right: -8px;
  bottom: 10px;
  width: 15px;
  height: 15px;
  background: white;
  transform: rotate(45deg);
}

  /* ESTILOS PARA EL SCROLL REVEAL FADE-UP */
.revelation-element {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.revelation-element.revele {
  opacity: 1;
  transform: translateY(0);
}

/* Délai pour effet séquentiel */
.revelation-delai-100 { transition-delay: 100ms; }
.revelation-delai-200 { transition-delay: 200ms; }
.revelation-delai-300 { transition-delay: 300ms; }
.revelation-delai-400 { transition-delay: 400ms; }
.revelation-delai-500 { transition-delay: 500ms; }
.revelation-delai-600 { transition-delay: 600ms; }

.services-inline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.services-inline span {
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(40, 23, 87, 0.12);
  color: #3915ca;
  font-weight: 500;
}

.services-inline {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
  gap: 18px;
  flex-wrap: wrap;
}
section h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2b2b2b;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7c4dff;
  margin: 12px auto 0;
  border-radius: 3px;
}

.services-inline span {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  overflow: hidden;
}

.services-inline span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
}

.services-inline span:hover::before {
  left: 120%;
}
