/* ==========================================================================
   PACIENTES.CSS - ÁREA PACIENTES
   ========================================================================== */
/* ==========================================================================
   3. PATIENT PAGE EXCLUSIVE STYLES (pacientes.html)
   ========================================================================== */

/* Hero Section */
.hero {
  min-height: 100vh;
  background-color: #000;
  background-image: url('../images/hero_sphere_clean.webp');
  background-repeat: no-repeat;
  background-position: center 18%;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.hero-background {
  display: none;
}

.hero-side-images {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 20;
  transition: opacity 0.5s ease;
}

.hero-side-images.left {
  left: calc(50% - clamp(400px, 45vw, 650px));
}

.hero-side-images.right {
  right: calc(50% - clamp(400px, 45vw, 650px));
}

.hero-side-img {
  width: clamp(80px, 10vw, 125px);
  height: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(0.4) brightness(0.7);
  /* Eliminados bordes y recuadros por petición del usuario para un look más orgánico */
  border: none;
  box-shadow: none;
  background: transparent;
}

.hero-side-img:hover {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1);
  border: none;
  box-shadow: none;
}

.hero-side-images.left .img-bottom-inner {

  transform: translate(160px, 20px);

}

.hero-side-images.right .img-bottom-inner {

  transform: translate(-160px, 20px);

}

.hero-side-images.left .img-bottom-inner:hover {

  transform: translate(160px, 20px) scale(1.1);

}

.hero-side-images.right .img-bottom-inner:hover {

  transform: translate(-160px, 20px) scale(1.1);

}

.hero-side-images.left .img-mid-inner {

  transform: translate(80px, 15px);

}

.hero-side-images.right .img-mid-inner {

  transform: translate(-80px, 15px);

}

.hero-side-images.left .img-mid-inner:hover {

  transform: translate(80px, 15px) scale(1.1);

}

.hero-side-images.right .img-mid-inner:hover {

  transform: translate(-80px, 15px) scale(1.1);

}

.hero-container {
  position: relative;
  z-index: 10;
  width: min(90%, 1400px);
  margin-top: -12vh;
  /* Slightly adjusted for better balance */
}

@media (max-width: 1200px) {

  .hero-side-images {
    display: none;
  }

  /* Hide on smaller screens to avoid overlap */

}

.hero-actions {
  margin-top: clamp(4rem, 15vh, 10rem);
}

.hero h1 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  color: #FFF;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.02em;
}

.hero h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 3.5vw, 2.4rem);
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  border: none;
  margin: clamp(1rem, 4vw, 2.5rem) auto 0;
  max-width: min(100%, 800px);
}

.hero-footer-text {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: min(100%, 1000px);
  z-index: 10;
  text-align: center;
}

.hero-footer-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* PRP Intro */
.prp-intro {
  background-color: #000;
  padding: 80px 0;
  color: #fff;
}

.prp-intro .container {
  max-width: min(100%, 1400px);
}

.prp-intro-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 60px);
  margin-bottom: clamp(25px, 5vw, 50px);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #00C2FF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.text-cyan {
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.text-purple {
  color: #bf55ec;
  text-shadow: 0 0 20px rgba(191, 85, 236, 0.5);
}

.text-white {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.signal-title-global {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 60px);
  margin-bottom: clamp(25px, 5vw, 50px);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #00C2FF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.prp-comparison {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 5vw, 80px);
  margin-bottom: clamp(15px, 4vw, 30px);
  flex-wrap: wrap;
}

