/* =====================================================
   Pandala Funnel — local.css (clean pro + corporate)
===================================================== */
:root{
  --pg-blue:#0b1f3b;
  --pg-blue-2:#06162b;
  --pg-accent:#38bdf8;
  --pg-accent-2:#6366f1;
  --pg-success:#22c55e;

  --pg-bg:#f7f7f8;
  --pg-text:#0f172a;
  --pg-muted:#334155;

  --pg-radius-lg:20px;
  --pg-radius-md:16px;

  --pg-border: rgba(15,23,42,.12);
  --pg-shadow: 0 18px 50px rgba(0,0,0,.10);

  --pg-white: rgba(255,255,255,1);
  --pg-w80: rgba(255,255,255,.80);
  --pg-w70: rgba(255,255,255,.70);
  --pg-w60: rgba(255,255,255,.60);
  --pg-w10: rgba(255,255,255,.10);
  --pg-w12: rgba(255,255,255,.12);
  --pg-w14: rgba(255,255,255,.14);
  --pg-w16: rgba(255,255,255,.16);
}

*{ box-sizing:border-box; }
img{ max-width:100%; height:auto; }
a{ text-decoration:none; }
html{ scroll-behavior:smooth; }

/* -----------------------------------------------------
   HERO
----------------------------------------------------- */
.pd-hero{
  position:relative;
  padding: 44px 0 22px;
  overflow:hidden;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(99,102,241,.14), transparent 55%),
    linear-gradient(180deg, rgba(6,22,43,1) 0%, rgba(11,31,59,1) 55%, rgba(7,17,33,1) 100%);
}

.pd-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(90deg, rgba(56,189,248,.12), transparent 35%, rgba(56,189,248,.08));
  pointer-events:none;
  opacity:.85;
}

.pd-hero .container{ position:relative; z-index:2; }




:root{
  --pd-yellow: #f6c445;         /* amarillo Pandala (ajústalo si tienes el tuyo) */
  --pd-accent: #38bdf8;         /* tu acento actual */
  --pd-blue: #0b1f3b;           /* base */
}

/* Flecha con "flow" */
.pd-flow-arrow{
  display:inline-block;
  margin: 0 .25em;
  font-weight: 950;
  line-height: 1;
  position: relative;

  /* base amarilla */
  color: var(--pd-yellow);

  /* “relleno” en movimiento */
  background: linear-gradient(
    90deg,
    var(--pd-yellow) 0%,
    var(--pd-accent) 35%,
    #ffffff 55%,
    var(--pd-accent) 75%,
    var(--pd-yellow) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* glow suave */
  filter: drop-shadow(0 10px 20px rgba(246,196,69,.25));

  animation: pdArrowFlow 2.2s linear infinite;
}

/* dirección China → Chile (izq → der) */
@keyframes pdArrowFlow{
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Accesibilidad: si alguien tiene reduced motion */
@media (prefers-reduced-motion: reduce){
  .pd-flow-arrow{ animation: none; }
}


/* contenedor de chips */
.pd-hero-kicker--ops{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding: 10px 12px;
}

/* chip base */
.pd-kchip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(5,12,22,.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.pd-kchip i{
  font-size: 14px;
  opacity: .95;
}

/* chip principal (hub) */
.pd-kchip--primary{
  background: rgba(56,189,248,.16);
  border-color: rgba(56,189,248,.28);
}

/* mejor en mobile */
@media (max-width: 576px){
  .pd-hero-kicker--ops{
    gap:8px;
    padding: 10px 10px;
  }
  .pd-kchip{
    font-size: 12.5px;
    padding: 9px 11px;
  }
}


.pd-kchip--deal{
  background: linear-gradient(135deg, #22c55e, #38bdf8); /* verde oportunidad + azul Pandala */
  color: white;
  border: none;
  font-weight: 800;
  letter-spacing: .3px;

  box-shadow:
    0 10px 25px rgba(34,197,94,.35),
    0 6px 18px rgba(56,189,248,.25);

  position: relative;
  overflow: hidden;
}

/* brillo dinámico elegante */
.pd-kchip--deal::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,.35),
    transparent 80%
  );
  opacity:.35;
  transform: translateX(-120%);
  transition: transform .9s ease;
}

.pd-kchip--deal:hover::before{
  transform: translateX(120%);
}

/* ícono un poco más sólido */
.pd-kchip--deal i{
  opacity: 1;
}



/* Typography */
.pd-hero-title{
  color:#fff;
  font-weight: 1000;
  letter-spacing: -0.8px;
  line-height: 1.04;
  margin: 0 0 12px;
  font-size: clamp(30px, 4.2vw, 54px);
}

.pd-hero-sub{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 18px;
  font-size: clamp(14px, 1.35vw, 17px);
  max-width: 65ch;
}

/* Bullets */
.pd-hero-bullets{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px 14px;
  margin: 10px 0 18px;
}

.pd-bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-weight: 850;
}
.pd-bullet i{
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  color: rgba(56,189,248,.95);
}
.pd-bullet span{ font-size: 13px; line-height: 1.25; }

