/* =====================================================
   PATITAS — LANDING PAGE DESIGN SYSTEM
   ===================================================== */

:root {
  --patitas-blue: #2F6F7E;
  --patitas-green: #7AC943;
  --patitas-mustard: #E8B547;
  --patitas-dark: #333333;
  --patitas-ivory: #FAF8F4;
  --patitas-white: #FFFFFF;
  --patitas-soft-blue: #EAF3F5;
  --patitas-soft-green: #F1F8EA;
  --patitas-border: #DDE6E8;

  --patitas-radius-sm: 10px;
  --patitas-radius-md: 18px;
  --patitas-radius-lg: 28px;

  --patitas-shadow-sm: 0 8px 24px rgba(47, 111, 126, 0.10);
  --patitas-shadow-md: 0 20px 50px rgba(47, 111, 126, 0.15);

  --patitas-container: 1200px;
}

/* Base general */

.patitas-section,
.patitas-section * {
  box-sizing: border-box;
}

.patitas-section {
  font-family: "Lato", Arial, sans-serif;
  color: var(--patitas-dark);
}

.patitas-container {
  width: min(100% - 40px, var(--patitas-container));
  margin: 0 auto;
}

.patitas-section h1,
.patitas-section h2,
.patitas-section h3,
.patitas-section h4 {
  margin-top: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--patitas-dark);
  letter-spacing: -0.02em;
}

.patitas-section p {
  margin-top: 0;
  line-height: 1.7;
}

/* Botones */

.patitas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.patitas-btn:hover {
  transform: translateY(-2px);
}

.patitas-btn-primary {
  background: var(--patitas-mustard);
  color: var(--patitas-dark) !important;
  box-shadow: 0 10px 25px rgba(232, 181, 71, 0.30);
}

.patitas-btn-primary:hover {
  background: #F0BF55;
  color: var(--patitas-dark) !important;
  box-shadow: 0 14px 30px rgba(232, 181, 71, 0.38);
}

.patitas-btn-secondary {
  border-color: var(--patitas-blue);
  background: transparent;
  color: var(--patitas-blue) !important;
}

/* Etiquetas */

.patitas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Accesibilidad */

.patitas-btn:focus-visible,
.patitas-section a:focus-visible {
  outline: 3px solid rgba(232, 181, 71, 0.65);
  outline-offset: 4px;
}

/* Responsive general */

@media (max-width: 767px) {
  .patitas-container {
    width: min(100% - 30px, var(--patitas-container));
  }

  .patitas-btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
  }
}
/* =====================================================
   LANDING PATITAS V2
   HERO — DOS MODALIDADES DE IMPLEMENTACIÓN
   ===================================================== */

.patitas-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(232, 181, 71, 0.14),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #f8f5ed 0%,
      #ffffff 54%,
      #eef6f7 100%
    );
}

.patitas-v2-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      var(--patitas-blue) 0%,
      var(--patitas-blue) 52%,
      var(--patitas-mustard) 52%,
      var(--patitas-mustard) 100%
    );
}

/* Decoraciones */

.patitas-v2-hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.patitas-v2-hero-decoration-one {
  top: -250px;
  right: -220px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-v2-hero-decoration-two {
  bottom: -260px;
  left: -210px;
  width: 500px;
  height: 500px;
  background: rgba(232, 181, 71, 0.055);
}

/* Estructura */

.patitas-v2-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(430px, 0.98fr);
  gap: 72px;
  align-items: center;
}

/* =====================================================
   CONTENIDO PRINCIPAL
   ===================================================== */

.patitas-v2-hero-content {
  max-width: 760px;
}

.patitas-v2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(47, 111, 126, 0.14);
  border-radius: 999px;
  background: rgba(47, 111, 126, 0.07);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.patitas-v2-hero-content h1 {
  max-width: 760px;
  margin: 0 0 23px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.patitas-v2-hero-content h1 span {
  position: relative;
  display: inline;
  color: var(--patitas-blue);
}

.patitas-v2-hero-content h1 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  z-index: -1;
  height: 10px;
  border-radius: 10px;
  background: rgba(232, 181, 71, 0.35);
}

.patitas-v2-hero-lead {
  max-width: 700px;
  margin: 0 0 27px;
  color: #575f61;
  font-size: 17px;
  line-height: 1.75;
}

/* Mensaje de elección */

.patitas-v2-hero-choice-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 700px;
  margin-bottom: 24px;
  padding: 17px 19px;
  border-left: 4px solid var(--patitas-mustard);
  border-radius: 0 14px 14px 0;
  background: rgba(232, 181, 71, 0.1);
}

.patitas-v2-hero-choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-v2-hero-choice-intro p {
  margin: 0;
  color: #555b5d;
  font-size: 13px;
  line-height: 1.55;
}

.patitas-v2-hero-choice-intro strong {
  display: block;
  margin-bottom: 2px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
}

/* =====================================================
   BOTONES
   ===================================================== */

.patitas-v2-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-width: 720px;
  margin-bottom: 17px;
}

.patitas-v2-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 72px;
  padding: 13px 15px;
  border-radius: 15px;
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.patitas-v2-button:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

/* Botón digital */

.patitas-v2-button-digital {
  border: 1px solid var(--patitas-blue);
  background: var(--patitas-blue);
  color: #ffffff;
  box-shadow: 0 13px 27px rgba(47, 111, 126, 0.22);
}

.patitas-v2-button-digital:hover {
  background: #255e6b;
  color: #ffffff;
  box-shadow: 0 17px 34px rgba(47, 111, 126, 0.3);
}

/* Botón personalizado */

.patitas-v2-button-guided {
  border: 1px solid rgba(47, 111, 126, 0.19);
  background: #ffffff;
  color: var(--patitas-dark);
  box-shadow: 0 10px 25px rgba(47, 111, 126, 0.1);
}

.patitas-v2-button-guided:hover {
  border-color: rgba(47, 111, 126, 0.38);
  background: var(--patitas-soft-blue);
  color: var(--patitas-dark);
  box-shadow: 0 15px 31px rgba(47, 111, 126, 0.16);
}

/* Iconos */

.patitas-v2-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.patitas-v2-button-digital .patitas-v2-button-icon {
  background: rgba(255, 255, 255, 0.14);
}

.patitas-v2-button-guided .patitas-v2-button-icon {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-v2-button-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-v2-button-copy small,
.patitas-v2-button-copy strong {
  display: block;
}

.patitas-v2-button-copy small {
  margin-bottom: 3px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2;
  opacity: 0.72;
  text-transform: uppercase;
}

.patitas-v2-button-copy strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-v2-button-arrow {
  font-size: 18px;
}

/* Enlace secundario */

.patitas-v2-hero-discover {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px 3px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.patitas-v2-hero-discover:hover {
  color: var(--patitas-blue);
  text-decoration: underline;
}

/* Confianza */

.patitas-v2-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 730px;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 111, 126, 0.12);
}

.patitas-v2-hero-trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
}

.patitas-v2-hero-trust-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--patitas-soft-green);
  color: #508a32;
  font-size: 10px;
  font-weight: 700;
}

.patitas-v2-hero-trust-item p {
  margin: 0;
  color: #6a7072;
  font-size: 10px;
  line-height: 1.4;
}

/* =====================================================
   PANEL DE MODALIDADES
   ===================================================== */

.patitas-v2-hero-panel {
  position: relative;
  padding: 29px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(40, 82, 91, 0.17);
  backdrop-filter: blur(9px);
}

.patitas-v2-hero-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 35px;
  left: 35px;
  z-index: -1;
  height: 30px;
  border-radius: 22px;
  background: rgba(47, 111, 126, 0.08);
}

.patitas-v2-panel-header {
  margin-bottom: 22px;
  text-align: center;
}

.patitas-v2-panel-header > span {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-v2-panel-header h2 {
  max-width: 430px;
  margin: 0 auto 9px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.3;
}

.patitas-v2-panel-header p {
  max-width: 420px;
  margin: 0 auto;
  color: #696f70;
  font-size: 12px;
  line-height: 1.55;
}

/* Modalidades */

.patitas-v2-modalities {
  display: grid;
  gap: 10px;
}

.patitas-v2-modality {
  padding: 21px;
  border-radius: 19px;
}

.patitas-v2-modality-digital {
  border: 1px solid rgba(47, 111, 126, 0.18);
  background:
    linear-gradient(
      145deg,
      rgba(47, 111, 126, 0.09),
      rgba(47, 111, 126, 0.025)
    );
}

.patitas-v2-modality-guided {
  border: 1px solid rgba(232, 181, 71, 0.25);
  background:
    linear-gradient(
      145deg,
      rgba(232, 181, 71, 0.12),
      rgba(232, 181, 71, 0.025)
    );
}

.patitas-v2-modality-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 14px;
}

.patitas-v2-modality-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.patitas-v2-modality-digital
.patitas-v2-modality-number {
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-v2-modality-guided
.patitas-v2-modality-number {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

.patitas-v2-modality-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #6e7475;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patitas-v2-modality-label {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patitas-v2-modality h3 {
  margin: 0 0 8px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-v2-modality > p {
  margin: 0 0 14px;
  color: #62696a;
  font-size: 11px;
  line-height: 1.55;
}

.patitas-v2-modality ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patitas-v2-modality li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: start;
  color: #565d5f;
  font-size: 10px;
  line-height: 1.4;
}

.patitas-v2-modality li > span {
  color: var(--patitas-blue);
  font-weight: 700;
}

/* Conector O */

.patitas-v2-modalities-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
}

.patitas-v2-modalities-connector > span {
  height: 1px;
  background: rgba(47, 111, 126, 0.12);
}

.patitas-v2-modalities-connector strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #8a8f90;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
}

/* Pie del panel */