.prp-col {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prp-img {
  width: 100%;
  max-width: 400px;
  /* Controlled width */
  height: 350px;
  /* Increased height and object-fit: contain to show full drop */
  object-fit: contain;
  margin-bottom: clamp(12px, 3vw, 25px);
  border-radius: 30px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
  display: block;
}

.prp-label {
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
}

.text-dim {
  color: #aaa;
  font-weight: 300;
}

.prp-info-central {
  flex: 2;
  min-width: 320px;
  max-width: min(100%, 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 3vw, 25px);
  padding: clamp(17px, 4vw, 35px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
}

.prp-info-item h4 {
  font-family: var(--font-main);
  color: var(--color-accent-magenta);
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: none;
  font-weight: 700;
}

.prp-info-item p {
  color: #e0e0e0;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
}

.highlight-text {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* Signal Secret */
.signal-secret {
  background-color: #000;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.signal-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 60px);
  max-width: min(100%, 1300px);
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: clamp(15px, 4vw, 30px);
}

.signal-info-central {
  flex: 2;
  min-width: 320px;
  max-width: min(100%, 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 3vw, 25px);
  padding: clamp(17px, 4vw, 35px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(160, 32, 240, 0.2);
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 0 30px rgba(160, 32, 240, 0.05);
}

.signal-info-item h4 {
  font-family: var(--font-main);
  color: #bf55ec;
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: none;
  font-weight: 700;
}

.signal-info-item p {
  color: #e0e0e0;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
}


.signal-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.signal-image img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 30px rgba(160, 32, 240, 0.15));
}

/* Process Section */
.process-section {
  background-color: #050505;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.process-section h2 {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-subtitle {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: #ccc;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  padding: 0 5%;
}

.process-step {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  padding: clamp(30px, 6vw, 40px) clamp(20px, 4vw, 30px);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(10, 10, 10, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
}

.step-icon {
  height: clamp(100px, 15vw, 154px);
  width: auto;
  margin-bottom: clamp(15px, 3vw, 30px);
  mix-blend-mode: screen;
}

.step-title {
  font-size: 26px;
  margin-bottom: 15px;
}

.step-text {
  font-size: 17px;
  color: #aaa;
}

.process-footer-container {
  margin-top: clamp(40px, 8vw, 80px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-footer-bar {
  height: 1px;
  width: 100%;
  max-width: min(100%, 1100px);
  background: linear-gradient(90deg, rgba(0, 255, 255, 0) 0%, rgba(0, 255, 255, 0.8) 20%, rgba(160, 32, 240, 0.8) 80%, rgba(160, 32, 240, 0) 100%);
}

.process-footer {
  margin: 15px 0;
  font-size: 26px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 153, 255, 0.4);
  letter-spacing: 1px;
  text-transform: none;
}

/* Benefits Section */
.benefits-section {
  background-color: #000;
  padding: 100px 0;
  text-align: center;
}

.benefits-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(15px, 3vw, 30px);
  padding: 0 5%;
  max-width: min(100%, 1400px);
  margin: 0 auto;
}

.benefit-card {
  padding: clamp(20px, 4vw, 40px);
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#050505, #050505), var(--grad-vivid-cyan-purple);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.benefit-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 15px;
  font-weight: 600;
  background: var(--grad-vivid-cyan-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card p {
  font-size: 16px;
  color: #ddd;
  font-weight: 300;
  margin: 0;
}

/* Safety Section */
.safety-section {
  background-color: #000;
  padding: 100px 0;
  color: #fff;
}

.safety-container {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 80px);
  flex-wrap: wrap;
}

.safety-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety-composite-img {
  width: 100%;
  max-width: min(100%, 600px);
  /* Added max-width to prevent over-expansion */
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.safety-visual:hover .safety-composite-img {
  transform: scale(1.02);
}

.safety-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.safety-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: left !important;
  letter-spacing: -0.02em;
  line-height: 1;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3));
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(27px, 6vw, 55px);
}

.safety-icon {
  width: clamp(50px, 8vw, 70px);
  flex-shrink: 0;
}

.safety-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.safety-text p {
  font-size: 16px;
  color: #ddd;
}

/* Timeline Section */
.timeline-section {
  background-color: #000;
  padding: 0 0 100px;
  text-align: center;
}

.timeline-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-graph {
  margin-bottom: clamp(30px, 6vw, 60px);
  width: 100%;
  max-width: min(100%, 1000px);
  display: inline-block;
}

.timeline-graph img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.1));
}

.timeline-phases {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  max-width: min(100%, 1200px);
  margin: 0 auto 10px;
  flex-wrap: wrap;
  text-align: left;
}

.phase-item {
  flex: 1;
  min-width: 280px;
  padding-top: clamp(10px, 2vw, 20px);
  border-top: 2px solid rgba(160, 32, 240, 0.3);
}

.phase-item h3 {
  font-size: clamp(1.7rem, 3.5vw, 2.1rem);
  margin-bottom: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phase-item p {
  font-size: 16px;
  color: #ccc;
}

.timeline-note {
  margin-top: 0;
  font-size: 22px;
  color: #fff;
  font-style: italic;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 153, 255, 0.4);
  font-weight: 300;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-cta-final.webp') center center / 100% 100% no-repeat;
  opacity: 0.5;
  z-index: 1;
}

.cta-bg {
  display: none;
}

.cta-section::after {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 1400px);
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3));
}