/* CTAs */
.pd-hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 10px;
}

.pd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
  user-select:none;
  white-space:nowrap;
}
.pd-btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }

.pd-btn-primary{
  background: linear-gradient(135deg, rgba(56,189,248,1) 0%, rgba(59,130,246,1) 45%, rgba(99,102,241,1) 100%);
  color:#071121;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.pd-btn-wa{
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.35);
  color:#fff;
}
.pd-btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color:#fff;
}
.pd-btn-block{ width:100%; }

.pd-hero-trust{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 13px;
}

.pd-hero-links{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.pd-link{
  color: rgba(255,255,255,.84);
  font-weight: 900;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.pd-dot{
  width:6px;height:6px;border-radius:99px;
  background: rgba(255,255,255,.28);
}

/* stats */
.pd-hero-stats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.pd-stat{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.pd-stat-num{
  color:#fff;
  font-weight: 1000;
  letter-spacing: -.2px;
  font-size: 14px;
}
.pd-stat-lbl{
  color: rgba(255,255,255,.70);
  font-weight: 850;
  font-size: 12px;
  margin-top: 2px;
}

/* right card */
.pd-hero-card{
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}

.pd-hero-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}

.pd-card-title{
  margin:0;
  color:#fff;
  font-weight: 1000;
  letter-spacing: -.2px;
}
.pd-card-sub{
  margin: 4px 0 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

.pd-seal{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-weight: 900;
  font-size: 12px;
  white-space:nowrap;
}
.pd-seal i{ color: rgba(56,189,248,.95); }

.pd-form .form-control{
  background: rgba(7,17,33,.55);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight: 800;
  border-radius: 14px;
  padding: 10px 12px;
}
.pd-form .form-control::placeholder{ color: rgba(255,255,255,.55); }
.pd-form .form-control:focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(56,189,248,.18);
  border-color: rgba(56,189,248,.55);
}

.pd-field label{
  display:block;
  color: rgba(255,255,255,.82);
  font-weight: 900;
  font-size: 12px;
  margin: 10px 0 6px;
}

.pd-tip{
  margin-top: 10px;
  display:flex;
  gap:8px;
  align-items:flex-start;
  color: rgba(255,255,255,.65);
  font-weight: 850;
  font-size: 12px;
}

.pd-mini-trust{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: rgba(255,255,255,.72);
  font-weight: 850;
  font-size: 12px;
}
.pd-mini-trust span{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

/* video */
.pd-video-card{
  margin-top: 12px;
  border-radius: 20px;
  padding: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.pd-video{
  border-radius: 16px;
  overflow:hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.25);
}
.pd-video iframe{ width:100%; height:100%; display:block; }

/* -----------------------------------------------------
   SECTIONS / COMMON
----------------------------------------------------- */
.pd-section{
  padding: 54px 0;
  background:#fff;
}

.pd-section-soft{
  background: #f6f9ff;
}

.pd-section-dark{
  background:#0b1220;
  color:#fff;
}

.pd-section-title{
  font-weight: 1000;
  letter-spacing: -.3px;
  margin:0 0 8px;
}

.pd-section-sub{
  color:#334155;
  font-weight: 800;
  max-width: 75ch;
  margin:0 0 20px;
}

.pd-section-dark .pd-section-sub{ color: rgba(255,255,255,.72); }

.pd-dark-title{
  font-weight:1000;
  letter-spacing:-.02em;
  margin:0;
}
.pd-dark-sub{
  color:rgba(255,255,255,.72);
  max-width:70ch;
  font-weight:800;
  margin-top:10px;
}
.pd-dark-quote{
  color:rgba(255,255,255,.70);
  font-weight:900;
}

/* simple card for dark section */
.pd-card{
  border-radius: var(--pg-radius-lg);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.pd-card-light{
  background: rgba(255,255,255,.07);
}

/* -----------------------------------------------------
   Buttons for light sections
----------------------------------------------------- */
.pd-btn2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 950;
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0f172a;
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  transition: transform .15s ease, filter .15s ease;
}
.pd-btn2:hover{ transform: translateY(-1px); filter: brightness(1.02); }

.pd-btn2.primary{
  background: linear-gradient(135deg, rgba(56,189,248,1) 0%, rgba(59,130,246,1) 45%, rgba(99,102,241,1) 100%);
  border-color: rgba(59,130,246,.18);
  color:#071121;
}
.pd-btn2.wa{
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.28);
  color:#064e3b;
}

/* -----------------------------------------------------
   Steps
----------------------------------------------------- */
.pd-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top: 14px;
}
.pd-step{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.pd-step .num{
  width:38px;height:38px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color:#071121;
  background: rgba(56,189,248,.22);
  border: 1px solid rgba(56,189,248,.25);
  margin-bottom: 10px;
}
.pd-step h4{
  margin:0 0 6px;
  font-weight:1000;
}
.pd-step p{
  margin:0;
  color:#334155;
  font-weight:800;
  line-height:1.35;
}

/* -----------------------------------------------------
   Services grid
----------------------------------------------------- */
.pd-services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.pd-service{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.pd-service h4{
  margin:0 0 8px;
  font-weight:1000;
  letter-spacing:-.2px;
}
.pd-service h4 i{ color: rgba(59,130,246,.95); margin-right:8px; }
.pd-service p{
  margin:0;
  color:#334155;
  font-weight:800;
  line-height:1.35;
}
.pd-service .actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}

/* -----------------------------------------------------
   Opportunity + Offer
----------------------------------------------------- */
.pd-opportunity{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.pd-opportunity__tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.18);
  color:#0b1f3b;
  font-weight: 1000;
  font-size:12px;
}
.pd-opportunity__title{
  margin: 12px 0 8px;
  font-weight: 1000;
  letter-spacing:-.4px;
}
.pd-opportunity__title span{ color:#2563eb; }
.pd-opportunity__sub{
  margin:0;
  color:#334155;
  font-weight:850;
  line-height:1.45;
  max-width: 80ch;
}
.pd-opportunity__grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.pd-opportunity__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(2,6,23,.02);
}
.pd-opportunity__item .ico{
  width:40px;height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  background: rgba(56,189,248,.18);
  border: 1px solid rgba(56,189,248,.20);
  color:#0b1f3b;
}
.pd-opportunity__item b{
  display:block;
  font-weight:1000;
  margin-bottom: 3px;
}
.pd-opportunity__item span{
  display:block;
  color:#334155;
  font-weight:800;
  line-height:1.25;
  font-size: 13px;
}
.pd-opportunity__cta{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pd-opportunity__note{
  margin-top: 12px;
  color:#334155;
  font-weight:850;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.pd-offer{
  background:#0b1220;
  color:#fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.pd-offer__head .badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(99,102,241,.16);
  border: 1px solid rgba(99,102,241,.18);
  color: rgba(255,255,255,.90);
  font-weight: 1000;
  font-size:12px;
}
.pd-offer__head h3{
  margin: 12px 0 6px;
  font-weight: 1000;
  letter-spacing:-.3px;
}
.pd-offer__head p{
  margin:0;
  color: rgba(255,255,255,.70);
  font-weight:850;
  line-height:1.4;
}
.pd-offer__list{
  margin-top: 14px;
  display:grid;
  gap:10px;
}
.pd-offer__list .rowx{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-weight: 850;
}
.pd-offer__cta{ margin-top: 14px; }
.pd-offer__foot{
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-weight:850;
}

/* -----------------------------------------------------
   Advantage proof badges
----------------------------------------------------- */
.pd-proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pd-proof{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
  color: rgba(255,255,255,.88);
  font-size: 12px;
}
.pd-proof i{ color: rgba(56,189,248,.95); }
.pd-proof-row--dark .pd-proof{ background: rgba(255,255,255,.06); }

/* -----------------------------------------------------
   Testimonials
----------------------------------------------------- */
.pd-testis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.pd-quote{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.pd-quote b{
  display:block;
  font-weight:1000;
  margin-bottom: 8px;
}
.pd-quote span{
  display:block;
  color:#334155;
  font-weight:850;
  line-height:1.35;
}
.pd-quote small{
  display:block;
  margin-top: 10px;
  color:#64748b;
  font-weight:900;
}

/* -----------------------------------------------------
   Contact
----------------------------------------------------- */
.pd-contact{ padding: 54px 0; }
.pd-contact__head{ margin-bottom: 16px; }
.pd-contact__title{
  font-weight: 1000;
  letter-spacing:-.2px;
  margin:0 0 6px;
}
.pd-contact__sub{
  margin:0 0 12px;
  color:#334155;
  font-weight:850;
  max-width: 80ch;
}
.pd-contact__pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pd-contact__pills .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.16);
  color:#0b1f3b;
  font-weight: 950;
  font-size: 12px;
}

.pd-contact__card{
  height:100%;
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.pd-contact__cardHead h4{
  margin:0 0 6px;
  font-weight:1000;
}
.pd-contact__cardHead p{
  margin:0;
  color:#334155;
  font-weight:850;
}

.pd-contact__grid{
  margin-top: 12px;
  display:grid;
  gap:10px;
}
.pd-contact__info{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(2,6,23,.02);
}
.pd-contact__info .ico{
  width:40px;height:40px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(56,189,248,.18);
  border: 1px solid rgba(56,189,248,.20);
  color:#0b1f3b;
}
.pd-contact__info b{
  display:block;
  font-weight:1000;
  margin-bottom: 2px;
}
.pd-contact__info span{
  display:block;
  color:#334155;
  font-weight:850;
  line-height:1.25;
  font-size: 13px;
}
.pd-contact__info a{ color:#2563eb; font-weight:950; }

.pd-contact__fast{
  margin-top: 12px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding: 12px;
  border-radius: 18px;
  background: rgba(56,189,248,.10);
  border: 1px solid rgba(56,189,248,.14);
}
.pd-contact__fastText b{ display:block; font-weight:1000; }
.pd-contact__fastText span{ display:block; color:#334155; font-weight:850; }

.pd-contact__label{
  display:block;
  font-weight:950;
  color:#0f172a;
  margin-bottom: 6px;
  font-size: 12px;
}
.pd-contact__control{
  border-radius: 14px !important;
  font-weight: 850 !important;
  padding: 10px 12px !important;
}
.pd-contact__hint{
  margin-top: 8px;
  color:#64748b;
  font-weight:850;
  font-size: 12px;
}
.pd-contact__submit{
  width:100%;
  margin-top: 12px;
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 1000;
  background: linear-gradient(135deg, rgba(56,189,248,1) 0%, rgba(59,130,246,1) 45%, rgba(99,102,241,1) 100%);
  color:#071121;
  box-shadow: 0 18px 50px rgba(2,6,23,.12);
}
.pd-contact__disclaimer{
  margin-top: 10px;
  color:#64748b;
  font-weight:850;
  font-size: 12px;
  display:flex;
  gap:8px;
  align-items:flex-start;
}

/* -----------------------------------------------------
   Newsletter
----------------------------------------------------- */
.pd-newsletter{ padding: 0 0 54px; }
.pd-newsletter__card{
  border-radius: 22px;
  background: #0b1220;
  color:#fff;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.pd-newsletter__badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.18);
  font-weight: 1000;
  font-size:12px;
}
.pd-newsletter__title{
  margin: 12px 0 6px;
  font-weight:1000;
}
.pd-newsletter__text{
  margin:0;
  color: rgba(255,255,255,.72);
  font-weight:850;
  line-height:1.45;
}
.pd-newsletter__extra{ display:block; margin-top: 6px; color: rgba(255,255,255,.65); }

.pd-newsletter__form{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pd-newsletter__inputWrap{
  flex:1;
  min-width: 240px;
  display:flex;
  gap:10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.pd-newsletter__inputWrap i{ color: rgba(56,189,248,.95); }
.pd-newsletter__inputWrap input{
  width:100%;
  border:0;
  outline:0;
  background: transparent;
  color:#fff;
  font-weight:850;
}
.pd-newsletter__btn{
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight:1000;
  background: rgba(56,189,248,1);
  color:#071121;
}
.pd-newsletter__foot{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.72);
  font-weight:850;
  font-size: 12px;
}
.pd-newsletter__foot span{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

/* -----------------------------------------------------
   Sticky CTA (mobile)
----------------------------------------------------- */
.pd-sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 12px;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.pd-sticky .wrap{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  gap:10px;
}

/* -----------------------------------------------------
   Overlay (sendMail)
----------------------------------------------------- */
.display{
  display:none;
  position: fixed;
  inset:0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.display .sendMail{
  max-width: 520px;
  background:#fff;
  border-radius: 20px;
  padding: 18px;
  font-weight: 950;
  color:#0f172a;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 991px){
  .pd-hero{ padding: 34px 0 18px; }
  .pd-hero-bullets{ grid-template-columns: 1fr; }
  .pd-hero-stats{ grid-template-columns: 1fr; }
  .pd-btn{ width: 100%; }
  .pd-services-grid{ grid-template-columns: 1fr; }
  .pd-steps{ grid-template-columns: 1fr; }
  .pd-testis{ grid-template-columns: 1fr; }
}

@media (min-width: 992px){
  /* En desktop la sticky CTA molesta menos: opcional ocultarla */
  .pd-sticky{ display:none; }
}