.patitas-v2-panel-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-v2-panel-footer-mark {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 9px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.patitas-v2-panel-footer p {
  margin: 0;
  color: #767c7e;
  font-size: 9px;
  line-height: 1.4;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 1100px) {

  .patitas-v2-hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(390px, 0.9fr);
    gap: 45px;
  }

  .patitas-v2-hero-content h1 {
    font-size: 51px;
  }

  .patitas-v2-hero-actions {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

}

@media (max-width: 991px) {

  .patitas-v2-hero {
    padding: 80px 0 75px;
  }

  .patitas-v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .patitas-v2-hero-content {
    max-width: 820px;
  }

  .patitas-v2-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .patitas-v2-hero-panel {
    max-width: 720px;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-v2-hero {
    padding: 61px 0 58px;
  }

  .patitas-v2-hero-grid {
    gap: 41px;
  }

  .patitas-v2-hero-eyebrow {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .patitas-v2-hero-content h1 {
    margin-bottom: 19px;
    font-size: 38px;
    letter-spacing: -0.025em;
    line-height: 1.12;
  }

  .patitas-v2-hero-content h1 span::after {
    bottom: 1px;
    height: 7px;
  }

  .patitas-v2-hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .patitas-v2-hero-choice-intro {
    grid-template-columns: 1fr;
    padding: 15px 16px;
  }

  .patitas-v2-hero-actions {
    grid-template-columns: 1fr;
  }

  .patitas-v2-button {
    min-height: 69px;
  }

  .patitas-v2-button-copy strong {
    font-size: 12px;
  }

  .patitas-v2-hero-trust {
    display: grid;
    gap: 9px;
  }

  .patitas-v2-hero-panel {
    padding: 22px 17px;
    border-radius: 22px;
  }

  .patitas-v2-panel-header h2 {
    font-size: 22px;
  }

  .patitas-v2-modality {
    padding: 18px 16px;
  }

  .patitas-v2-modality h3 {
    font-size: 17px;
  }

  .patitas-v2-panel-footer {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   HERO V2 — PANEL AUDIOVISUAL
   ===================================================== */

.patitas-v2-video-panel {
  position: relative;
  padding: 25px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(40, 82, 91, 0.18);
  backdrop-filter: blur(9px);
}

.patitas-v2-video-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 35px;
  left: 35px;
  z-index: -1;
  height: 30px;
  border-radius: 22px;
  background: rgba(47, 111, 126, 0.08);
}

/* Encabezado */

.patitas-v2-video-heading {
  margin-bottom: 18px;
  text-align: center;
}

.patitas-v2-video-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-v2-video-heading h2 {
  max-width: 460px;
  margin: 0 auto;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.4;
}

/* Video */

.patitas-v2-video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #173b44;
  box-shadow: 0 15px 35px rgba(31, 75, 84, 0.2);
}

.patitas-v2-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Identidad de Sandra */

.patitas-v2-video-caption {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 16px 3px 17px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-v2-video-caption-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.patitas-v2-video-caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.patitas-v2-video-caption div > span {
  display: block;
  color: var(--patitas-blue);
  font-size: 8px;
  font-weight: 600;
}

.patitas-v2-video-caption > p {
  margin: 0 0 0 7px;
  padding-left: 14px;
  border-left: 1px solid rgba(47, 111, 126, 0.12);
  color: #74797a;
  font-size: 9px;
  line-height: 1.45;
}

/* Modalidades compactas */

.patitas-v2-video-modalities {
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.patitas-v2-video-modality {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.patitas-v2-video-modality:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.patitas-v2-video-modality-digital {
  border: 1px solid rgba(47, 111, 126, 0.16);
  background: var(--patitas-soft-blue);
}

.patitas-v2-video-modality-digital:hover {
  border-color: rgba(47, 111, 126, 0.35);
  box-shadow: 0 10px 23px rgba(47, 111, 126, 0.12);
}

.patitas-v2-video-modality-guided {
  border: 1px solid rgba(232, 181, 71, 0.25);
  background: rgba(232, 181, 71, 0.1);
}

.patitas-v2-video-modality-guided:hover {
  border-color: rgba(232, 181, 71, 0.48);
  box-shadow: 0 10px 23px rgba(145, 111, 36, 0.1);
}

.patitas-v2-video-modality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.patitas-v2-video-modality-digital
.patitas-v2-video-modality-icon {
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-v2-video-modality-guided
.patitas-v2-video-modality-icon {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

.patitas-v2-video-modality div > span {
  display: block;
  margin-bottom: 2px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.patitas-v2-video-modality strong {
  display: block;
  margin-bottom: 2px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-v2-video-modality p {
  margin: 0;
  color: #6a7071;
  font-size: 9px;
  line-height: 1.4;
}

.patitas-v2-video-modality-arrow {
  color: var(--patitas-blue);
  font-size: 17px;
}

/* Pie */

.patitas-v2-video-footer {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-v2-video-footer > span {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.patitas-v2-video-footer p {
  margin: 0;
  color: #797e7f;
  font-size: 8px;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 991px) {

  .patitas-v2-video-panel {
    max-width: 720px;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-v2-video-panel {
    padding: 19px 15px;
    border-radius: 22px;
  }

  .patitas-v2-video-heading h2 {
    font-size: 18px;
  }

  .patitas-v2-video-wrapper {
    border-radius: 14px;
  }

  .patitas-v2-video-caption {
    grid-template-columns: auto 1fr;
  }

  .patitas-v2-video-caption > p {
    grid-column: 1 / -1;
    margin: 3px 0 0;
    padding: 11px 0 0;
    border-top: 1px solid rgba(47, 111, 126, 0.1);
    border-left: 0;
  }

  .patitas-v2-video-modality {
    grid-template-columns: auto 1fr;
  }

  .patitas-v2-video-modality-arrow {
    display: none;
  }

  .patitas-v2-video-footer {
    justify-content: flex-start;
  }

}
/* =====================================================
   COMPONENTES GENERALES DE SECCIÓN
   ===================================================== */

.patitas-section-header {
  max-width: 790px;
  margin-bottom: 52px;
}

.patitas-section-header-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.patitas-section-title {
  margin-bottom: 18px;
  color: var(--patitas-dark);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
}

.patitas-section-description {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #5D5D5D;
  font-size: 18px;
  line-height: 1.7;
}

/* =====================================================
   BLOQUE 2 — IDENTIFICACIÓN CON EL PROBLEMA
   ===================================================== */

.patitas-problem {
  position: relative;
  padding: 90px 0;
  background: #FFFFFF;
}

.patitas-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.patitas-problem-card {
  position: relative;
  min-height: 265px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--patitas-border);
  border-radius: var(--patitas-radius-md);
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.patitas-problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 111, 126, 0.35);
  box-shadow: var(--patitas-shadow-md);
}

.patitas-problem-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(47, 111, 126, 0.08);
  border-radius: 50%;
}

.patitas-problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.patitas-problem-icon-blue {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-problem-icon-mustard {
  background: rgba(232, 181, 71, 0.17);
  color: #A87300;
}

.patitas-problem-icon-green {
  background: var(--patitas-soft-green);
  color: #4F942B;
}

.patitas-problem-card h3 {
  max-width: 440px;
  margin-bottom: 13px;
  color: var(--patitas-blue);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.patitas-problem-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #5F5F5F;
  font-size: 16px;
  line-height: 1.7;
}

/* Conclusión del bloque */

.patitas-problem-conclusion {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 28px 32px;
  border-left: 5px solid var(--patitas-mustard);
  border-radius: 0 var(--patitas-radius-md) var(--patitas-radius-md) 0;
  background: var(--patitas-ivory);
}

.patitas-problem-conclusion-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.patitas-problem-conclusion h3 {
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.patitas-problem-conclusion p {
  margin-bottom: 0;
  color: #555555;
  font-size: 16px;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-problem {
    padding: 75px 0;
  }

  .patitas-problem-card {
    min-height: 285px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-problem {
    padding: 60px 0;
  }

  .patitas-section-header {
    margin-bottom: 36px;
  }

  .patitas-section-title {
    font-size: 31px;
  }

  .patitas-section-description {
    font-size: 16px;
  }

  .patitas-problem-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .patitas-problem-card {
    min-height: auto;
    padding: 27px 24px;
  }

  .patitas-problem-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 19px;
    border-radius: 13px;
  }

  .patitas-problem-card h3 {
    font-size: 19px;
  }

  .patitas-problem-card p {
    font-size: 15px;
  }

  .patitas-problem-conclusion {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 32px;
    padding: 25px 22px;
  }

  .patitas-problem-conclusion h3 {
    font-size: 19px;
  }

  .patitas-problem-conclusion p {
    font-size: 15px;
  }
}
/* =====================================================
   BLOQUE 3 — COSTO INVISIBLE
   ===================================================== */

.patitas-cost {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--patitas-ivory);
}

.patitas-cost::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(47, 111, 126, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.patitas-cost-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: 75px;
  align-items: center;
}

/* Columna de contenido */

.patitas-cost-content .patitas-section-title {
  max-width: 620px;
  margin-bottom: 22px;
}

.patitas-cost-lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--patitas-blue);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.patitas-cost-content > p:not(.patitas-cost-lead) {
  max-width: 650px;
  margin-bottom: 0;
  color: #5C5C5C;
  font-size: 17px;
  line-height: 1.75;
}

.patitas-cost-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 650px;
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--patitas-mustard);
  border-radius: 0 14px 14px 0;
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-cost-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.patitas-cost-highlight p {
  margin-bottom: 0;
  color: #505050;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* Panel visual */

.patitas-cost-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(47, 111, 126, 0.14);
  border-radius: var(--patitas-radius-lg);
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-md);
}

.patitas-cost-panel::after {
  content: "";
  position: absolute;
  top: -65px;
  right: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(122, 201, 67, 0.08);
  pointer-events: none;
}

.patitas-cost-panel-header {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--patitas-border);
}

.patitas-cost-panel-header span {
  display: block;
  max-width: 450px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.patitas-cost-items {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.patitas-cost-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
}

.patitas-cost-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-bg-blue {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-bg-mustard {
  background: rgba(232, 181, 71, 0.18);
  color: #9A6900;
}

.patitas-bg-green {
  background: var(--patitas-soft-green);
  color: #4E922B;
}

.patitas-cost-item h3 {
  margin-bottom: 5px;
  color: var(--patitas-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.patitas-cost-item p {
  margin-bottom: 0;
  color: #686868;
  font-size: 14px;
  line-height: 1.55;
}

.patitas-cost-panel-footer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 23px 24px;
  border-radius: 16px;
  background: var(--patitas-blue);
}

.patitas-cost-panel-label {
  display: block;
  margin-bottom: 5px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patitas-cost-panel-footer strong {
  display: block;
  color: #FFFFFF;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-cost {
    padding: 80px 0;
  }

  .patitas-cost-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .patitas-cost-content {
    max-width: 780px;
  }

  .patitas-cost-panel {
    max-width: 780px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-cost {
    padding: 60px 0;
  }

  .patitas-cost-grid {
    gap: 38px;
  }

  .patitas-cost-lead {
    font-size: 18px;
  }

  .patitas-cost-content > p:not(.patitas-cost-lead) {
    font-size: 15px;
  }

  .patitas-cost-highlight {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding: 21px;
  }

  .patitas-cost-panel {
    padding: 25px 21px;
    border-radius: 21px;
  }

  .patitas-cost-panel-header {
    margin-bottom: 23px;
  }

  .patitas-cost-panel-header span {
    font-size: 18px;
  }

  .patitas-cost-items {
    gap: 20px;
  }

  .patitas-cost-item {
    gap: 14px;
  }

  .patitas-cost-item-icon {
    width: 42px;
    height: 42px;
  }

  .patitas-cost-item h3 {
    font-size: 16px;
  }

  .patitas-cost-item p {
    font-size: 13px;
  }

  .patitas-cost-panel-footer {
    margin-top: 24px;
    padding: 21px;
  }

  .patitas-cost-panel-footer strong {
    font-size: 16px;
  }
}
/* =====================================================
   BLOQUE 4 — CAMBIO DE PARADIGMA
   ===================================================== */

.patitas-paradigm {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--patitas-blue);
}

.patitas-paradigm::before,
.patitas-paradigm::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.patitas-paradigm::before {
  top: -170px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.patitas-paradigm::after {
  bottom: -210px;
  left: -150px;
  width: 430px;
  height: 430px;
  background: rgba(122, 201, 67, 0.07);
}

.patitas-paradigm-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.patitas-paradigm-kicker {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 8px 15px;
  border: 1px solid rgba(232, 181, 71, 0.48);
  border-radius: 999px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patitas-paradigm h2 {
  max-width: 850px;
  margin: 0 auto 22px;
  color: #FFFFFF;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1.12;
}

.patitas-paradigm-main {
  max-width: 830px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.65;
}

.patitas-paradigm-divider {
  width: 74px;
  height: 4px;
  margin: 34px auto;
  border-radius: 999px;
  background: var(--patitas-mustard);
}

.patitas-paradigm-conclusion {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.90);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.55;
}

.patitas-paradigm-conclusion strong {
  display: block;
  margin-top: 8px;
  color: var(--patitas-mustard);
  font-weight: 600;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-paradigm {
    padding: 85px 0;
  }

  .patitas-paradigm-main {
    font-size: 19px;
  }

  .patitas-paradigm-conclusion {
    font-size: 21px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-paradigm {
    padding: 68px 0;
  }

  .patitas-paradigm-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .patitas-paradigm h2 {
    margin-bottom: 19px;
    font-size: 34px;
    line-height: 1.15;
  }

  .patitas-paradigm-main {
    font-size: 17px;
    line-height: 1.65;
  }

  .patitas-paradigm-divider {
    width: 58px;
    margin: 27px auto;
  }

  .patitas-paradigm-conclusion {
    font-size: 18px;
    line-height: 1.55;
  }
}
/* =====================================================
   BLOQUE 5 — PRESENTACIÓN DEL MÉTODO PATITAS
   ===================================================== */

.patitas-method {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: #FFFFFF;
}

.patitas-method::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(47, 111, 126, 0.045);
  pointer-events: none;
}

.patitas-method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 75px;
  align-items: center;
}

/* Contenido */

.patitas-method-content .patitas-section-title {
  margin-bottom: 18px;
}

.patitas-method-lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--patitas-blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.patitas-method-content > p:not(.patitas-method-lead) {
  max-width: 660px;
  margin-bottom: 17px;
  color: #5E5E5E;
  font-size: 17px;
  line-height: 1.75;
}

.patitas-method-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 650px;
  margin-top: 28px;
  padding: 23px 25px;
  border: 1px solid rgba(122, 201, 67, 0.27);
  border-radius: 16px;
  background: var(--patitas-soft-green);
}

.patitas-method-promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--patitas-green);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}

.patitas-method-promise strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.patitas-method-promise span:not(.patitas-method-promise-icon) {
  display: block;
  color: #5A5A5A;
  font-size: 14px;
}

/* Tarjeta visual */

.patitas-method-card {
  position: relative;
  overflow: hidden;
  padding: 35px;
  border: 1px solid rgba(47, 111, 126, 0.14);
  border-radius: var(--patitas-radius-lg);
  background: var(--patitas-ivory);
  box-shadow: var(--patitas-shadow-md);
}

.patitas-method-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(232, 181, 71, 0.08);
  pointer-events: none;
}

.patitas-method-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.12);
}

.patitas-method-card-header span {
  display: block;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

/* Etapas */

.patitas-method-stages {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.patitas-method-stage {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 17px;
  background: #FFFFFF;
  box-shadow: 0 8px 22px rgba(40, 61, 68, 0.06);
}

.patitas-method-stage-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.patitas-stage-pa .patitas-method-stage-code {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-stage-ti .patitas-method-stage-code {
  background: rgba(232, 181, 71, 0.19);
  color: #9A6800;
}

.patitas-stage-tas .patitas-method-stage-code {
  background: var(--patitas-soft-green);
  color: #4D912A;
}

.patitas-method-stage-label {
  display: block;
  margin-bottom: 3px;
  color: #888888;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-method-stage h3 {
  margin-bottom: 5px;
  color: var(--patitas-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.patitas-method-stage p {
  margin-bottom: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.55;
}

/* Resultado */

.patitas-method-result {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--patitas-blue);
}

.patitas-method-result span {
  display: block;
  margin-bottom: 5px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-method-result strong {
  display: block;
  color: #FFFFFF;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-method {
    padding: 82px 0;
  }

  .patitas-method-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .patitas-method-content,
  .patitas-method-visual {
    max-width: 800px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-method {
    padding: 62px 0;
  }

  .patitas-method-grid {
    gap: 38px;
  }

  .patitas-method-lead {
    font-size: 19px;
  }

  .patitas-method-content > p:not(.patitas-method-lead) {
    font-size: 15px;
  }

  .patitas-method-promise {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 21px;
  }

  .patitas-method-card {
    padding: 24px 20px;
    border-radius: 21px;
  }

  .patitas-method-card-header span {
    font-size: 17px;
  }

  .patitas-method-stage {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .patitas-method-stage-code {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 20px;
  }

  .patitas-method-stage h3 {
    font-size: 16px;
  }

  .patitas-method-stage p {
    font-size: 13px;
  }

  .patitas-method-result {
    padding: 20px;
  }

  .patitas-method-result strong {
    font-size: 16px;
  }
}
/* =====================================================
   BLOQUE 6 — CÓMO FUNCIONA EL MÉTODO PATITAS
   ===================================================== */

.patitas-process {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--patitas-ivory);
}

.patitas-process::before {
  content: "";
  position: absolute;
  top: 110px;
  left: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(47, 111, 126, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

/* Línea de proceso */

.patitas-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.patitas-process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.patitas-process-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 5px solid var(--patitas-ivory);
  border-radius: 50%;
  background: var(--patitas-blue);
  box-shadow: 0 8px 20px rgba(47, 111, 126, 0.20);
  color: #FFFFFF;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* Tarjetas */

.patitas-process-card {
  min-height: 355px;
  padding: 31px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: var(--patitas-radius-md);
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.patitas-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--patitas-shadow-md);
}

.patitas-process-phase {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patitas-process-step:nth-child(2) .patitas-process-phase {
  background: rgba(232, 181, 71, 0.18);
  color: #946400;
}

.patitas-process-step:nth-child(3) .patitas-process-phase {
  background: var(--patitas-soft-green);
  color: #4D8F2B;
}

.patitas-process-step:nth-child(4) .patitas-process-phase {
  background: rgba(47, 111, 126, 0.10);
  color: var(--patitas-blue);
}

.patitas-process-card h3 {
  margin-bottom: 13px;
  color: var(--patitas-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.patitas-process-card > p {
  margin-bottom: 20px;
  color: #616161;
  font-size: 15px;
  line-height: 1.7;
}

/* Lista */

.patitas-process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patitas-process-list li {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: #555555;
  font-size: 14px;
  line-height: 1.55;
}

.patitas-process-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--patitas-green);
  font-size: 15px;
  font-weight: 700;
}

/* Resumen inferior */

.patitas-process-summary {
  max-width: 930px;
  margin: 52px auto 0;
  padding: 30px 35px;
  border-radius: var(--patitas-radius-md);
  background: var(--patitas-blue);
  text-align: center;
  box-shadow: var(--patitas-shadow-md);
}

.patitas-process-summary-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(232, 181, 71, 0.45);
  border-radius: 999px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-process-summary p {
  max-width: 810px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.patitas-process-summary strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-process {
    padding: 82px 0;
  }

  .patitas-process-timeline {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .patitas-process-card {
    min-height: auto;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-process {
    padding: 62px 0;
  }

  .patitas-process-timeline {
    gap: 20px;
  }

  .patitas-process-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .patitas-process-number {
    width: 50px;
    height: 50px;
    border-width: 4px;
    font-size: 12px;
  }

  .patitas-process-card {
    padding: 25px 22px;
  }

  .patitas-process-card h3 {
    font-size: 19px;
  }

  .patitas-process-card > p {
    font-size: 14px;
  }

  .patitas-process-list li {
    font-size: 13px;
  }

  .patitas-process-summary {
    margin-top: 35px;
    padding: 25px 21px;
  }

  .patitas-process-summary p {
    font-size: 16px;
  }
}
/* =====================================================
   BLOQUE 7 — BENEFICIOS Y TRANSFORMACIÓN
   ===================================================== */

.patitas-benefits {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: #FFFFFF;
}

.patitas-benefits::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -170px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(122, 201, 67, 0.05);
  pointer-events: none;
}

/* Cuadrícula */

.patitas-benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Tarjetas */

.patitas-benefit-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: var(--patitas-radius-md);
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.patitas-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 111, 126, 0.30);
  box-shadow: var(--patitas-shadow-md);
}

/* Íconos SVG */

.patitas-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  border-radius: 17px;
}

.patitas-benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-benefit-icon-blue {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-benefit-icon-mustard {
  background: rgba(232, 181, 71, 0.18);
  color: #966500;
}

.patitas-benefit-icon-green {
  background: var(--patitas-soft-green);
  color: #4D912A;
}

/* Contenido */

.patitas-benefit-card h3 {
  margin-bottom: 13px;
  color: var(--patitas-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.patitas-benefit-card > p {
  margin-bottom: 24px;
  color: #626262;
  font-size: 15px;
  line-height: 1.7;
}

.patitas-benefit-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-benefit-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-benefit-result strong {
  display: block;
  color: #4E4E4E;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* Cierre inferior */

.patitas-benefits-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 52px;
  padding: 35px 38px;
  border-radius: var(--patitas-radius-md);
  background: var(--patitas-ivory);
  border: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-benefits-bottom-label {
  display: block;
  margin-bottom: 8px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-benefits-bottom h3 {
  max-width: 760px;
  margin: 0;
  color: var(--patitas-dark);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}

.patitas-benefits-bottom .patitas-btn {
  white-space: nowrap;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-benefits {
    padding: 82px 0;
  }

  .patitas-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patitas-benefit-card {
    min-height: 370px;
  }

  .patitas-benefits-bottom {
    grid-template-columns: 1fr;
  }

  .patitas-benefits-bottom .patitas-btn {
    justify-self: start;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-benefits {
    padding: 62px 0;
  }

  .patitas-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .patitas-benefit-card {
    min-height: auto;
    padding: 26px 23px;
  }

  .patitas-benefit-icon {
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    border-radius: 15px;
  }

  .patitas-benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .patitas-benefit-card h3 {
    font-size: 19px;
  }

  .patitas-benefit-card > p {
    font-size: 14px;
  }

  .patitas-benefit-result strong {
    font-size: 14px;
  }

  .patitas-benefits-bottom {
    gap: 23px;
    margin-top: 35px;
    padding: 27px 23px;
  }

  .patitas-benefits-bottom h3 {
    font-size: 20px;
  }

  .patitas-benefits-bottom .patitas-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
/* =====================================================
   BLOQUE 8 — PARA QUIÉN ES Y PARA QUIÉN NO ES
   ===================================================== */

.patitas-fit {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--patitas-ivory);
}

.patitas-fit::before {
  content: "";
  position: absolute;
  bottom: -190px;
  left: -170px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(47, 111, 126, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

/* Cuadrícula principal */

.patitas-fit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Paneles */

.patitas-fit-panel {
  padding: 35px;
  border-radius: var(--patitas-radius-lg);
  background: #FFFFFF;
  box-shadow: var(--patitas-shadow-md);
}

.patitas-fit-yes {
  border: 1px solid rgba(122, 201, 67, 0.30);
}

.patitas-fit-no {
  border: 1px solid rgba(47, 111, 126, 0.18);
}

/* Cabecera */

.patitas-fit-panel-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-fit-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.patitas-fit-yes .patitas-fit-symbol {
  background: var(--patitas-soft-green);
  color: #4D912A;
}

.patitas-fit-no .patitas-fit-symbol {
  background: rgba(47, 111, 126, 0.10);
  color: var(--patitas-blue);
}

.patitas-fit-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-fit-yes .patitas-fit-label {
  color: #4D912A;
}

.patitas-fit-no .patitas-fit-label {
  color: var(--patitas-blue);
}

.patitas-fit-panel-header h3 {
  margin: 0;
  color: var(--patitas-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

/* Listas */

.patitas-fit-list {
  display: grid;
  gap: 17px;
}

.patitas-fit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
}

.patitas-fit-item p {
  margin: 0;
  color: #5D5D5D;
  font-size: 15px;
  line-height: 1.65;
}

.patitas-fit-check,
.patitas-fit-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-fit-check {
  background: var(--patitas-soft-green);
  color: #4D912A;
}

.patitas-fit-cross {
  background: rgba(47, 111, 126, 0.09);
  color: var(--patitas-blue);
}

/* Conclusión */

.patitas-fit-conclusion {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 950px;
  margin: 48px auto 0;
  padding: 29px 32px;
  border-radius: var(--patitas-radius-md);
  background: var(--patitas-blue);
  box-shadow: var(--patitas-shadow-md);
}

.patitas-fit-conclusion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.patitas-fit-conclusion span {
  display: block;
  margin-bottom: 6px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-fit-conclusion h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-fit {
    padding: 82px 0;
  }

  .patitas-fit-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-fit {
    padding: 62px 0;
  }

  .patitas-fit-grid {
    gap: 20px;
  }

  .patitas-fit-panel {
    padding: 25px 22px;
    border-radius: 21px;
  }

  .patitas-fit-panel-header {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 23px;
    padding-bottom: 21px;
  }

  .patitas-fit-symbol {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 22px;
  }

  .patitas-fit-panel-header h3 {
    font-size: 19px;
  }

  .patitas-fit-list {
    gap: 15px;
  }

  .patitas-fit-item p {
    font-size: 14px;
  }

  .patitas-fit-conclusion {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 35px;
    padding: 25px 22px;
  }

  .patitas-fit-conclusion h3 {
    font-size: 18px;
  }
}
/* =====================================================
   BLOQUE 9 — SANDRA ARIAS / AUTORIDAD
   ===================================================== */

.patitas-founder {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #FFFFFF;
}

.patitas-founder::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(232, 181, 71, 0.07);
  pointer-events: none;
}

.patitas-founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: center;
}

/* Fotografía */

.patitas-founder-visual {
  position: relative;
}

.patitas-founder-photo {
  position: relative;
  max-width: 510px;
  margin: 0 auto;
}

.patitas-founder-photo::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -24px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--patitas-soft-blue);
  pointer-events: none;
}

.patitas-founder-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  box-shadow: var(--patitas-shadow-md);
}

/* Insignia sobre fotografía */

.patitas-founder-badge {
  position: absolute;
  right: -22px;
  bottom: 28px;
  z-index: 2;
  min-width: 210px;
  padding: 17px 20px;
  border-radius: 15px;
  background: var(--patitas-blue);
  box-shadow: 0 14px 34px rgba(47, 111, 126, 0.25);
}

.patitas-founder-badge span {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-founder-badge strong {
  display: block;
  color: #FFFFFF;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

/* Frase */

.patitas-founder-quote {
  position: relative;
  z-index: 3;
  max-width: 460px;
  margin: -12px auto 0;
  padding: 24px 26px 23px 60px;
  border: 1px solid rgba(47, 111, 126, 0.11);
  border-radius: 18px;
  background: var(--patitas-ivory);
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-founder-quote > span {
  position: absolute;
  top: 7px;
  left: 19px;
  color: var(--patitas-mustard);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.patitas-founder-quote p {
  margin: 0;
  color: #555555;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* Contenido */

.patitas-founder-content .patitas-section-title {
  max-width: 690px;
  margin-bottom: 20px;
}

.patitas-founder-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--patitas-blue);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.patitas-founder-content > p:not(.patitas-founder-lead) {
  max-width: 700px;
  margin-bottom: 17px;
  color: #5D5D5D;
  font-size: 16px;
  line-height: 1.75;
}

/* Principios */

.patitas-founder-principles {
  display: grid;
  gap: 15px;
  max-width: 710px;
  margin-top: 28px;
}

.patitas-founder-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 19px 20px;
  border: 1px solid rgba(47, 111, 126, 0.11);
  border-radius: 15px;
  background: var(--patitas-ivory);
}

.patitas-founder-principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.patitas-founder-principle:nth-child(2)
.patitas-founder-principle-icon {
  background: rgba(232, 181, 71, 0.18);
  color: #946400;
}

.patitas-founder-principle:nth-child(3)
.patitas-founder-principle-icon {
  background: var(--patitas-soft-green);
  color: #4D912A;
}

.patitas-founder-principle h3 {
  margin-bottom: 4px;
  color: var(--patitas-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.patitas-founder-principle p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.55;
}

/* Firma */

.patitas-founder-signature {
  margin-top: 28px;
  padding-left: 17px;
  border-left: 4px solid var(--patitas-mustard);
}

.patitas-founder-signature strong {
  display: block;
  margin-bottom: 2px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.patitas-founder-signature span {
  display: block;
  color: var(--patitas-blue);
  font-size: 14px;
  font-weight: 600;
}

/* Tableta */

@media (max-width: 991px) {
  .patitas-founder {
    padding: 85px 0;
  }

  .patitas-founder-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .patitas-founder-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .patitas-founder-content {
    max-width: 800px;
  }
}

/* Móvil */

@media (max-width: 767px) {
  .patitas-founder {
    padding: 65px 0;
  }

  .patitas-founder-grid {
    gap: 48px;
  }

  .patitas-founder-photo {
    max-width: calc(100% - 16px);
  }

  .patitas-founder-photo::before {
    top: 15px;
    left: -14px;
    border-radius: 22px;
  }

  .patitas-founder-photo img {
    border-radius: 22px;
  }

  .patitas-founder-badge {
    right: -8px;
    bottom: 18px;
    min-width: 185px;
    padding: 14px 16px;
  }

  .patitas-founder-badge strong {
    font-size: 15px;
  }

  .patitas-founder-quote {
    margin-top: 14px;
    padding: 22px 20px 21px 51px;
  }

  .patitas-founder-quote > span {
    left: 15px;
    font-size: 50px;
  }

  .patitas-founder-quote p {
    font-size: 13px;
  }

  .patitas-founder-lead {
    font-size: 18px;
  }

  .patitas-founder-content > p:not(.patitas-founder-lead) {
    font-size: 15px;
  }

  .patitas-founder-principle {
    padding: 17px;
  }

  .patitas-founder-principle h3 {
    font-size: 15px;
  }

  .patitas-founder-principle p {
    font-size: 12px;
  }
}
/* =====================================================
   BLOQUE 10 — CASO REAL CLÍNICA VETERINARIA VILLALOBOS
   ===================================================== */

.patitas-case {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(
      180deg,
      var(--patitas-ivory) 0%,
      #ffffff 100%
    );
}

.patitas-case::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -220px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: rgba(47, 111, 126, 0.055);
  pointer-events: none;
}

.patitas-case::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 130px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(232, 181, 71, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

/* Encabezado */

.patitas-case-header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.patitas-case-eyebrow {
  background: rgba(232, 181, 71, 0.17);
  color: #8d6208;
}

/* Contenedor principal */

.patitas-case-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(370px, 0.83fr)
    minmax(0, 1.17fr);
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}

/* =====================================================
   VIDEO
   ===================================================== */

.patitas-case-video-column {
  position: relative;
}

.patitas-case-video-frame {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: 30px;
  background: #ffffff;
  box-shadow:
    0 26px 60px rgba(47, 111, 126, 0.17),
    0 5px 15px rgba(47, 111, 126, 0.08);
}

.patitas-case-video-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 28px;
  right: -25px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--patitas-soft-blue);
}

/* Etiqueta sobre el video */

.patitas-case-video-label {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 27px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.83);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.patitas-case-video-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--patitas-mustard);
  box-shadow: 0 0 0 4px rgba(232, 181, 71, 0.18);
}

/* Reproductor vertical para YouTube Short */

.patitas-case-video-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 21px;
  background: #1f1f1f;
}

.patitas-case-video-wrapper iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Identificación del protagonista */

.patitas-case-video-caption {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  max-width: 415px;
  margin: -25px auto 0;
  padding: 17px 19px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: var(--patitas-shadow-md);
}

.patitas-case-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-case-video-caption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-case-video-caption span {
  display: block;
  color: #6a6a6a;
  font-size: 11px;
  line-height: 1.45;
}

/* =====================================================
   CONTENIDO DEL CASO
   ===================================================== */

.patitas-case-content {
  max-width: 700px;
}

.patitas-case-content-label {
  display: block;
  margin-bottom: 12px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-case-content > h3 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--patitas-dark);
  font-size: clamp(28px, 3vw, 41px);
  font-weight: 600;
  line-height: 1.23;
}

.patitas-case-content > p {
  max-width: 680px;
  margin-bottom: 17px;
  color: #5d5d5d;
  font-size: 16px;
  line-height: 1.75;
}

/* Datos del caso */

.patitas-case-facts {
  display: grid;
  gap: 13px;
  margin-top: 29px;
}

.patitas-case-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 19px;
  border: 1px solid rgba(47, 111, 126, 0.11);
  border-radius: 15px;
  background: #ffffff;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.patitas-case-fact:hover {
  transform: translateX(4px);
  border-color: rgba(47, 111, 126, 0.25);
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-case-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.patitas-case-fact:nth-child(2)
.patitas-case-fact-icon {
  background: rgba(232, 181, 71, 0.18);
  color: #956500;
}

.patitas-case-fact:nth-child(3)
.patitas-case-fact-icon {
  background: var(--patitas-soft-green);
  color: #4d912a;
}

.patitas-case-fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.patitas-case-fact p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.55;
}

/* Mensaje destacado */

.patitas-case-message {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
  margin-top: 24px;
  padding: 24px 25px;
  border-radius: 18px;
  background: var(--patitas-blue);
  box-shadow: 0 17px 38px rgba(47, 111, 126, 0.2);
}

.patitas-case-message-icon {
  color: var(--patitas-mustard);
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 0.8;
}

.patitas-case-message small {
  display: block;
  margin-bottom: 6px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-case-message p {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

/* =====================================================
   CONCLUSIÓN DEL BLOQUE
   ===================================================== */

.patitas-case-conclusion {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 72px;
  padding: 35px 39px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: var(--patitas-radius-md);
  background: #ffffff;
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-case-conclusion-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-case-conclusion h3 {
  max-width: 780px;
  margin: 0;
  color: var(--patitas-dark);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
}

.patitas-case-conclusion .patitas-btn {
  white-space: nowrap;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 991px) {

  .patitas-case {
    padding: 85px 0;
  }

  .patitas-case-main {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .patitas-case-video-column {
    max-width: 570px;
    margin: 0 auto;
  }

  .patitas-case-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .patitas-case-conclusion {
    grid-template-columns: 1fr;
  }

  .patitas-case-conclusion .patitas-btn {
    justify-self: start;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-case {
    padding: 65px 0;
  }

  .patitas-case-main {
    gap: 57px;
    margin-top: 39px;
  }

  .patitas-case-video-frame {
    max-width: calc(100% - 18px);
    padding: 9px;
    border-radius: 23px;
  }

  .patitas-case-video-frame::before {
    top: 16px;
    right: -14px;
    border-radius: 23px;
  }

  .patitas-case-video-wrapper {
    border-radius: 17px;
  }

  .patitas-case-video-label {
    top: 21px;
    left: 21px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .patitas-case-video-caption {
    max-width: calc(100% - 33px);
    margin-top: -17px;
    padding: 14px 15px;
  }

  .patitas-case-avatar {
    width: 43px;
    height: 43px;
    font-size: 12px;
  }

  .patitas-case-video-caption strong {
    font-size: 13px;
  }

  .patitas-case-video-caption span {
    font-size: 10px;
  }

  .patitas-case-content > h3 {
    font-size: 27px;
  }

  .patitas-case-content > p {
    font-size: 15px;
  }

  .patitas-case-fact {
    padding: 16px;
  }

  .patitas-case-fact-icon {
    width: 39px;
    height: 39px;
  }

  .patitas-case-message {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 22px 20px;
  }

  .patitas-case-message-icon {
    height: 33px;
    font-size: 48px;
  }

  .patitas-case-message p {
    font-size: 14px;
  }

  .patitas-case-conclusion {
    gap: 23px;
    margin-top: 50px;
    padding: 27px 22px;
  }

  .patitas-case-conclusion h3 {
    font-size: 19px;
  }

  .patitas-case-conclusion .patitas-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

}
/* =====================================================
   BLOQUE 11 — EVIDENCIA DEL MÉTODO
   ===================================================== */

.patitas-evidence {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #ffffff;
}

.patitas-evidence::before {
  content: "";
  position: absolute;
  top: 310px;
  left: -210px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(47, 111, 126, 0.045);
  pointer-events: none;
}

.patitas-evidence::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: 280px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(232, 181, 71, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

/* Aclaración */

.patitas-evidence-disclaimer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 920px;
  margin: -10px auto 48px;
  padding: 17px 20px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 14px;
  background: var(--patitas-soft-blue);
}

.patitas-evidence-disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--patitas-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.patitas-evidence-disclaimer p {
  margin: 0;
  color: #506266;
  font-size: 12px;
  line-height: 1.55;
}

.patitas-evidence-disclaimer strong {
  color: var(--patitas-blue);
}

/* =====================================================
   PILARES
   ===================================================== */

.patitas-evidence-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
}

.patitas-evidence-pillar {
  padding: 31px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: var(--patitas-radius-lg);
  background: var(--patitas-ivory);
}

.patitas-evidence-pillar-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 23px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-evidence-pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.patitas-evidence-pillar:nth-child(2)
.patitas-evidence-pillar-number {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

.patitas-evidence-pillar:nth-child(3)
.patitas-evidence-pillar-number {
  background: #70a84f;
}

.patitas-evidence-pillar:nth-child(4)
.patitas-evidence-pillar-number {
  background: #605f7e;
}

.patitas-evidence-pillar-label {
  display: block;
  margin-bottom: 5px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-evidence-pillar-header h3 {
  margin: 0;
  color: var(--patitas-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Testimonios */

.patitas-testimonial-list {
  display: grid;
  gap: 15px;
}

.patitas-testimonial-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  margin: 0;
  padding: 23px;
  border: 1px solid rgba(47, 111, 126, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--patitas-shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.patitas-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--patitas-shadow-md);
}

.patitas-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 17px;
  color: rgba(47, 111, 126, 0.1);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.patitas-testimonial-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  color: #e4ad2e;
  font-size: 14px;
  letter-spacing: 2px;
}

.patitas-testimonial-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 21px;
  color: #565656;
  font-size: 14px;
  line-height: 1.7;
}

.patitas-testimonial-card footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-testimonial-card footer strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-testimonial-card footer span {
  display: block;
  color: #858585;
  font-size: 10px;
  line-height: 1.4;
}

/* =====================================================
   CONVERSACIONES
   ===================================================== */

.patitas-conversations {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 48px;
  border-radius: var(--patitas-radius-lg);
  background: var(--patitas-blue);
  box-shadow: 0 24px 55px rgba(47, 111, 126, 0.2);
}

.patitas-conversations-header {
  max-width: 830px;
  margin: 0 auto 35px;
  text-align: center;
}

.patitas-conversations-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-conversations-header h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

.patitas-conversations-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
  line-height: 1.65;
}

.patitas-conversations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Tarjetas de conversación */

.patitas-conversation-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 17px 38px rgba(24, 63, 72, 0.22);
}

.patitas-conversation-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.1);
}

.patitas-conversation-channel {
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.patitas-conversation-stage {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--patitas-soft-green);
  color: #4c872f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Simulación de chat */

.patitas-chat {
  display: grid;
  gap: 12px;
  min-height: 290px;
  padding: 23px;
  background:
    linear-gradient(
      145deg,
      #f7f3eb 0%,
      #f1eee7 100%
    );
}

.patitas-chat-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 15px;
}

.patitas-chat-message small {
  display: block;
  margin-bottom: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.patitas-chat-message p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.patitas-chat-business {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: #d9f6cc;
  color: #395044;
}

.patitas-chat-business small {
  color: #4d7e40;
}

.patitas-chat-customer {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: #ffffff;
  color: #505050;
  box-shadow: 0 4px 12px rgba(48, 66, 70, 0.08);
}

.patitas-chat-customer small {
  color: var(--patitas-blue);
}

.patitas-conversation-insight {
  padding: 20px 22px 22px;
}

.patitas-conversation-insight span {
  display: block;
  margin-bottom: 6px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-conversation-insight p {
  margin: 0;
  color: #606060;
  font-size: 12px;
  line-height: 1.55;
}

/* =====================================================
   FRASE CENTRAL
   ===================================================== */

.patitas-evidence-statement {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 21px;
  align-items: start;
  max-width: 970px;
  margin: 70px auto 0;
  padding: 37px 40px;
  border: 1px solid rgba(232, 181, 71, 0.24);
  border-radius: var(--patitas-radius-md);
  background: rgba(232, 181, 71, 0.1);
}

.patitas-evidence-statement-quote {
  color: var(--patitas-mustard);
  font-family: Georgia, serif;
  font-size: 67px;
  line-height: 0.85;
}

.patitas-evidence-statement p {
  margin: 0 0 11px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.patitas-evidence-statement div > span {
  display: block;
  color: var(--patitas-blue);
  font-size: 12px;
  font-weight: 600;
}

/* =====================================================
   SEÑALES REPETIDAS
   ===================================================== */

.patitas-evidence-signals {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 45px;
  align-items: center;
  margin-top: 55px;
  padding: 34px 37px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: var(--patitas-radius-md);
  background: var(--patitas-ivory);
}

.patitas-evidence-signals-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-evidence-signals h3 {
  margin: 0;
  color: var(--patitas-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.patitas-evidence-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.patitas-evidence-keywords span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: 999px;
  background: #ffffff;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 991px) {

  .patitas-evidence {
    padding: 85px 0;
  }

  .patitas-evidence-pillars {
    grid-template-columns: 1fr;
  }

  .patitas-testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patitas-conversations {
    padding: 39px 31px;
  }

  .patitas-conversations-grid {
    grid-template-columns: 1fr;
  }

  .patitas-conversation-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .patitas-evidence-signals {
    grid-template-columns: 1fr;
  }

  .patitas-evidence-keywords {
    justify-content: flex-start;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-evidence {
    padding: 65px 0;
  }

  .patitas-evidence-disclaimer {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .patitas-evidence-pillars {
    gap: 20px;
  }

  .patitas-evidence-pillar {
    padding: 23px 20px;
    border-radius: 21px;
  }

  .patitas-evidence-pillar-header {
    grid-template-columns: 1fr;
  }

  .patitas-evidence-pillar-number {
    width: 43px;
    height: 43px;
  }

  .patitas-evidence-pillar-header h3 {
    font-size: 18px;
  }

  .patitas-testimonial-list {
    grid-template-columns: 1fr;
  }

  .patitas-testimonial-card {
    min-height: auto;
    padding: 20px;
  }

  .patitas-testimonial-card > p {
    font-size: 13px;
  }

  .patitas-conversations {
    margin-top: 48px;
    padding: 31px 17px;
    border-radius: 22px;
  }

  .patitas-conversations-header h3 {
    font-size: 22px;
  }

  .patitas-conversation-top {
    padding: 15px 16px;
  }

  .patitas-chat {
    min-height: auto;
    padding: 17px 14px;
  }

  .patitas-chat-message {
    max-width: 94%;
    padding: 12px 13px;
  }

  .patitas-chat-message p {
    font-size: 12px;
  }

  .patitas-evidence-statement {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 48px;
    padding: 27px 22px;
  }

  .patitas-evidence-statement-quote {
    height: 42px;
    font-size: 58px;
  }

  .patitas-evidence-statement p {
    font-size: 19px;
  }

  .patitas-evidence-signals {
    gap: 25px;
    margin-top: 38px;
    padding: 27px 22px;
  }

  .patitas-evidence-signals h3 {
    font-size: 18px;
  }

  .patitas-evidence-keywords {
    gap: 7px;
  }

  .patitas-evidence-keywords span {
    padding: 8px 11px;
    font-size: 9px;
  }

}
/* =====================================================
   BLOQUE 12 — PREGUNTAS FRECUENTES
   ===================================================== */

.patitas-faq {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--patitas-ivory);
}

.patitas-faq::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(47, 111, 126, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.patitas-faq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 75px;
  align-items: start;
}

/* Introducción */

.patitas-faq-intro {
  position: sticky;
  top: 110px;
}

.patitas-faq-intro .patitas-section-title {
  margin-bottom: 20px;
}

.patitas-faq-intro > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: #606060;
  font-size: 16px;
  line-height: 1.75;
}

/* Ayuda */

.patitas-faq-help {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  max-width: 500px;
  padding: 23px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-faq-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.patitas-faq-help span {
  display: block;
  margin-bottom: 5px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.patitas-faq-help p {
  margin: 0 0 10px;
  color: #696969;
  font-size: 12px;
  line-height: 1.55;
}

.patitas-faq-help a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.patitas-faq-help a:hover {
  text-decoration: underline;
}

/* Preguntas */

.patitas-faq-list {
  display: grid;
  gap: 13px;
}

.patitas-faq-item {
  overflow: hidden;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(47, 111, 126, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.patitas-faq-item[open] {
  border-color: rgba(47, 111, 126, 0.27);
  box-shadow: var(--patitas-shadow-sm);
}

.patitas-faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 23px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.patitas-faq-item summary::-webkit-details-marker {
  display: none;
}

.patitas-faq-toggle {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--patitas-soft-blue);
}

.patitas-faq-toggle::before,
.patitas-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--patitas-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.patitas-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.patitas-faq-item[open] .patitas-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.patitas-faq-answer {
  padding: 0 65px 22px 23px;
}

.patitas-faq-answer p {
  margin: 0 0 10px;
  color: #626262;
  font-size: 14px;
  line-height: 1.7;
}

.patitas-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Tableta */

@media (max-width: 991px) {

  .patitas-faq {
    padding: 85px 0;
  }

  .patitas-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .patitas-faq-intro {
    position: static;
    max-width: 800px;
  }

}

/* Móvil */

@media (max-width: 767px) {

  .patitas-faq {
    padding: 65px 0;
  }

  .patitas-faq-grid {
    gap: 35px;
  }

  .patitas-faq-intro > p {
    font-size: 15px;
  }

  .patitas-faq-help {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .patitas-faq-item summary {
    gap: 13px;
    padding: 19px 17px;
    font-size: 13px;
  }

  .patitas-faq-toggle {
    width: 27px;
    height: 27px;
  }

  .patitas-faq-answer {
    padding: 0 17px 19px;
  }

  .patitas-faq-answer p {
    font-size: 13px;
  }

}
/* =====================================================
   BLOQUE 13 — CTA FINAL
   ===================================================== */

.patitas-final-cta {
  position: relative;
  overflow: hidden;
  padding: 115px 0 80px;
  background: var(--patitas-blue);
}

.patitas-final-cta-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.patitas-final-cta-decoration-one {
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.patitas-final-cta-decoration-two {
  bottom: -220px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: rgba(232, 181, 71, 0.06);
}

.patitas-final-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 75px;
  align-items: center;
}

/* Contenido */

.patitas-final-cta-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(232, 181, 71, 0.34);
  border-radius: 999px;
  background: rgba(232, 181, 71, 0.12);
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-final-cta-content h2 {
  max-width: 780px;
  margin-bottom: 23px;
  color: #ffffff;
  font-size: clamp(37px, 4.3vw, 59px);
  font-weight: 600;
  line-height: 1.14;
}

.patitas-final-cta-content > p {
  max-width: 700px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

/* Beneficios */

.patitas-final-cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 21px;
  max-width: 700px;
}

.patitas-final-cta-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.patitas-final-cta-benefit > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-size: 12px;
  font-weight: 700;
}

.patitas-final-cta-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 13px;
  line-height: 1.55;
}

/* Tarjeta */

.patitas-final-card {
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 30px 65px rgba(18, 54, 63, 0.34);
}

.patitas-final-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-final-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  border-radius: 15px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-final-card-top span {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patitas-final-card-top strong {
  display: block;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-final-card-description {
  margin-bottom: 22px;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.65;
}

/* Pasos */

.patitas-final-card-steps {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.patitas-final-card-steps > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
}

.patitas-final-card-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.patitas-final-card-steps p {
  margin: 0;
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1.45;
}

/* Botón WhatsApp */

.patitas-final-whatsapp {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  width: 100%;
  padding: 15px 17px;
  border-radius: 15px;
  background: #1fa463;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 13px 28px rgba(31, 164, 99, 0.24);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.patitas-final-whatsapp:hover {
  transform: translateY(-3px);
  background: #198e55;
  color: #ffffff;
  box-shadow: 0 17px 34px rgba(31, 164, 99, 0.32);
}

.patitas-final-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.patitas-final-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-final-whatsapp strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-final-whatsapp small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.patitas-final-whatsapp-arrow {
  color: #ffffff;
  font-size: 20px;
}

/* Confianza */

.patitas-final-card-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 14px;
}

.patitas-final-card-trust > span {
  font-size: 11px;
}

.patitas-final-card-trust p {
  margin: 0;
  color: #818181;
  font-size: 9px;
  line-height: 1.5;
}

/* Manifiesto */

.patitas-final-manifesto {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 13px;
  align-items: center;
  margin-top: 75px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.patitas-final-manifesto > span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.patitas-final-manifesto p {
  margin: 0 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

/* Tableta */

@media (max-width: 991px) {

  .patitas-final-cta {
    padding: 90px 0 70px;
  }

  .patitas-final-cta-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .patitas-final-card {
    max-width: 620px;
  }

}

/* Móvil */

@media (max-width: 767px) {

  .patitas-final-cta {
    padding: 70px 0 55px;
  }

  .patitas-final-cta-grid {
    gap: 42px;
  }

  .patitas-final-cta-content h2 {
    font-size: 34px;
  }

  .patitas-final-cta-content > p {
    font-size: 15px;
  }

  .patitas-final-cta-benefits {
    grid-template-columns: 1fr;
  }

  .patitas-final-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .patitas-final-card-top strong {
    font-size: 16px;
  }

  .patitas-final-whatsapp {
    grid-template-columns: auto 1fr;
  }

  .patitas-final-whatsapp-arrow {
    display: none;
  }

  .patitas-final-manifesto {
    justify-content: flex-start;
    margin-top: 53px;
  }

  .patitas-final-manifesto p {
    width: calc(100% - 50px);
    margin-right: 0;
  }

}
/* =====================================================
   BLOQUE 14 — FOOTER
   ===================================================== */

.patitas-landing-footer {
  padding: 43px 0 27px;
  background: #234f59;
}

.patitas-landing-footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  gap: 45px;
  align-items: center;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.patitas-landing-footer-brand {
  max-width: 490px;
}

.patitas-landing-footer-brand strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.patitas-landing-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
}

.patitas-landing-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 21px;
}

.patitas-landing-footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.patitas-landing-footer-nav a:hover {
  color: var(--patitas-mustard);
}

.patitas-landing-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
}

.patitas-landing-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

/* Móvil */

@media (max-width: 767px) {

  .patitas-landing-footer {
    padding: 36px 0 24px;
  }

  .patitas-landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .patitas-landing-footer-nav {
    justify-content: flex-start;
  }

  .patitas-landing-footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

}
/* =====================================================
   AJUSTE DE LEGIBILIDAD MÓVIL — HERO PATITAS V2
   ===================================================== */

@media (max-width: 767px) {

  /* Texto introductorio principal */

  .patitas-v2-hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .patitas-v2-hero-choice-intro p {
    font-size: 14px;
    line-height: 1.6;
  }

  .patitas-v2-hero-choice-intro strong {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Botones */

  .patitas-v2-button-copy small {
    font-size: 10px;
    line-height: 1.3;
  }

  .patitas-v2-button-copy strong {
    font-size: 14px;
    line-height: 1.35;
  }

  /* Elementos de confianza */

  .patitas-v2-hero-trust-item p {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Encabezado del panel de video */

  .patitas-v2-video-eyebrow {
    font-size: 10px;
    line-height: 1.4;
  }

  .patitas-v2-video-heading h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  /* Identidad de Sandra */

  .patitas-v2-video-caption strong {
    font-size: 13px;
  }

  .patitas-v2-video-caption div > span {
    font-size: 11px;
    line-height: 1.4;
  }

  .patitas-v2-video-caption > p {
    font-size: 12px;
    line-height: 1.55;
  }

  /* Tarjetas de modalidades */

  .patitas-v2-video-modality div > span {
    font-size: 9px;
    line-height: 1.4;
  }

  .patitas-v2-video-modality strong {
    font-size: 13px;
    line-height: 1.4;
  }

  .patitas-v2-video-modality p {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Pie del panel */

  .patitas-v2-video-footer > span {
    font-size: 9px;
  }

  .patitas-v2-video-footer p {
    font-size: 11px;
    line-height: 1.4;
  }

}
/* =====================================================
   PATITAS V2
   DOS MODALIDADES DE IMPLEMENTACIÓN
   ===================================================== */

.patitas-paths {
  position: relative;
  overflow: hidden;
  padding: 102px 0;
  background:
    radial-gradient(
      circle at 4% 15%,
      rgba(47, 111, 126, 0.08),
      transparent 23%
    ),
    radial-gradient(
      circle at 94% 83%,
      rgba(232, 181, 71, 0.11),
      transparent 25%
    ),
    #f8faf9;
}

.patitas-paths::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -210px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(47, 111, 126, 0.08);
  border-radius: 50%;
}

.patitas-paths::after {
  content: "";
  position: absolute;
  bottom: -270px;
  left: -230px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: rgba(232, 181, 71, 0.045);
}

/* =====================================================
   ENCABEZADO
   ===================================================== */

.patitas-paths-header {
  position: relative;
  z-index: 2;
  max-width: 870px;
  margin: 0 auto 34px;
  text-align: center;
}

.patitas-paths-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(47, 111, 126, 0.15);
  border-radius: 999px;
  background: rgba(47, 111, 126, 0.07);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.patitas-paths-header h2 {
  margin: 0 0 19px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 4.5vw, 57px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.13;
}

.patitas-paths-header h2 span {
  color: var(--patitas-blue);
}

.patitas-paths-header > p {
  max-width: 760px;
  margin: 0 auto;
  color: #626a6c;
  font-size: 16px;
  line-height: 1.72;
}

/* =====================================================
   PRINCIPIO CENTRAL
   ===================================================== */

.patitas-paths-principle {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 47px;
  padding: 19px 23px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(45, 81, 88, 0.07);
}

.patitas-paths-principle-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 8px 12px;
  border-radius: 11px;
  background: var(--patitas-blue);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.patitas-paths-principle p {
  margin: 0;
  color: #596163;
  font-size: 13px;
  line-height: 1.6;
}

.patitas-paths-principle strong {
  color: var(--patitas-dark);
}

/* =====================================================
   ESTRUCTURA DE TARJETAS
   ===================================================== */

.patitas-paths-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    54px
    minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.patitas-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 23px 58px rgba(39, 74, 81, 0.12);
}

.patitas-path-card-digital {
  border: 1px solid rgba(47, 111, 126, 0.18);
}

.patitas-path-card-guided {
  border: 1px solid rgba(232, 181, 71, 0.32);
}

.patitas-path-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
}

.patitas-path-card-digital .patitas-path-card-accent {
  background: var(--patitas-blue);
}

.patitas-path-card-guided .patitas-path-card-accent {
  background: var(--patitas-mustard);
}

/* Encabezado de tarjeta */

.patitas-path-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.patitas-path-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.patitas-path-card-digital .patitas-path-card-number {
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-path-card-guided .patitas-path-card-number {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

.patitas-path-card-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.patitas-path-badge {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(47, 111, 126, 0.11);
  border-radius: 999px;
  background: #f6f8f8;
  color: #6b7274;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.patitas-path-card-digital .patitas-path-badge-primary {
  border-color: transparent;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-path-card-guided .patitas-path-badge-primary {
  border-color: transparent;
  background: rgba(232, 181, 71, 0.17);
  color: #86651f;
}

/* Títulos */

.patitas-path-card-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-path-card h3 {
  margin: 0 0 15px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.22;
}

.patitas-path-card-summary {
  min-height: 104px;
  margin: 0 0 25px;
  color: #62696b;
  font-size: 14px;
  line-height: 1.67;
}

/* =====================================================
   IDEAL PARA
   ===================================================== */

.patitas-path-ideal {
  margin-bottom: 26px;
  padding: 21px;
  border-radius: 17px;
}

.patitas-path-card-digital .patitas-path-ideal {
  background: rgba(47, 111, 126, 0.07);
}

.patitas-path-card-guided .patitas-path-ideal {
  background: rgba(232, 181, 71, 0.11);
}

.patitas-path-ideal-label,
.patitas-path-section-label {
  display: block;
  margin-bottom: 13px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.patitas-path-ideal ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patitas-path-ideal li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: #535b5d;
  font-size: 12px;
  line-height: 1.5;
}

.patitas-path-ideal li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.patitas-path-card-digital .patitas-path-ideal li > span {
  background: rgba(47, 111, 126, 0.14);
  color: var(--patitas-blue);
}

.patitas-path-card-guided .patitas-path-ideal li > span {
  background: rgba(232, 181, 71, 0.22);
  color: #85641f;
}

/* =====================================================
   QUÉ RECIBES
   ===================================================== */

.patitas-path-includes {
  margin-bottom: 24px;
}

.patitas-path-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.patitas-path-includes-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(47, 111, 126, 0.1);
  border-radius: 14px;
  background: #fafbfb;
}

.patitas-path-includes-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

.patitas-path-card-digital .patitas-path-includes-icon {
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-path-card-guided .patitas-path-includes-icon {
  background: rgba(232, 181, 71, 0.15);
  color: #89671f;
}

.patitas-path-includes-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-path-includes-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.patitas-path-includes-item p {
  margin: 0;
  color: #747b7d;
  font-size: 9px;
  line-height: 1.45;
}

/* =====================================================
   NOTA DE TRANSPARENCIA
   ===================================================== */

.patitas-path-card-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 24px;
  padding: 14px 15px;
  border-radius: 13px;
  background: #f7f8f8;
}

.patitas-path-card-note > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(47, 111, 126, 0.16);
  border-radius: 50%;
  color: var(--patitas-blue);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
}

.patitas-path-card-note p {
  margin: 0;
  color: #717779;
  font-size: 10px;
  line-height: 1.5;
}

/* =====================================================
   BOTONES
   ===================================================== */

.patitas-path-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 73px;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 15px;
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.patitas-path-button:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.patitas-path-button-digital {
  background: var(--patitas-blue);
  color: #ffffff;
  box-shadow: 0 14px 27px rgba(47, 111, 126, 0.22);
}

.patitas-path-button-digital:hover {
  background: #255f6c;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(47, 111, 126, 0.28);
}

.patitas-path-button-guided {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  box-shadow: 0 14px 27px rgba(159, 119, 34, 0.17);
}

.patitas-path-button-guided:hover {
  background: #dcaa3e;
  color: var(--patitas-dark);
  box-shadow: 0 18px 34px rgba(159, 119, 34, 0.23);
}

.patitas-path-button-copy small,
.patitas-path-button-copy strong {
  display: block;
}

.patitas-path-button-copy small {
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.3;
  opacity: 0.75;
  text-transform: uppercase;
}

.patitas-path-button-copy strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.patitas-path-button-arrow {
  font-size: 20px;
}

.patitas-path-button-caption {
  margin: 10px 0 0;
  color: #818789;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

/* =====================================================
   DIVISOR CENTRAL
   ===================================================== */

.patitas-paths-divider {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 29px 0;
}

.patitas-paths-divider > span {
  width: 1px;
  height: 100%;
  background: rgba(47, 111, 126, 0.16);
}

.patitas-paths-divider strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(47, 111, 126, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #858b8c;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  box-shadow: 0 8px 18px rgba(45, 78, 85, 0.08);
}

/* =====================================================
   AYUDA PARA DECIDIR
   ===================================================== */

.patitas-paths-decision {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 820px;
  margin: 39px auto 0;
  padding: 19px 22px;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(42, 77, 84, 0.08);
}

.patitas-paths-decision-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 12px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
}

.patitas-paths-decision-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-paths-decision strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
}

.patitas-paths-decision p {
  margin: 0;
  color: #686f71;
  font-size: 11px;
  line-height: 1.55;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 1100px) {

  .patitas-path-card {
    padding: 28px;
  }

  .patitas-path-card h3 {
    font-size: 25px;
  }

  .patitas-path-includes-grid {
    grid-template-columns: 1fr;
  }

  .patitas-path-card-summary {
    min-height: 128px;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-paths {
    padding: 72px 0;
  }

  .patitas-paths-header {
    margin-bottom: 26px;
    text-align: left;
  }

  .patitas-paths-eyebrow {
    font-size: 9px;
  }

  .patitas-paths-header h2 {
    font-size: 37px;
    line-height: 1.14;
  }

  .patitas-paths-header > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .patitas-paths-principle {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
    padding: 18px;
  }

  .patitas-paths-principle-mark {
    justify-self: start;
  }

  .patitas-paths-principle p {
    font-size: 14px;
    line-height: 1.65;
  }

  .patitas-paths-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .patitas-path-card {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .patitas-path-card-header {
    align-items: flex-start;
    margin-bottom: 21px;
  }

  .patitas-path-card-badges {
    max-width: 190px;
  }

  .patitas-path-badge {
    font-size: 8px;
  }

  .patitas-path-card-kicker {
    font-size: 10px;
  }

  .patitas-path-card h3 {
    font-size: 27px;
    line-height: 1.25;
  }

  .patitas-path-card-summary {
    min-height: 0;
    font-size: 15px;
    line-height: 1.68;
  }

  .patitas-path-ideal {
    padding: 18px;
  }

  .patitas-path-ideal-label,
  .patitas-path-section-label {
    font-size: 11px;
  }

  .patitas-path-ideal li {
    font-size: 14px;
    line-height: 1.55;
  }

  .patitas-path-includes-grid {
    grid-template-columns: 1fr;
  }

  .patitas-path-includes-item {
    padding: 15px;
  }

  .patitas-path-includes-item strong {
    font-size: 14px;
  }

  .patitas-path-includes-item p {
    font-size: 12px;
    line-height: 1.55;
  }

  .patitas-path-card-note p {
    font-size: 12px;
    line-height: 1.6;
  }

  .patitas-path-button-copy small {
    font-size: 9px;
  }

  .patitas-path-button-copy strong {
    font-size: 14px;
  }

  .patitas-path-button-caption {
    font-size: 11px;
  }

  .patitas-paths-divider {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    padding: 1px 17px;
  }

  .patitas-paths-divider > span {
    width: 100%;
    height: 1px;
  }

  .patitas-paths-decision {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 30px;
    padding: 18px;
  }

  .patitas-paths-decision strong {
    font-size: 15px;
  }

  .patitas-paths-decision p {
    font-size: 13px;
    line-height: 1.6;
  }

}
/* =====================================================
   PATITAS V2 — PULIDO TIPOGRÁFICO Y ESPACIADO MÓVIL
   Última actualización: Hero + panel audiovisual
   ===================================================== */

@media (max-width: 767px) {

  /* ---------------------------------
     1. TEXTO PRINCIPAL DEL HERO
     --------------------------------- */

  .patitas-v2-hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #4b5355;
  }

  /* ---------------------------------
     2. BLOQUE AMARILLO:
     UN MISMO MÉTODO, DOS CAMINOS
     --------------------------------- */

  .patitas-v2-hero-choice-intro strong {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
  }

  .patitas-v2-hero-choice-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: #505759;
  }

  /* ---------------------------------
     3. BOTONES PRINCIPALES
     --------------------------------- */

  .patitas-v2-button-copy small {
    font-size: 10px;
    line-height: 1.3;
  }

  .patitas-v2-button-copy strong {
    font-size: 14px;
    line-height: 1.4;
  }

  /* ---------------------------------
     4. BENEFICIOS CON CHECK
     --------------------------------- */

  .patitas-v2-hero-trust {
    margin-bottom: 14px;
  }

  .patitas-v2-hero-trust-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #5a6163;
  }

  /* ---------------------------------
     5. ENCABEZADO DEL PANEL DE VIDEO
     --------------------------------- */

  .patitas-v2-video-heading {
    margin-bottom: 24px;
  }

  .patitas-v2-video-eyebrow {
    font-size: 10px;
    line-height: 1.4;
  }

  .patitas-v2-video-heading h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  /* ---------------------------------
     6. IDENTIDAD DE SANDRA
     --------------------------------- */

  .patitas-v2-video-caption strong {
    font-size: 14px;
    line-height: 1.4;
  }

  .patitas-v2-video-caption div > span {
    font-size: 12px;
    line-height: 1.45;
  }

  .patitas-v2-video-caption > p {
    font-size: 13px;
    line-height: 1.65;
    color: #5a6163;
  }

  /* ---------------------------------
     7. TARJETAS DE MODALIDADES
     --------------------------------- */

  .patitas-v2-video-modality div > span {
    font-size: 10px;
    line-height: 1.4;
  }

  .patitas-v2-video-modality strong {
    font-size: 15px;
    line-height: 1.4;
  }

  .patitas-v2-video-modality p {
    font-size: 13px;
    line-height: 1.6;
    color: #5f6668;
  }

  /* ---------------------------------
     8. PIE DEL PANEL
     --------------------------------- */

  .patitas-v2-video-footer > span {
    font-size: 9px;
  }

  .patitas-v2-video-footer p {
    font-size: 12px;
    line-height: 1.45;
  }

}
/* =====================================================
   PATITAS V2 — ENTREGA C
   FAQ + CTA FINAL CON DOS MODALIDADES
   ===================================================== */


/* =====================================================
   FAQ V2
   ===================================================== */

.patitas-faq-v2 {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
}

.patitas-faq-v2-header {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.patitas-faq-v2-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(47, 111, 126, 0.14);
  border-radius: 999px;
  background: rgba(47, 111, 126, 0.07);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-faq-v2-header h2 {
  margin: 0 0 18px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.patitas-faq-v2-header h2 span {
  color: var(--patitas-blue);
}

.patitas-faq-v2-header > p {
  max-width: 740px;
  margin: 0 auto;
  color: #626a6c;
  font-size: 16px;
  line-height: 1.72;
}

.patitas-faq-v2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 35px;
  align-items: start;
}

/* Preguntas */

.patitas-faq-v2-list {
  display: grid;
  gap: 12px;
}

.patitas-faq-v2-item {
  overflow: hidden;
  border: 1px solid rgba(47, 111, 126, 0.12);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(40, 73, 80, 0.055);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.patitas-faq-v2-item[open] {
  border-color: rgba(47, 111, 126, 0.28);
  box-shadow: 0 13px 31px rgba(40, 73, 80, 0.09);
}

.patitas-faq-v2-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 20px 21px;
  cursor: pointer;
  list-style: none;
}

.patitas-faq-v2-item summary::-webkit-details-marker {
  display: none;
}

.patitas-faq-v2-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 11px;
  background: var(--patitas-soft-blue);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.patitas-faq-v2-item summary strong {
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.patitas-faq-v2-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(47, 111, 126, 0.16);
  border-radius: 50%;
  background: #f7f9f9;
}

.patitas-faq-v2-toggle::before,
.patitas-faq-v2-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--patitas-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.patitas-faq-v2-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.patitas-faq-v2-item[open]
.patitas-faq-v2-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.patitas-faq-v2-answer {
  padding: 0 22px 21px 74px;
}

.patitas-faq-v2-answer p {
  margin: 0 0 10px;
  color: #61696b;
  font-size: 13px;
  line-height: 1.7;
}

.patitas-faq-v2-answer p:last-child {
  margin-bottom: 0;
}

.patitas-faq-v2-answer strong {
  color: var(--patitas-dark);
}

/* Panel lateral */

.patitas-faq-v2-aside {
  position: sticky;
  top: 105px;
  padding: 29px;
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      var(--patitas-blue),
      #245b67
    );
  color: #ffffff;
  box-shadow: 0 23px 55px rgba(40, 80, 89, 0.23);
}

.patitas-faq-v2-aside-mark {
  display: inline-flex;
  margin-bottom: 23px;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.patitas-faq-v2-aside-eyebrow {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  opacity: 0.72;
  text-transform: uppercase;
}

.patitas-faq-v2-aside h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.25;
}

.patitas-faq-v2-aside > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.patitas-faq-v2-aside-options {
  display: grid;
  gap: 10px;
}

.patitas-faq-v2-aside-options a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.patitas-faq-v2-aside-options a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.17);
  color: #ffffff;
  text-decoration: none;
}

.patitas-faq-v2-aside-options span,
.patitas-faq-v2-aside-options strong {
  display: block;
}

.patitas-faq-v2-aside-options span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  opacity: 0.7;
  text-transform: uppercase;
}

.patitas-faq-v2-aside-options strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.4;
}

.patitas-faq-v2-aside-options b {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 18px;
}

.patitas-faq-v2-aside-note {
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.63) !important;
  font-size: 9px !important;
  line-height: 1.5 !important;
  text-align: center;
}


/* =====================================================
   CTA FINAL V2
   ===================================================== */

.patitas-final-v2 {
  position: relative;
  overflow: hidden;
  padding: 102px 0 87px;
  background:
    linear-gradient(
      145deg,
      #224f5a 0%,
      var(--patitas-blue) 52%,
      #326f7c 100%
    );
}

.patitas-final-v2-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.patitas-final-v2-decoration-one {
  top: -290px;
  right: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.patitas-final-v2-decoration-two {
  bottom: -330px;
  left: -240px;
  width: 650px;
  height: 650px;
  background: rgba(232, 181, 71, 0.07);
}

.patitas-final-v2-header {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.patitas-final-v2-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patitas-final-v2-header h2 {
  margin: 0 0 19px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(39px, 4.7vw, 59px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.patitas-final-v2-header h2 span {
  display: block;
  color: var(--patitas-mustard);
}

.patitas-final-v2-header > p {
  max-width: 730px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

/* Tarjetas */

.patitas-final-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    56px
    minmax(0, 1fr);
  gap: 19px;
  align-items: stretch;
}

.patitas-final-v2-card {
  display: flex;
  flex-direction: column;
  padding: 31px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 25px 62px rgba(17, 45, 51, 0.24);
}

.patitas-final-v2-card-digital {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.patitas-final-v2-card-guided {
  border: 2px solid rgba(232, 181, 71, 0.68);
}

.patitas-final-v2-card-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.patitas-final-v2-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.patitas-final-v2-card-digital
.patitas-final-v2-card-number {
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-final-v2-card-guided
.patitas-final-v2-card-number {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

.patitas-final-v2-card-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f5;
  color: #687173;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.patitas-final-v2-card-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patitas-final-v2-card h3 {
  margin: 0 0 14px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.patitas-final-v2-card > p {
  margin: 0 0 20px;
  color: #626a6c;
  font-size: 13px;
  line-height: 1.67;
}

.patitas-final-v2-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 18px;
  border-radius: 15px;
  background: #f7f9f9;
  list-style: none;
}

.patitas-final-v2-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  color: #555e60;
  font-size: 12px;
  line-height: 1.5;
}

.patitas-final-v2-card li > span {
  color: var(--patitas-blue);
  font-weight: 700;
}

/* Botones finales */

.patitas-final-v2-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 73px;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 15px;
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.patitas-final-v2-button:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.patitas-final-v2-button span small,
.patitas-final-v2-button span strong {
  display: block;
}

.patitas-final-v2-button span small {
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  opacity: 0.75;
  text-transform: uppercase;
}

.patitas-final-v2-button span strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.patitas-final-v2-button b {
  font-size: 20px;
}

.patitas-final-v2-button-digital {
  background: var(--patitas-blue);
  color: #ffffff;
  box-shadow: 0 14px 27px rgba(47, 111, 126, 0.22);
}

.patitas-final-v2-button-digital:hover {
  background: #255e6b;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(47, 111, 126, 0.29);
}

.patitas-final-v2-button-guided {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  box-shadow: 0 14px 27px rgba(155, 114, 28, 0.18);
}

.patitas-final-v2-button-guided:hover {
  background: #dcaa3e;
  color: var(--patitas-dark);
  box-shadow: 0 18px 34px rgba(155, 114, 28, 0.24);
}

.patitas-final-v2-card-note {
  margin: 10px 0 0 !important;
  color: #7b8284 !important;
  font-size: 9px !important;
  line-height: 1.45 !important;
  text-align: center;
}

/* Separador */

.patitas-final-v2-separator {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 27px 0;
}

.patitas-final-v2-separator > span {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
}

.patitas-final-v2-separator strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
}

/* Manifiesto */

.patitas-final-v2-manifesto {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  max-width: 870px;
  margin: 43px auto 0;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.patitas-final-v2-manifesto > span {
  color: var(--patitas-mustard);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.patitas-final-v2-manifesto > i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.patitas-final-v2-manifesto p {
  margin: 0 0 0 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
}


/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 991px) {

  .patitas-faq-v2-layout {
    grid-template-columns: 1fr;
  }

  .patitas-faq-v2-aside {
    position: relative;
    top: auto;
  }

  .patitas-final-v2-card {
    padding: 26px;
  }

}


/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-faq-v2 {
    padding: 72px 0;
  }

  .patitas-faq-v2-header {
    margin-bottom: 32px;
    text-align: left;
  }

  .patitas-faq-v2-eyebrow {
    font-size: 9px;
  }

  .patitas-faq-v2-header h2 {
    font-size: 36px;
    line-height: 1.15;
  }

  .patitas-faq-v2-header > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .patitas-faq-v2-item summary {
    grid-template-columns: auto 1fr;
    gap: 11px;
    padding: 17px 15px;
  }

  .patitas-faq-v2-item summary strong {
    font-size: 14px;
    line-height: 1.5;
  }

  .patitas-faq-v2-toggle {
    display: none;
  }

  .patitas-faq-v2-answer {
    padding: 0 16px 18px 63px;
  }

  .patitas-faq-v2-answer p {
    font-size: 14px;
    line-height: 1.7;
  }

  .patitas-faq-v2-aside {
    padding: 24px 20px;
  }

  .patitas-faq-v2-aside-eyebrow {
    font-size: 10px;
  }

  .patitas-faq-v2-aside h3 {
    font-size: 25px;
  }

  .patitas-faq-v2-aside > p {
    font-size: 14px;
  }

  .patitas-faq-v2-aside-options span {
    font-size: 9px;
  }

  .patitas-faq-v2-aside-options strong {
    font-size: 13px;
  }

  .patitas-faq-v2-aside-note {
    font-size: 11px !important;
  }

  /* CTA final */

  .patitas-final-v2 {
    padding: 72px 0 62px;
  }

  .patitas-final-v2-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .patitas-final-v2-eyebrow {
    font-size: 9px;
  }

  .patitas-final-v2-header h2 {
    font-size: 37px;
    line-height: 1.14;
  }

  .patitas-final-v2-header > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .patitas-final-v2-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .patitas-final-v2-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .patitas-final-v2-card-kicker {
    font-size: 10px;
  }

  .patitas-final-v2-card h3 {
    font-size: 27px;
    line-height: 1.25;
  }

  .patitas-final-v2-card > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .patitas-final-v2-card li {
    font-size: 14px;
    line-height: 1.55;
  }

  .patitas-final-v2-button span small {
    font-size: 9px;
  }

  .patitas-final-v2-button span strong {
    font-size: 14px;
  }

  .patitas-final-v2-card-note {
    font-size: 11px !important;
  }

  .patitas-final-v2-separator {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    padding: 1px 17px;
  }

  .patitas-final-v2-separator > span {
    width: 100%;
    height: 1px;
  }

  .patitas-final-v2-manifesto {
    justify-content: flex-start;
    margin-top: 33px;
  }

  .patitas-final-v2-manifesto p {
    flex-basis: 100%;
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 1.55;
  }

}
/* =====================================================
   PATITAS — HERO V3
   HERO INFORMATIVO SIN SALIDAS A HOTMART O WHATSAPP
   ===================================================== */

.patitas-hero-v3 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  border-top: 2px solid var(--patitas-blue);
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(232, 181, 71, 0.12),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fbfaf6 52%,
      #f4f9f8 100%
    );
}

.patitas-hero-v3::before {
  content: "";
  position: absolute;
  top: -225px;
  right: -200px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(47, 111, 126, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.patitas-hero-v3-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(520px, 1.08fr);
  gap: 54px;
  align-items: start;
}

/* =====================================================
   COLUMNA IZQUIERDA
   ===================================================== */

.patitas-hero-v3-content {
  padding-top: 17px;
}

.patitas-hero-v3-content h1 {
  max-width: 650px;
  margin: 0;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 71px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.patitas-hero-v3-content h1 span {
  color: var(--patitas-blue);
}

.patitas-hero-v3-underline {
  display: block;
  width: 42px;
  height: 7px;
  margin: 20px auto 22px;
  border-radius: 999px;
  background: rgba(232, 181, 71, 0.42);
}

.patitas-hero-v3-lead {
  max-width: 650px;
  margin: 0 0 26px;
  color: #4f5759;
  font-size: 15px;
  line-height: 1.78;
}

/* Bloque amarillo */

.patitas-hero-v3-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  max-width: 650px;
  margin-bottom: 17px;
  padding: 18px 20px 18px 16px;
  border-left: 4px solid var(--patitas-mustard);
  border-radius: 0 15px 15px 0;
  background: rgba(232, 181, 71, 0.12);
}

.patitas-hero-v3-intro-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.patitas-hero-v3-intro strong {
  display: block;
  margin-bottom: 4px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.patitas-hero-v3-intro p {
  margin: 0;
  color: #535b5d;
  font-size: 12px;
  line-height: 1.6;
}

/* Enlace interno */

.patitas-hero-v3-scroll-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.patitas-hero-v3-scroll-link:hover {
  color: #255d69;
  text-decoration: none;
}

.patitas-hero-v3-scroll-link span {
  transition: transform 0.2s ease;
}

.patitas-hero-v3-scroll-link:hover span {
  transform: translateY(3px);
}

/* =====================================================
   PANEL DERECHO
   ===================================================== */

.patitas-hero-v3-panel {
  overflow: hidden;
  padding: 24px 21px 20px;
  border: 1px solid rgba(47, 111, 126, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 25px 62px rgba(39, 75, 82, 0.15);
}

.patitas-hero-v3-video-header {
  max-width: 530px;
  margin: 0 auto 19px;
  text-align: center;
}

.patitas-hero-v3-video-header > span {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.patitas-hero-v3-video-header h2 {
  margin: 0;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.35;
}

/* Video */

.patitas-hero-v3-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 12px 28px rgba(20, 34, 37, 0.14);
}

.patitas-hero-v3-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Identidad de Sandra */

.patitas-hero-v3-author {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px 4px 17px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-hero-v3-author-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-hero-v3-author-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-hero-v3-author-name {
  min-width: 145px;
}

.patitas-hero-v3-author-name strong {
  display: block;
  margin-bottom: 3px;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-hero-v3-author-name span {
  display: block;
  color: var(--patitas-blue);
  font-size: 9px;
  line-height: 1.4;
}

.patitas-hero-v3-author > p {
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(47, 111, 126, 0.12);
  color: #596163;
  font-size: 10px;
  line-height: 1.55;
}

/* =====================================================
   MODALIDADES INFORMATIVAS
   ===================================================== */

.patitas-hero-v3-modalities {
  margin-top: 16px;
  padding: 15px 13px 11px;
  border-radius: 18px;
  background: #fafbfa;
}

.patitas-hero-v3-modalities-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
}

.patitas-hero-v3-modalities-title > span {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(47, 111, 126, 0.3)
    );
}

.patitas-hero-v3-modalities-title > span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(47, 111, 126, 0.3),
      transparent
    );
}

.patitas-hero-v3-modalities-title strong {
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.patitas-hero-v3-modalities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Tarjetas que no son botones */

.patitas-hero-v3-modality {
  padding: 17px;
  border-radius: 16px;
  cursor: default;
}

.patitas-hero-v3-modality-digital {
  border: 1px solid rgba(47, 111, 126, 0.26);
  background:
    linear-gradient(
      145deg,
      rgba(47, 111, 126, 0.055),
      rgba(255, 255, 255, 0.8)
    );
}

.patitas-hero-v3-modality-guided {
  border: 1px solid rgba(232, 181, 71, 0.48);
  background:
    linear-gradient(
      145deg,
      rgba(232, 181, 71, 0.09),
      rgba(255, 255, 255, 0.82)
    );
}

.patitas-hero-v3-modality-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.11);
}

.patitas-hero-v3-modality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

.patitas-hero-v3-modality-digital
.patitas-hero-v3-modality-icon {
  background: var(--patitas-blue);
  color: #ffffff;
  box-shadow:
    0 0 0 6px rgba(47, 111, 126, 0.11);
}

.patitas-hero-v3-modality-guided
.patitas-hero-v3-modality-icon {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
  box-shadow:
    0 0 0 6px rgba(232, 181, 71, 0.17);
}

.patitas-hero-v3-modality-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patitas-hero-v3-modality-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.patitas-hero-v3-modality-guided
.patitas-hero-v3-modality-heading span {
  color: #9c7116;
}

.patitas-hero-v3-modality h3 {
  margin: 0;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.32;
}

.patitas-hero-v3-modality ul {
  display: grid;
  gap: 7px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.patitas-hero-v3-modality li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: start;
  color: #565e60;
  font-size: 10px;
  line-height: 1.45;
}

.patitas-hero-v3-modality li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.patitas-hero-v3-modality-digital li > span {
  background: var(--patitas-blue);
  color: #ffffff;
}

.patitas-hero-v3-modality-guided li > span {
  background: var(--patitas-mustard);
  color: var(--patitas-dark);
}

/* Texto inferior */

.patitas-hero-v3-modalities-note {
  max-width: 470px;
  margin: 16px auto 7px;
  color: #586163;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.patitas-hero-v3-modalities-underline {
  display: block;
  width: 45px;
  height: 5px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(232, 181, 71, 0.48);
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 1100px) {

  .patitas-hero-v3-grid {
    grid-template-columns:
      minmax(0, 0.86fr)
      minmax(480px, 1.14fr);
    gap: 35px;
  }

  .patitas-hero-v3-content h1 {
    font-size: 52px;
  }

  .patitas-hero-v3-panel {
    padding: 20px 17px;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-hero-v3 {
    padding: 45px 0 55px;
  }

  .patitas-hero-v3-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .patitas-hero-v3-content {
    padding-top: 0;
  }

  .patitas-hero-v3-content h1 {
    font-size: 45px;
    line-height: 1.08;
  }

  .patitas-hero-v3-underline {
    margin: 18px auto 20px;
  }

  .patitas-hero-v3-lead {
    font-size: 17px;
    line-height: 1.75;
  }

  .patitas-hero-v3-intro {
    padding: 17px 16px;
  }

  .patitas-hero-v3-intro strong {
    font-size: 16px;
    line-height: 1.4;
  }

  .patitas-hero-v3-intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .patitas-hero-v3-scroll-link {
    font-size: 11px;
  }

  .patitas-hero-v3-panel {
    padding: 21px 14px 15px;
    border-radius: 22px;
  }

  .patitas-hero-v3-video-header {
    padding: 0 4px;
  }

  .patitas-hero-v3-video-header > span {
    font-size: 9px;
  }

  .patitas-hero-v3-video-header h2 {
    font-size: 20px;
    line-height: 1.42;
  }

  .patitas-hero-v3-video {
    border-radius: 14px;
  }

  .patitas-hero-v3-author {
    grid-template-columns: auto 1fr;
    gap: 11px;
    padding: 15px 3px 17px;
  }

  .patitas-hero-v3-author-name {
    min-width: 0;
  }

  .patitas-hero-v3-author-name strong {
    font-size: 14px;
  }

  .patitas-hero-v3-author-name span {
    font-size: 11px;
  }

  .patitas-hero-v3-author > p {
    grid-column: 1 / -1;
    padding: 0;
    border-left: 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .patitas-hero-v3-modalities {
    padding: 16px 10px 12px;
  }

  .patitas-hero-v3-modalities-title {
    grid-template-columns: 1fr;
    margin-bottom: 15px;
  }

  .patitas-hero-v3-modalities-title > span {
    display: none;
  }

  .patitas-hero-v3-modalities-title strong {
    font-size: 10px;
  }

  .patitas-hero-v3-modalities-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .patitas-hero-v3-modality {
    padding: 18px 16px;
  }

  .patitas-hero-v3-modality-heading span {
    font-size: 9px;
  }

  .patitas-hero-v3-modality h3 {
    font-size: 18px;
  }

  .patitas-hero-v3-modality li {
    font-size: 13px;
    line-height: 1.55;
  }

  .patitas-hero-v3-modality li > span {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .patitas-hero-v3-modalities-note {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.6;
  }

}

/* =====================================================
   MÓVILES PEQUEÑOS
   ===================================================== */

@media (max-width: 390px) {

  .patitas-hero-v3-content h1 {
    font-size: 40px;
  }

  .patitas-hero-v3-intro {
    grid-template-columns: 1fr;
  }

  .patitas-hero-v3-intro-number {
    width: 35px;
    height: 35px;
  }

}
/* =====================================================
   PATITAS — EVIDENCIA CON CONVERSACIONES REALES V2
   ===================================================== */

.patitas-evidence-conversations-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.patitas-evidence-chat-v2 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 50, 58, 0.15);
}

/* Encabezado */

.patitas-evidence-chat-v2-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(47, 111, 126, 0.1);
  background: #ffffff;
}

.patitas-evidence-chat-v2-person {
  display: flex;
  gap: 11px;
  align-items: center;
}

.patitas-evidence-chat-v2-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: rgba(47, 111, 126, 0.11);
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.patitas-evidence-chat-v2-label {
  display: block;
  margin-bottom: 3px;
  color: #737b7d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.patitas-evidence-chat-v2-person strong {
  display: block;
  color: var(--patitas-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.patitas-evidence-chat-v2-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef7e8;
  color: #5a8a3d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Zona de conversación */

.patitas-evidence-chat-v2-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 24px 22px;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(47, 111, 126, 0.035),
      transparent 24%
    ),
    #f5f2eb;
}

.patitas-evidence-chat-v2-message {
  max-width: 88%;
  padding: 15px 17px;
  border-radius: 17px;
}

.patitas-evidence-chat-v2-message > span {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.patitas-evidence-chat-v2-message p {
  margin: 0 0 9px;
  color: #40484a;
  font-size: 13px;
  line-height: 1.65;
}

.patitas-evidence-chat-v2-message p:last-child {
  margin-bottom: 0;
}

/* Mensaje de WohlPet */

.patitas-evidence-chat-v2-message-business {
  align-self: flex-end;
  border-radius: 17px 17px 4px 17px;
  background: #d7f5c9;
}

.patitas-evidence-chat-v2-message-business > span {
  color: #5a8851;
}

/* Mensaje del cliente */

.patitas-evidence-chat-v2-message-client {
  align-self: flex-start;
  border-radius: 17px 17px 17px 4px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(38, 54, 58, 0.08);
}

.patitas-evidence-chat-v2-message-client > span {
  color: var(--patitas-blue);
}

/* Pie */

.patitas-evidence-chat-v2-footer {
  padding: 19px 21px 21px;
  background: #ffffff;
}

.patitas-evidence-chat-v2-footer > span {
  display: block;
  margin-bottom: 7px;
  color: var(--patitas-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.patitas-evidence-chat-v2-footer p {
  margin: 0;
  color: #626a6c;
  font-size: 12px;
  line-height: 1.65;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 991px) {

  .patitas-evidence-conversations-v2 {
    gap: 18px;
  }

  .patitas-evidence-chat-v2-body {
    padding: 20px 17px;
  }

  .patitas-evidence-chat-v2-message {
    max-width: 94%;
  }

}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 767px) {

  .patitas-evidence-conversations-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .patitas-evidence-chat-v2 {
    border-radius: 19px;
  }

  .patitas-evidence-chat-v2-header {
    padding: 15px 16px;
  }

  .patitas-evidence-chat-v2-avatar {
    width: 37px;
    height: 37px;
  }

  .patitas-evidence-chat-v2-label {
    font-size: 8px;
  }

  .patitas-evidence-chat-v2-person strong {
    font-size: 15px;
  }

  .patitas-evidence-chat-v2-tag {
    padding: 6px 9px;
    font-size: 8px;
  }

  .patitas-evidence-chat-v2-body {
    padding: 20px 14px;
  }

  .patitas-evidence-chat-v2-message {
    max-width: 94%;
    padding: 14px 15px;
  }

  .patitas-evidence-chat-v2-message p {
    font-size: 14px;
    line-height: 1.65;
  }

  .patitas-evidence-chat-v2-footer {
    padding: 18px 17px 20px;
  }

  .patitas-evidence-chat-v2-footer > span {
    font-size: 10px;
  }

  .patitas-evidence-chat-v2-footer p {
    font-size: 13px;
    line-height: 1.65;
  }

}