.cta-text {
  font-size: 24px;
  color: #fff;
  max-width: min(100%, 1100px);
  margin: 0 auto;
}

.cta-box {
  background: transparent;
  border: none;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.cta-action {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-slogan {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  font-style: italic;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 153, 255, 0.4);
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  display: block;
  padding: 25px 0;
  margin: -10px auto 30px auto;
  max-width: fit-content;
}

.cta-slogan::before,
.cta-slogan::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 1200px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #00ffff 50%, #a020f0 80%, transparent 100%);
  opacity: 0.6;
}

.cta-slogan::before {
  top: 0;
}

.cta-slogan::after {
  bottom: 0;
}


/* ==========================================================================
   4. PACIENTES PRP PAGE (pacientesPRP.html)
   ========================================================================== */

/* Sección 1: Hero */
.prp-page .prp-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  background: #000;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.prp-page .prp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-hero-molecules.webp') center center / 100% 100% no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.prp-page .prp-hero-content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 1000px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prp-page .prp-main-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: clamp(10px, 2vw, 20px);
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.prp-page .prp-decor-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: clamp(15px, 3vw, 30px);
}

.prp-page .prp-decor-line {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.prp-page .prp-hero-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-main);
  max-width: min(100%, 800px);
  margin: 0 auto 60px;
  font-weight: 300;
  line-height: 1.4;
}

.prp-page .prp-hero-visual {
  width: 100%;
  max-width: min(100%, 900px);
  position: relative;
}

.prp-page .prp-gema-img {
  width: 100%;
  height: auto;
  animation: floatingGema 6s infinite ease-in-out;
}

@keyframes floatingGema {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Sección 2: Comparativa */
.prp-page .prp-comparativa {
  background-color: #000000;
  padding-top: clamp(15px, 3vw, 30px);
  padding-bottom: clamp(40px, 8vw, 80px);
}

.prp-page .prp-comparativa-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: clamp(10px, 2vw, 20px);
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.prp-page .prp-comparativa-subtitle {
  text-align: left;
  max-width: min(100%, 900px);
  margin: 0 auto 50px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-body);
  font-weight: 300;
  line-height: 1.5;
}

.prp-page .prp-comparativa-visuals-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 40px);
  margin-bottom: clamp(35px, 7vw, 70px);
  flex-wrap: wrap;
}

.prp-page .prp-comp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.prp-page .prp-dish-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  /* Make them circular as per petri dish look */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  /* Subtle glow */
}

.prp-page .prp-comp-col.right .prp-dish-img {
  box-shadow: 0 0 30px rgba(234, 43, 161, 0.2);
  /* Pinkish glow for concentrated */
}

.prp-page .prp-dish-label {
  text-align: center;
  margin-top: clamp(10px, 2vw, 20px);
}

.prp-page .label-title {
  display: block;
  font-size: 1.2rem;
  color: #FFF;
  font-weight: 600;
  margin-bottom: 5px;
}

.prp-page .label-tech {
  font-family: var(--font-sec);
  color: var(--color-text-body);
  font-size: 0.9rem;
}

.prp-page .prp-comp-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

.prp-page .prp-arrow-text {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: #FFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin-bottom: -10px;
}

