
    :root {
      --bg:#0A0C13; --fg:#ECECEC; --accent:#00E0FF; --accent-dark:#005B8F;
      --font:'Rajdhani',sans-serif; --radius:.5rem;
    }
    *{margin:0;padding:0;box-sizing:border-box;}
    body{background:var(--bg);color:var(--fg);font-family:var(--font);}
    a{color:var(--accent);text-decoration:none;}

    /*header{text-align:center;padding:4rem 1rem;background:linear-gradient(135deg,var(--accent-dark),transparent);}*/
    header {
      background: url('hero-bg.png') center/cover no-repeat;
      color: var(--fg);
      padding: 6rem 1rem;
      text-shadow: 0 2px 8px rgba(0,0,0,.9);
      text-align: center;
    }
    
    .hero-content {
      max-width: 800px;
      margin: auto;
    }

    header h1{font-size:3rem;margin-bottom:.5rem;}
    header p{opacity:.9;}

    main{max-width:1000px;margin:auto;padding:2rem 1rem;}
    .services{display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
    .service-card{background:rgba(255,255,255,.05);border-radius:var(--radius);padding:1.5rem;transition:.3s;text-align: center;}
    .service-card:hover{transform:translateY(-8px);background:var(--accent-dark);}
    .service-card img{height:80px;margin-bottom:1rem;}
    .cta{text-align:center;margin-top:3rem;}
    .cta a{background:var(--accent);color:var(--bg);padding:1rem 2rem;border-radius:var(--radius);font-weight:700;}
    footer{
      text-align:center;padding:2rem;font-size:.9rem;opacity:.7;
    }


	.service-card h3 {
		font-size: 1.3rem;
		margin-bottom: .5rem;
		color: var(--accent);
	}
	

  
.navbar {
  padding: .75rem 1rem;
  text-align: center;
  position: sticky;
  /*background: var(--bg);*/
   /* degradado de negro semitransparente a transparente */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 10;            /* mayor que el header */
  top: 0;
  z-index: 100;
  
  /*osition: relative; /* para posicionar los pseudo‑elementos */
  overflow: hidden;   /* ya lo tenías, sirve de recorte */
}
.navbar ul {
  list-style: none;
  display: inline-flex;
  gap: 1.5rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem;           /* un poco de acolchado lateral */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth en iOS */
}

/* Cada elemento “encaja” al hacer scroll */
.navbar li {
  flex: 0 0 auto;            /* no crece ni mengua */
  scroll-snap-align: start;
}

.navbar a {
  color: var(--fg);
  font-weight: 600;
  transition: color .2s, border-color .2s;
}
.navbar a:hover {
  color: var(--accent);
}

/* Enlace activo en el menú */
.navbar a.active {
  color: var(--accent);        /* mismo color de acento para destacar */
  font-weight: 700;            /* un poco más de grosor */
}

/* Además, al pasar sobre cualquier enlace */
.navbar a:hover {
  color: var(--accent-dark);
}

/* Opcional: esconder la barra de scroll en WebKit */
.navbar ul::-webkit-scrollbar {
  height: 4px;
}
.navbar ul::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}


/* Opcional: esconder la barra de scroll en WebKit */
.navbar ul::-webkit-scrollbar {
  height: 4px;
}
.navbar ul::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

/* Asegura que el contenedor no “salte” */
.navbar {
  overflow: hidden;
}

/* Sombra izquierda */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;       /* cuánto espacio ocupa la sombra */
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,12,19,0) 100%);
  z-index: 10;
}

/* Sombra derecha */
.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, var(--bg) 0%, rgba(10,12,19,0) 100%);
  z-index: 10;
}

/* Opcional: sólo mostrar en móvil */
@media (min-width: 800px) {
  .navbar::before,
  .navbar::after {
    display: none;
  }
  .navbar ul {
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: visible;
    padding: 0;
  }
}







/* == Secciones generales == */
main section {
  margin: 1rem 0;            /* espacio entre secciones */
}
main section h2 {
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.5rem;       /* antes: 1.5rem */
}

/* == Listas == */
main section ul,
main section ol {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding-left: 1.5rem;      /* sangría suave */
  line-height: 1.6;
}
main section ul li {
  margin-bottom: 0.75rem;
  /*list-style: disc inside;*/
}
main section ol li {
  margin-bottom: 0.75rem;
  list-style: decimal inside;
}


/* 1. Reducir márgenes verticales de los párrafos intro */
section > p {
  margin: 0.5rem auto 1.5rem;  /* antes: 0.75rem / 2rem */
  line-height: 1.5;            /* antes: 1.6 */
  font-weight: 400;            /* antes: (heredado) */
}

/* 2. Acortar el padding de las listas para compactarlas */
main section ul,
main section ol {
  margin-bottom: 1.5rem;       /* antes: 2rem */
  padding-left: 1.2rem;        /* antes: 1.5rem */
}

/* 3. Disminuir el espacio entre los ítems */
main section ul li,
main section ol li {
  margin-bottom: 0.5rem;       /* antes: 0.75rem */
}

/* 4. Suavizar la opacidad del texto para que se vea más ligero */
main section ul,
main section ol,
section > p {
  color: var(--fg);
  opacity: 0.85;               /* antes: 0.9 */
}