.prp-page .prp-arrow-graphic {
  font-size: 4rem;
  background: linear-gradient(90deg, #00FFFF, #EA2BA1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(234, 43, 161, 0.4));
}

/* Info Blocks Grid */
.prp-page .prp-info-blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: min(100%, 1200px);
  margin: 0 auto;
  padding-top: clamp(20px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prp-page .prp-info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  padding: 0 20px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.prp-page .prp-info-icon {
  width: clamp(50px, 8vw, 80px);
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.prp-page .prp-info-text {
  font-size: 1rem;
  color: var(--color-text-body);
  text-align: left;
}

.prp-page .prp-info-text strong {
  color: #FFF;
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.prp-page .prp-info-divider {
  width: 1px;
  height: 80px;
  background-color: var(--color-accent-magenta);
  opacity: 0.5;
  align-self: center;
}

@media (max-width: 900px) {
  .prp-page .prp-info-blocks {
    flex-direction: column;
    gap: clamp(15px, 3vw, 30px);
    align-items: flex-start;
  }

  .prp-page .prp-info-item {
    width: 100%;
    padding: 0;
  }

  .prp-page .prp-info-divider {
    display: none;
  }

  .prp-page .prp-comp-arrow-container {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}

/* Sección 3: Filtrado */
.prp-page .prp-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.prp-page .prp-filtrado {
  background-color: #050505;
  /* Fondo ligeramente diferente para contraste */
}

.prp-page .prp-section-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: clamp(10px, 2vw, 20px);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 40%, #A020F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.prp-page .prp-section-subtitle {
  text-align: left;
  max-width: min(100%, 800px);
  margin: 0 auto 60px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-body);
  font-weight: 300;
}

.prp-page .prp-filtrado-layout {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(30px, 6vw, 60px);
}

.prp-page .prp-filtrado-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.prp-page .prp-filtrado-img {
  width: 100%;
  max-width: min(100%, 600px);
  height: auto;
  transition: transform 0.3s ease;
}

.prp-page .prp-filtrado-img:hover {
  transform: scale(1.02);
}

.prp-page .prp-benefits-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 25px);
}

.prp-page .prp-benefit-card {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(12px, 3vw, 25px);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prp-page .prp-benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent-blue);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prp-page .prp-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(24, 99, 220, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.prp-page .prp-benefit-icon {
  width: 100%;
  height: auto;
  max-width: clamp(35px, 5vw, 45px);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.prp-page .prp-benefit-content h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 5px;
  color: #FFF;
  letter-spacing: 1px;
}

.prp-page .prp-benefit-content p {
  font-size: 1rem;
  margin: 0;
  color: #CCC;
  line-height: 1.4;
}

.prp-page .prp-neon-motto {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(24, 99, 220, 0.3);
  margin-top: clamp(20px, 4vw, 40px);
  padding: clamp(10px, 2vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .prp-page .prp-filtrado-layout {
    flex-direction: column;
  }

  .prp-page .prp-benefit-card:hover {
    transform: translateY(-5px);
  }
}

/* Sección 4: Inteligencia Biológica */
.prp-page .prp-inteligencia {
  background-color: #000;
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(40px, 8vw, 80px);
}

.prp-page .prp-section-subtitle-secondary {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #FFF;
  margin-bottom: clamp(12px, 3vw, 25px);
  text-transform: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.prp-page .prp-intro-text {
  text-align: left;
  max-width: min(100%, 800px);
  margin: 0 auto 60px;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-body);
  font-weight: 300;
  line-height: 1.6;
}

.prp-page .prp-inteligencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  max-width: min(100%, 1200px);
  margin: 0 auto;
}

.prp-page .prp-intel-item {
  text-align: center;
  padding: clamp(15px, 3vw, 30px) clamp(10px, 2vw, 20px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.prp-page .prp-intel-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(234, 43, 161, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.prp-page .prp-intel-icon {
  height: clamp(50px, 8vw, 80px);
  width: auto;
  margin-bottom: clamp(12px, 3vw, 25px);
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.2));
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.prp-page .prp-intel-item:hover .prp-intel-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(234, 43, 161, 0.4));
}

.prp-page .prp-intel-item h4 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prp-page .prp-intel-item p {
  font-size: 1rem;
  color: #CCC;
  line-height: 1.5;
  margin: 0;
}

/* Sección 5: Soluciones */
.prp-page .prp-soluciones {
  background: radial-gradient(circle at 80% 50%, rgba(24, 99, 220, 0.15) 0%, #000 60%);
  padding-top: clamp(30px, 6vw, 60px);
  padding-bottom: clamp(50px, 10vw, 100px);
}

.prp-page .prp-soluciones-container {
  display: flex;
  align-items: center;
  /* Alineación vertical centrada */
  justify-content: space-between;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(30px, 6vw, 60px);
}

.prp-page .prp-soluciones-content {
  flex: 1;
  max-width: min(100%, 650px);
  /* Limitar el ancho del contenido de texto */
}

.prp-page .prp-section-title.text-left {
  text-align: left;
  margin-bottom: clamp(12px, 3vw, 25px);
}

.prp-page .prp-section-subtitle.text-left {
  text-align: left;
  margin: 0 0 50px 0;
  max-width: 100%;
}

.prp-page .prp-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Espaciado manejado por padding interno de items */
}

.prp-page .prp-solution-item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 25px);
  padding: 25px 0;
}

.prp-page .prp-solution-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.prp-page .prp-solution-text h4 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  color: #FFF;
  display: inline;
  margin-right: 8px;
  font-weight: 700;
}

.prp-page .prp-solution-text p {
  font-size: 1.1rem;
  color: #CCC;
  display: inline;
  line-height: 1.5;
}

.prp-page .prp-solution-text em {
  color: #FFF;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
}

.prp-page .prp-solution-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #00FFFF 0%, #A020F0 100%);
  opacity: 0.3;
}

.prp-page .prp-soluciones-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.prp-page .prp-body-img {
  width: 100%;
  max-width: 500px;
  /* Ajustar según necesidad visual */
  height: auto;
  transition: transform 0.3s ease;
}

.prp-page .cta-container {
  text-align: center;
  margin-top: clamp(20px, 4vw, 40px);
}

@media (max-width: 992px) {
  .prp-page .prp-soluciones-container {
    flex-direction: column;
    text-align: left;
  }

  .prp-page .prp-soluciones-content {
    max-width: 100%;
  }

  .prp-page .prp-soluciones-visual {
    order: -1;
    /* Mover imagen arriba en móvil si se prefiere, o dejar abajo */
    margin-bottom: clamp(20px, 4vw, 40px);
    width: 100%;
  }

  .prp-page .prp-body-img {
    max-width: 300px;
  }
}


/* ==========================================================================
   4.2. MENSJEROS CELULARES (MCT) PAGE
   ========================================================================== */

.mct-page {
  background-color: #000;
}

.mct-page section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.mct-page .gradient-text {
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}

/* MCT Hero */
.mct-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 4rem;
  background: #000;
  position: relative;
  overflow: hidden;
}

.mct-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-hero-molecules.webp') center center / 100% 100% no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.mct-hero-content {

  position: relative;

  z-index: 2;

  max-width: min(100%, 1000px);

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

}



.mct-page .mct-main-title {

  font-size: clamp(2.5rem, 8vw, 5rem);

  line-height: 1;

  margin-bottom: clamp(10px, 2vw, 20px);

  color: #fff;

  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);

  text-transform: uppercase;

}



.mct-page .mct-decor-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: clamp(15px, 3vw, 30px);
  display: flex;
  justify-content: center;
}

.mct-page .mct-decor-line {
  width: 100%;
  max-width: min(100%, 1000px);
  height: auto;
  opacity: 0.8;
  display: block;
}



.mct-page .mct-hero-text {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: #fff;
  max-width: min(100%, 900px);
  margin: 0 auto 20px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.mct-page .mct-hero-explanation {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: min(100%, 850px);
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
  font-family: var(--font-body);
}

.mct-page .mct-hero-visual {
  width: 100%;
  max-width: min(100%, 600px);
  /* Reducido de 900px para que encaje mejor con el texto largo */
  position: relative;
}



.mct-page .mct-gema-img {

  width: 100%;

  height: auto;

  animation: floatingGema 6s infinite ease-in-out;

}

/* MCT WhatsApp Concept - Dynamic Organic */
.mct-whatsapp-concept {
  position: relative;
  padding: 12rem 0;
  background-color: #000;
  overflow: hidden;
}

.mct-whatsapp-concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-mct-whatsapp.webp') center center / 100% 100% no-repeat;
  opacity: 0.7;
  /* Increased for vibrancy */
  z-index: 1;
}

.mct-whatsapp-concept .container {
  position: relative;
  z-index: 2;
}

.whatsapp-intro-box {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.intro-main {
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  line-height: 1.4;
  color: #fff;
  margin: 0;
  white-space: normal;
}

.intro-main span {
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.whatsapp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  position: relative;
  margin-top: -2rem;
}

.whatsapp-block {
  padding: 3rem 2rem;
  background: rgba(20, 20, 20, 0.6);
  /* Glass effect */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Staggering Effect: Move the middle block down */
.whatsapp-block:nth-child(2) {
  margin-top: 4rem;
  /* Reduced from 6rem to move it slightly up */
  background: rgba(20, 20, 20, 0.8);
  border-color: rgba(24, 99, 220, 0.3);
  box-shadow: 0 0 40px rgba(24, 99, 220, 0.15);
}

/* Connectors (Desktop only) */
@media (min-width: 1024px) {
  .whatsapp-block:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -3.5rem;
    /* Gap span */
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(24, 99, 220, 0.5), rgba(255, 255, 255, 0.1));
    z-index: -1;
  }

  /* Diagonal connector for the staggered block */
  .whatsapp-block:nth-child(1)::after {
    transform: rotate(35deg);
    top: 70%;
    width: 6rem;
    right: -4rem;
  }

  .whatsapp-block:nth-child(2)::after {
    transform: rotate(-35deg);
    top: 30%;
    width: 6rem;
    right: -4rem;
  }
}