/* 5. Añadir algo de espaciado lateral sólo en pantallas grandes */
@media(min-width: 800px) {
  main section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}





/* == Testimonios == */
.testimonials {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1rem;
  border-radius: var(--radius);
  margin: 4rem auto;
  max-width: 900px;
}
.testimonials h2 {
  margin-top: 0;
}
.testimonials blockquote {
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(0,224,255,0.1);
  border-left: 4px solid var(--accent);
  font-style: italic;
  max-width: 800px;
}
.testimonials cite {
  display: block;
  text-align: right;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

/* == Botón CTA grande al final == */
.cta {
  margin: 4rem 0;
  text-align: center;
}
.cta a {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  transition: opacity .3s, transform .3s;
}
.cta a:hover {
  opacity: .9;
  transform: translateY(-3px);
}

/* == Ajustes responsivos == */
@media(max-width: 600px) {
  main section h2 { font-size: 1.5rem; }
  .testimonials { padding: 1.5rem; }
  .testimonials blockquote { padding: 1rem; }
}


/* ===== Pricing Section ===== */
.pricing {
  max-width: 1000px;
  margin: 4rem auto;
  text-align: center;
}
.pricing .note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-card.featured {
  background: var(--accent-dark);
}
.pricing-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.pricing-card .price span {
  color: var(--fg);
}
.pricing-card .price em {
  font-size: 1rem;
  opacity: 0.75;
  display: block;
}
.pricing-card ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1rem;
}
.pricing-card ul li {
  margin-bottom: 0.75rem;
}
.pricing-card .btn-cta {
  margin-top: 1.5rem;
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: opacity .3s, transform .3s;
}
.pricing-card .btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}


/* Iconos junto a cada ítem */
.pricing-card ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .75rem;
  line-height: 1.4;
}
.pricing-card ul li .icon-check {
  position: absolute;
  left: 0;
  top: .1em;
  width: 1em;
  height: 1em;
  fill: var(--accent);
}

/* Icono Info */
.tooltip {
  display: inline-block;
  margin-left: .4em;
  cursor: pointer;
  position: initial; /*relative;*/
  vertical-align: middle;
}
.tooltip .icon-info {
  width: .9em;
  height: .9em;
  fill: var(--accent);
}

/* Tooltip box */
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 200px;
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: .5rem;
  border-radius: var(--radius);
  font-size: .85rem;
  line-height: 1.2;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 10;
}
/* Flecha pequeña */
.tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0,0,0,.85);
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
}

/* Mostrar al hover */
.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
  pointer-events: auto;
}


/* Elimina el bullet por defecto en las listas de tarifas */
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Deja espacio para el icono y posiciónalo */
.pricing-card ul li {
  position: relative;
  padding-left: 1.8em;  /* ajusta si hace falta más/menos */
  margin-bottom: 0.75rem;
}

/* Asegura que el check quede alineado */
.pricing-card ul li .icon-check {
  position: absolute;
  left: 0;
  top: 0.2em;  /* mueve hacia abajo si necesitas centrarlo */
  width: 1em;
  height: 1em;
  fill: var(--accent);
}

.vat-note {
  font-size: 0.85rem;
  color: var(--fg);
  opacity: 0.7;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}


/* HERO‑SUB ATRAYENTE */
.hero-sub {
  position: relative;
  padding: 1rem 1rem;
  margin-top: -4rem; /* superpone bajo el header */
  /*z-index: 0;*/
}
.hero-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,224,255,0.8), rgba(10,12,19,0.8));
  z-index: 1;
}
.hero-sub .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.hero-sub h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}
.hero-sub p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.btn-group {
  margin-top: 1rem;
  display: inline-flex;
  gap: 1rem;
}
.btn-primary,
.btn-secondary {
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform .2s, opacity .2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}


.dpd-seal-highlight {
  display: inline-flex;
  align-items: center;
  background: rgba(0,224,255,0.05);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1.5rem auto;        /* auto en los lados centra el bloque */
  max-width: 600px;           /* o el ancho que mejor se adapte */
  width: 90%;                 /* ocupa hasta el 90% en móviles */
  margin: 1.5rem 0;
}
.dpd-seal {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 1rem;
}
.dpd-seal-text {
  flex: 1;
  color: var(--fg);
  line-height: 1.3;
}
.dpd-seal-text strong {
  color: var(--accent);
}
.dpd-seal-text small {
  display: block;
  margin-top: .5rem;
  font-size: .75rem;
  opacity: .7;
}


.hero-content p {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--fg);
  max-width: 700px;
  margin: 1rem auto 0;
}

.inline-seal {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.hero-content p strong {
  color: var(--accent);
  font-weight: 600;
}


.boe-note {
  font-size: 0.9rem;
  color: var(--fg);
  opacity: 0.7;
  text-align: center;
  margin: 1.5rem auto 2rem;
}
.boe-note a {
  color: var(--accent);
  text-decoration: underline;
}
.boe-note a:hover {
  opacity: 0.85;
}





.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: none;
  z-index: 200;
  transition: transform .2s, opacity .2s;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 0.85;
}





.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  display: block;
}

#particles {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events: none; /* que no interfiera clicks */
  z-index:1;
}

.hero-content {
  position: relative;
  z-index:2; /* por encima del canvas */
}