.whatsapp-block:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.block-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.block-number {
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  font-family: var(--font-main);
  line-height: 1;
  margin-bottom: -10px;
  /* Overlap effect */
}

.whatsapp-block:hover .block-number {
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 0;
}

.whatsapp-block h3 {
  font-size: 1.8rem;
  color: #fff;
  font-family: var(--font-main);
  text-transform: uppercase;
  margin: 0;
}

.whatsapp-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.instruction-list {
  list-style: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 15px;
}

.instruction-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #ddd;
}

.instruction-list li:last-child {
  margin-bottom: 0;
}

.instruction-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .whatsapp-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-block:nth-child(2) {
    margin-top: 0;
    /* Remove stagger on mobile */
  }

  .whatsapp-block::after {
    display: none;
  }
}

/* MCT Tech Advanced */
.mct-tech-advanced {
  position: relative;
  padding: 10rem 0;
  background: #000;
  overflow: hidden;
}

.mct-tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-hero-molecules.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.mct-tech-advanced .container {
  position: relative;
  z-index: 2;
}

.mct-tech-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.tech-main-img {
  width: 100%;
  max-width: min(100%, 600px);
  filter: drop-shadow(0 0 50px rgba(0, 255, 255, 0.4));
}

.mct-tech-advanced .gradient-text {
  white-space: nowrap;
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 0.5rem;
  text-align: left;
  display: block;
}

.tech-subtitle {
  font-size: 2.2rem;
  color: #00FFFF;
  font-family: var(--font-main);
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.tech-intro {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 3rem;
  text-align: left;
}

.tech-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tech-step-item h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: var(--font-main);
}

.tech-step-item p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #aaa;
}

.mct-result-highlight {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
}

.mct-result-highlight p {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  display: inline-block;
}

.mct-result-highlight span {
  color: #00FFFF;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .mct-tech-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mct-tech-visual {
    order: -1;
  }

  .tech-subtitle {
    font-size: 1.8rem;
  }
}

/* MCT Safety */
.mct-safety-container {
  text-align: center;
}

.mct-safety-header p {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 4rem;
}

.mct-safety-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.safety-left,
.safety-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.safety-item {
  padding: 2rem;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
}

.safety-item.problem {
  border-left: 4px solid #555;
}

.safety-item.solution {
  border-left: 4px solid var(--color-accent-blue);
}

.safety-item.advantages {
  border-left: 4px solid var(--color-accent-magenta);
}

.safety-item h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.safety-center {
  flex: 0.8;
}

.fingerprint-img {
  width: 100%;
  max-width: 400px;
}

/* MCT Gel */
.mct-gel {
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding: 100px 0;
}

.mct-gel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-cta-final.webp') center center / 100% 100% no-repeat;
  opacity: 0.5;
  z-index: 1;
}

.mct-gel .container {
  position: relative;
  z-index: 2;
}

.mct-gel-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.mct-gel-image {
  display: flex;
  justify-content: center;
}

.mct-gel-image img {
  width: 100%;
  max-width: 450px;
}

.mct-centered-title {
  display: block !important;
  text-align: center;
  width: 100%;
  margin-bottom: 4rem !important;
}

.innovation-box {
  margin: 2.5rem 0;
  padding: 2.5rem;
  background: rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-left: 4px solid #00FFFF;
  border-radius: 0 20px 20px 0;
  font-style: italic;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.innovation-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.innovation-box strong {
  color: #00FFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.double-action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.action-item {
  position: relative;
  padding-left: 4rem;
  min-height: 60px;
}

.action-item span {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 4rem;
  font-weight: 900;
  opacity: 0.15;
  color: var(--color-accent-magenta);
  line-height: 1;
}

.mct-final-motto {
  margin-top: 2rem;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(24, 99, 220, 0.5);
}

.mct-cta-wrapper {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}

/* MCT Responsive */
@media (max-width: 992px) {

  .mct-hero-grid,
  .mct-tech-layout,
  .mct-gel-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mct-hero-text .subtitle,
  .mct-hero-text .guide-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .mct-safety-content {
    flex-direction: column;
  }

  .mct-comparison-box {
    flex-direction: column;
    padding: 2rem;
  }

  .tech-step {
    flex-direction: column;
    gap: 1rem;
  }
}


/* ==========================================================================
   LANDING �QU� NECESITAS? (QTD)
   ========================================================================== */

.qn-page {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* SECCI�N 1: Hero - �D�nde necesitas ayuda? */
.qn-page .qn-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 2rem;
  background: #000;
  text-align: center;
  overflow: hidden;
}

.qn-page .qn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-hero-molecules.webp') center center / 100% 100% no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.qn-page .qn-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.qn-page .qn-main-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  color: #FFF;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.qn-page .qn-decor-container {
  margin: 0.5rem auto 1.5rem;
  max-width: min(100%, 1000px);
  display: flex;
  justify-content: center;
}

.qn-page .qn-decor-line {
  width: 100%;
  max-width: min(100%, 1000px);
  height: auto;
  opacity: 0.8;
}

/* Reducir animaciones en móviles para mejor performance */
@media (max-width: 768px) {
  .qn-page .qn-label {
    animation-duration: 6s;
    animation-delay: 0s;
  }
}

@media (max-width: 480px) {
  .qn-page .qn-label {
    animation: none;
  }
}

.qn-page .qn-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  color: var(--color-text-main);
  max-width: 100%;
  /* Permitir que ocupe todo el ancho necesario */
  margin: 0 auto 1.5rem;
  line-height: 1.2;
  white-space: nowrap;
  /* Forzar una sola l�nea */
}

@media (max-width: 900px) {
  .qn-page .qn-hero-subtitle {
    white-space: normal;
    /* Permitir salto en pantallas peque�as para evitar scroll horizontal */
    max-width: 90%;
  }
}

.qn-page .qn-hero-visual-wrapper {
  position: relative;
  margin: 1.2rem auto;
  max-width: clamp(180px, 40vw, 350px);
  z-index: 3;
}

.qn-page .qn-body-graphic-container {
  position: relative;
  display: inline-block;
}

.qn-page .qn-body-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(24, 99, 220, 0.4));
  border-radius: 20px;
}

.qn-page .qn-label {
  position: absolute;
  font-family: var(--font-main);
  /* Cambiado a Barlow Condensed (Industrial) */
  font-size: clamp(0.75rem, 2vw, 1.3rem);
  /* Aumentado ligeramente a petici�n */
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 16px);
  /* Ajustado padding proporcionalmente */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 25, 45, 0.75) 100%);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-left: 5px solid var(--color-accent-blue);
  /* Barra un poco m�s gruesa */
  border-radius: 2px;
  /* Esquinas m�s angulares para look industrial */
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  /* Mayor espaciado para un look m�s t�cnico */
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatLabel 4s ease-in-out infinite, pulseBorder 3s infinite alternate;
}

.qn-page .qn-label:hover {
  transform: scale(1.1) translateY(-5px);
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

@keyframes pulseBorder {
  0% {
    border-color: rgba(0, 255, 255, 0.2);
  }

  100% {
    border-color: rgba(0, 255, 255, 0.6);
  }
}

@keyframes floatLabel {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Retrasos para movimiento org�nico desincronizado */
.qn-page .label-imagen {
  top: 6%;
  right: 100%;
  animation-delay: 0s;
}

.qn-page .label-movimiento-der {
  top: 25%;
  right: 100%;
  animation-delay: 1.5s;
}

.qn-page .label-bienestar {
  top: 50%;
  right: 100%;
  animation-delay: 0.5s;
}

.qn-page .label-movimiento-izq {
  top: 48%;
  left: 100%;
  animation-delay: 2s;
}

.qn-page .label-recuperacion {
  top: 78%;
  left: 100%;
  animation-delay: 1s;
}

/* Ajustes Responsive */
@media (max-width: 1150px) {

  .qn-page .label-imagen,
  .qn-page .label-movimiento-der,
  .qn-page .label-bienestar {
    right: 100%;
    transform: translateX(10px);
  }

  .qn-page .label-movimiento-izq,
  .qn-page .label-recuperacion {
    left: 100%;
    transform: translateX(-10px);
  }
}

@media (max-width: 768px) {
  .qn-page .qn-hero-visual-wrapper {
    max-width: clamp(180px, 45vw, 240px);
    /* A�n m�s peque�o en m�vil para dar espacio */
    margin: 3rem auto;
  }

  .qn-page .qn-label {
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  }

  /* En m�viles, evitamos solapamiento forzando un poco m�s la separaci�n */
  .qn-page .label-imagen,
  .qn-page .label-movimiento-der,
  .qn-page .label-bienestar {
    right: 100%;
    transform: translateX(5px);
  }

  .qn-page .label-movimiento-izq,
  .qn-page .label-recuperacion {
    left: 100%;
    transform: translateX(-5px);
  }
}

/* Móviles muy pequeños - evitar scroll horizontal */
@media (max-width: 375px) {
  .qn-page .qn-label {
    display: none;
  }

  .qn-page .qn-hero-subtitle {
    max-width: 95%;
  }
}

.qn-page .qn-hero-footer-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-accent-blue);
  max-width: min(100%, 900px);
  margin: 3rem auto 0;
  font-style: italic;
  text-shadow: 0 0 10px rgba(24, 99, 220, 0.5);
}

/* Estilos de Secci�n General */
.qn-page .qn-section {
  padding: clamp(80px, 12vh, 120px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.qn-page .qn-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.qn-page .qn-grid-layout.reverse {
  direction: ltr;
}

.qn-page .qn-grid-layout.reverse .qn-text-content {
  order: 2;
}

.qn-page .qn-grid-layout.reverse .qn-visual-content {
  order: 1;
}

.qn-page .qn-section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--grad-vivid-cyan-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qn-page .qn-section-highlight {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-accent-magenta);
  margin-bottom: 2rem;
  font-weight: 400;
}

.qn-page .qn-problem-solution strong {
  display: block;
  font-family: var(--font-main);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.qn-page .qn-problem {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid #333;
}

.qn-page .qn-solution {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-accent-blue);
}

.qn-page .qn-problem p,
.qn-page .qn-solution p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #ccc;
  line-height: 1.6;
}

.qn-page .qn-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.qn-page .qn-benefits-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.qn-page .qn-benefit-icon {
  width: clamp(32px, 8vw, 48px);
  height: auto;
  flex-shrink: 0;
}

.qn-page .qn-areas-tagline {
  margin: 2rem auto 0;
  width: fit-content;
  padding: 1.5rem 2rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
}

.qn-page .qn-areas-tagline p {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  display: inline-block;
  font-weight: 500;
}

.qn-page .qn-featured-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
}

/* Secci�n 3 espec�fica */
.qn-page .qn-dual-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.qn-page .qn-benefit-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.qn-page .qn-benefit-box h4 {
  color: var(--color-accent-blue);
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
}

.qn-page .qn-neon-motto {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 0 10px var(--color-accent-blue);
  font-style: italic;
}

/* Secci�n 4: Salud �ntima */
.qn-page .qn-intimate {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.qn-page .qn-intimate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-intimate-health.webp') center center / 100% 100% no-repeat;
  opacity: 0.5;
  z-index: 1;
}

.qn-page .qn-intimate .container {
  position: relative;
  z-index: 2;
}

.qn-page .qn-intimate-content {
  max-width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 4rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qn-page .qn-problem-solution.centered .qn-problem,
.qn-page .qn-problem-solution.centered .qn-solution {
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.qn-page .qn-services-bar {
  margin-top: 3rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-accent);
  color: var(--color-accent-magenta);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Secci�n 5: CTA */
.qn-page .qn-cta {
  position: relative;
  text-align: center;
  background-color: #000;
  overflow: hidden;
}

.qn-page .qn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../fondos/bg-cta-final.webp') center center / 100% 100% no-repeat;
  opacity: 0.5;
  z-index: 1;
}

.qn-page .qn-cta .container {
  position: relative;
  z-index: 2;
}

.qn-page .qn-cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 4rem;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qn-page .qn-benefits-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.qn-page .qn-benefit-item {
  max-width: 250px;
}

.qn-page .qn-benefit-item .qn-benefit-icon {
  width: clamp(64px, 15vw, 80px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px var(--color-accent-blue));
}

.qn-page .qn-benefit-item p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ccc;
}

.qn-page .qn-closing-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #fff;
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 1150px) {
  .qn-page .label-movimiento-izq {
    left: 0;
  }

  .qn-page .label-bienestar {
    left: 0;
  }

  .qn-page .label-movimiento-der {
    right: 0;
  }

  .qn-page .label-recuperacion {
    right: 0;
  }
}

@media (max-width: 600px) {
  .qn-page .qn-dual-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .qn-page .qn-benefit-box {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .qn-page .qn-grid-layout {
    gap: 2rem;
    text-align: center;
  }

  .qn-page .qn-grid-layout.reverse .qn-visual-content {
    grid-row: 1;
  }

  .qn-page .qn-problem,
  .qn-page .qn-solution {
    border: none;
    padding-left: 0;
  }

  .qn-page .qn-dual-benefits {
    grid-template-columns: 1fr;
  }

  .qn-page .qn-intimate-content {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
}