@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Sora", sans-serif;
  background-color: #f5f6fa;
  color: #1D2128;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.cidet-app ul {
  list-style: none;
}
.cidet-app a {
  text-decoration: none;
  color: inherit;
}
.cidet-app .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cidet-app img {
  max-width: 100%;
  height: auto;
  display: block;
}
.cidet-app a {
  text-decoration: none !important;
  color: inherit;
}
.cidet-app a:hover, .cidet-app a:focus {
  text-decoration: none !important;
}
.cidet-app .badge,
.cidet-app .tag,
.cidet-app .chip {
  all: unset;
  display: inline-flex !important;
  align-items: center;
  box-sizing: border-box;
}
.cidet-app .blog-card__badge,
.cidet-app .modal__tag,
.cidet-app .modal__tag--accent,
.cidet-app .hero-pill__tag,
.cidet-app .page-banner .badge,
.cidet-app .promo-badge,
.cidet-app .filter-badge,
.cidet-app .cat-badge,
.cidet-app .promo-pill,
.cidet-app .promo-pill--accent,
.cidet-app .categories-pill,
.cidet-app .features-pill,
.cidet-app .features-header .features-pill,
.cidet-app .hero .badge,
.cidet-app .membership-banner .membership-banner__content .tag,
.cidet-app .schedule-price,
.cidet-app .meta-price,
.cidet-app .price,
.cidet-app .price-tag {
  box-shadow: none !important;
  font-family: "Sora", sans-serif !important;
}
.cidet-app .btn {
  border-radius: 0px 0px 16px;
}
.cidet-app .btn:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55) !important;
  outline-offset: 2px !important;
}
.cidet-app button.menu-toggle {
  border-radius: 0 !important;
}
.cidet-app button.menu-toggle:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55) !important;
  outline-offset: 2px !important;
}
.cidet-app .main-header {
  font-family: "Sora", sans-serif;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  max-width: 1280px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.73);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
}
.cidet-app .main-header.is-scrolled {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .main-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cidet-app .main-header .logo {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1D2128;
  z-index: 102;
}
.cidet-app .main-header .logo a {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 900px) {
  .cidet-app .main-header .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cidet-app .main-header .nav-list {
  font-family: "Sora", sans-serif;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 2.5%;
  width: 95%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  z-index: 99;
}
.cidet-app .main-header .nav-list.active {
  display: flex;
  animation: slideIn 0.3s ease;
}
.cidet-app .main-header .nav-list li {
  text-align: center;
  margin-bottom: 0.5rem;
}
.cidet-app .main-header .nav-list a {
  display: block;
  color: #1D2128;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s;
}
.cidet-app .main-header .nav-list a:hover {
  background-color: rgba(255, 90, 114, 0.1);
  color: #FF5A72;
}
.cidet-app .main-header .nav-list a.active, .cidet-app .main-header .nav-list a[aria-current=page] {
  background-color: rgba(255, 90, 114, 0.14);
  color: #FF5A72;
  font-weight: 800;
}
@media (min-width: 900px) {
  .cidet-app .main-header .nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transform: none;
    gap: 5px;
  }
  .cidet-app .main-header .nav-list.active {
    animation: none;
  }
  .cidet-app .main-header .nav-list li {
    margin: 0;
  }
  .cidet-app .main-header .nav-list a {
    font-size: 0.95rem;
    padding: 8px 16px;
    color: #1D2128;
    border-radius: 16px 0px 16px;
  }
  .cidet-app .main-header .nav-list a:hover {
    background-color: white;
    box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
    color: #FF5A72;
    transform: translateY(-2px);
  }
  .cidet-app .main-header .nav-list a.active, .cidet-app .main-header .nav-list a[aria-current=page] {
    background-color: #ffffff;
    box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
    color: #03D0FF;
    font-weight: 800;
    transform: none;
  }
}
.cidet-app .main-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 102;
}
.cidet-app .main-header .header-actions .btn-campus {
  background: #1D2128;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .main-header .header-actions .btn-campus i {
  font-size: 0.8rem;
}
.cidet-app .main-header .header-actions .btn-campus:hover {
  background: #FF5A72;
  transform: translateY(-2px);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .main-header .header-actions .menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
@media (min-width: 900px) {
  .cidet-app .main-header .header-actions .menu-toggle {
    display: none;
  }
}
.cidet-app .main-header .header-actions .menu-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #1D2128;
  position: relative;
}
.cidet-app .main-header .header-actions .menu-toggle .hamburger::before, .cidet-app .main-header .header-actions .menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1D2128;
  left: 0;
  transition: 0.3s;
}
.cidet-app .main-header .header-actions .menu-toggle .hamburger::before {
  top: -8px;
}
.cidet-app .main-header .header-actions .menu-toggle .hamburger::after {
  top: 8px;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cidet-app {
  /* Scroll state (JS toggles .is-scrolled) */
}
.cidet-app .main-header.is-scrolled {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .grid {
  display: grid;
  gap: 1.5rem;
}
.cidet-app .grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cidet-app .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cidet-app .grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .cidet-app .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cidet-app {
  /* ==========================================
     LAYOUT HOME: 3 COLUMNAS (ANCHO “FULL” CONTROLADO)
     - No usa 100vw (evita desalineado/scroll)
     - Columna central más ancha
     - Se centra y aprovecha pantallas grandes
  ========================================== */
}
.cidet-app .layout-3-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
  margin-top: 2.25rem;
  margin-bottom: 3.25rem;
}
.cidet-app .layout-3-cols > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .cidet-app .layout-3-cols {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .cidet-app .layout-3-cols .col-sidebar2 {
    grid-column: 1/-1;
  }
  .cidet-app .layout-3-cols .col-main {
    grid-column: 1/2;
  }
  .cidet-app .layout-3-cols .col-sidebar {
    grid-column: 2/3;
  }
}
@media (min-width: 1024px) {
  .cidet-app .layout-3-cols {
    grid-template-columns: minmax(260px, 340px) minmax(0, 2.2fr) minmax(300px, 380px);
  }
  .cidet-app .layout-3-cols .col-sidebar2 {
    grid-column: 1/2;
  }
  .cidet-app .layout-3-cols .col-main {
    grid-column: 2/3;
  }
  .cidet-app .layout-3-cols .col-sidebar {
    grid-column: 3/4;
  }
}
.cidet-app .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cidet-app .main-footer {
  background-color: #f4f4f4;
  padding: 4rem;
  border-top: 1px solid #eee;
  margin-top: 4rem;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 32px 32px 0px 0px;
}
.cidet-app .main-footer .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 900px) {
  .cidet-app .main-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }
}
.cidet-app .main-footer .brand-col .footer-logo {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #1D2128;
  margin-bottom: 1rem;
}
.cidet-app .main-footer .brand-col p {
  color: rgb(71.8695652174, 81.7826086957, 99.1304347826);
  margin: 1.5rem;
  line-height: 1.6;
  max-width: 300px;
}
.cidet-app .main-footer .brand-col .footer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cidet-app .main-footer .brand-col .footer-info i {
  font-size: 1.5rem;
  color: #03D0FF;
}
.cidet-app .main-footer .brand-col .footer-info div {
  display: flex;
  flex-direction: column;
}
.cidet-app .main-footer .brand-col .footer-info div span {
  font-size: 0.85rem;
  color: #888;
}
.cidet-app .main-footer .brand-col .footer-info div a {
  font-weight: 600;
  color: #1D2128;
}
.cidet-app .main-footer .brand-col .footer-info div a:hover {
  color: #FF5A72;
}
.cidet-app .main-footer .links-col h4 {
  font-size: 1.1rem;
  color: #1D2128;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cidet-app .main-footer .links-col ul li {
  margin-bottom: 0.8rem;
}
.cidet-app .main-footer .links-col ul li a {
  color: rgb(71.8695652174, 81.7826086957, 99.1304347826);
  transition: color 0.3s;
  font-size: 0.95rem;
}
.cidet-app .main-footer .links-col ul li a:hover {
  color: #FF5A72;
  padding-left: 5px;
}
.cidet-app .main-footer .footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cidet-app .main-footer .socials-icons {
  display: flex;
  gap: 15px;
}
.cidet-app .main-footer .socials-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #555;
  font-size: 18px;
  transition: all 0.3s ease;
}
.cidet-app .main-footer .socials-icons .social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  transform: translateY(-3px);
}
.cidet-app .main-footer .socials-icons .social-icon.facebook:hover {
  background-color: #1877F2;
  color: white;
  transform: translateY(-3px);
}
.cidet-app .main-footer .socials-icons .social-icon.youtube:hover {
  background-color: #FF0000;
  color: white;
  transform: translateY(-3px);
}
.cidet-app .main-footer .socials-icons .social-icon.linkedin:hover {
  background-color: #0A66C2;
  color: white;
  transform: translateY(-3px);
}
.cidet-app .main-footer .copyright {
  font-size: 0.85rem;
  color: #999;
}
.cidet-app .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.15rem;
  margin: 12px;
  border-radius: 0px 0px 16px;
  border: 1px solid transparent;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.cidet-app .btn:hover {
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .btn:active {
  transform: scale(0.99);
}
.cidet-app .btn:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .btn[disabled], .cidet-app .btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.cidet-app .btn-primary {
  background: #FF5A72;
  color: #ffffff;
}
.cidet-app .btn-primary:hover {
  background: #be001c;
  color: #fff;
}
.cidet-app .btn-secondary {
  background: rgba(3, 208, 255, 0.18);
  color: #1D2128;
  border-color: rgba(3, 208, 255, 0.28);
}
.cidet-app .btn-secondary:hover {
  background: rgb(3, 208, 255);
  border-color: rgb(3, 208, 255);
}
.cidet-app .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: #1D2128;
  border-color: rgba(0, 0, 0, 0.06);
}
.cidet-app .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}
.cidet-app .btn-sm {
  padding: 0.65rem 0.95rem;
  border-radius: 0px 0px 16px;
  font-size: 0.9rem;
}
.cidet-app .btn-block {
  width: 100%;
  justify-content: center;
}
.cidet-app .card {
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  margin-bottom: 2rem;
}
.cidet-app .card:hover {
  transform: translateY(-5px);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #ddd;
}
.cidet-app .card__body {
  padding: 1.5rem;
}
.cidet-app .card__body h3 {
  color: #03D0FF;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.cidet-app .card__body p {
  color: rgb(105, 227.0238095238, 255);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cidet-app .card__footer {
  padding: 1rem 1.5rem;
  background-color: rgb(251.8, 252.12, 253.4);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #FF5A72;
  font-weight: 600;
}
.cidet-app .card__footer i {
  color: #03D0FF;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalPopIn {
  from {
    transform: translateY(10px) scale(0.99);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes modalPopOut {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(10px) scale(0.99);
    opacity: 0;
  }
}
@keyframes sheetUp {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes sheetDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(18px);
    opacity: 0;
  }
}
.cidet-app body.modal-open {
  overflow: hidden;
}
.cidet-app {
  /* =========================
     MODAL (BASE)
  ========================= */
}
.cidet-app .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 1rem;
}
.cidet-app .modal.is-open {
  display: block;
}
.cidet-app .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 33, 40, 0.55);
  backdrop-filter: blur(4px);
  animation: modalFadeIn 160ms ease-out;
}
.cidet-app .modal__dialog {
  position: relative;
  width: min(920px, 100% - 2rem);
  margin: 5vh auto 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: modalPopIn 180ms ease-out;
  max-height: calc(100svh - 2rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cidet-app .modal__content {
  padding: 1.4rem 1.4rem 1.25rem;
}
.cidet-app .modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  z-index: 5;
  color: #FF5A72;
}
.cidet-app .modal__close:hover {
  transform: translateY(-1px);
  color: #fff;
  background: #FF5A72;
}
.cidet-app .modal__close:active {
  transform: translateY(0);
}
.cidet-app .modal__close:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.7rem;
}
.cidet-app .modal__tag--accent {
  color: #03D0FF;
  border: 1px solid rgba(3, 208, 255, 0.28);
  background: rgba(3, 208, 255, 0.1);
}
.cidet-app {
  /* Dentro de modales no usamos el margin global de .btn */
}
.cidet-app .modal .btn {
  margin: 0;
}
.cidet-app {
  /* =========================
     ESTADO CIERRE (SUAVE)
  ========================= */
}
.cidet-app .modal.is-closing .modal__overlay {
  animation: modalFadeOut 160ms ease-out forwards;
}
.cidet-app .modal.is-closing .modal__dialog {
  animation: modalPopOut 180ms ease-out forwards;
}
.cidet-app {
  /* =========================
     MOBILE: BOTTOM SHEET
  ========================= */
}
@media (max-width: 480px) {
  .cidet-app .modal {
    padding: 0;
  }
  .cidet-app .modal__dialog {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px 22px 0 0;
    max-height: 88svh;
    animation: sheetUp 180ms ease-out;
  }
  .cidet-app .modal.is-closing .modal__dialog {
    animation: sheetDown 180ms ease-out forwards;
  }
  .cidet-app .modal__content {
    padding: 1.1rem 1.1rem 0.75rem;
  }
}
.cidet-app {
  /* =========================
     REDUCED MOTION
  ========================= */
}
@media (prefers-reduced-motion: reduce) {
  .cidet-app .modal__overlay,
  .cidet-app .modal__dialog,
  .cidet-app .modal.is-closing .modal__overlay,
  .cidet-app .modal.is-closing .modal__dialog {
    animation: none !important;
  }
  .cidet-app .modal__close,
  .cidet-app .modal .btn {
    transition: none !important;
  }
}
.cidet-app {
  /* ==========================================
     MODAL: MEMBRESÍAS (HOME) — look como referencia
  ========================================== */
}
.cidet-app .modal--memberships {
  /* Desktop: más ancho para evitar recorte vertical del contenido */
}
@media (min-width: 769px) {
  .cidet-app .modal--memberships .modal__dialog {
    width: min(1120px, 100% - 2rem);
  }
}
.cidet-app .modal--memberships .memberships-modal__title {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
}
.cidet-app .modal--memberships .memberships-modal__lead {
  margin-top: 0.4rem;
  margin-bottom: 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.55;
  max-width: 70ch;
}
.cidet-app .modal--memberships .memberships-modal__grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .cidet-app .modal--memberships .memberships-modal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
}
.cidet-app .modal--memberships .plan-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .modal--memberships .plan-card__head {
  padding: 1.15rem 1.1rem;
  background: linear-gradient(90deg, rgba(255, 90, 114, 0.14), rgba(3, 208, 255, 0.1));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cidet-app .modal--memberships .plan-card__mark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  color: rgba(255, 90, 114, 0.92);
  text-align: center;
}
.cidet-app .modal--memberships .plan-card__num {
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 3.75rem);
  line-height: 1;
}
.cidet-app .modal--memberships .plan-card__stack {
  display: grid;
  line-height: 1.05;
  transform: translateY(-0.08rem);
}
.cidet-app .modal--memberships .plan-card__label {
  font-weight: 900;
  font-size: 1.05rem;
  color: rgba(29, 33, 40, 0.84);
}
.cidet-app .modal--memberships .plan-card__unit {
  font-weight: 900;
  font-size: 1.55rem;
  color: rgba(255, 90, 114, 0.92);
}
.cidet-app .modal--memberships .plan-card__body {
  padding: 1.05rem 1.1rem 1.1rem;
}
.cidet-app .modal--memberships .plan-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #1D2128;
}
.cidet-app .modal--memberships .plan-card__desc {
  margin-top: 0.35rem;
  margin-bottom: 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.55;
}
.cidet-app .modal--memberships .plan-card__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.cidet-app .modal--memberships .plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(29, 33, 40, 0.78);
  line-height: 1.42;
}
.cidet-app .modal--memberships .plan-card__list li i {
  margin-top: 0.15rem;
  color: #03D0FF;
}
.cidet-app .modal--memberships .plan-card__rec {
  margin: 0.9rem 0 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.55;
}
.cidet-app .modal--memberships .plan-card__rec strong {
  color: #1D2128;
}
.cidet-app .modal--memberships .plan-card__cta {
  margin-top: 0.85rem;
  width: max-content;
}
.cidet-app .modal--memberships .memberships-modal__actions {
  margin-top: 1.15rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.cidet-app .modal--memberships .memberships-modal__actions .btn {
  border-radius: 999px;
  padding-inline: 1.2rem;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .modal--memberships .memberships-modal__note {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(29, 33, 40, 0.7);
}
.cidet-app .modal--memberships .memberships-modal__note i {
  color: #03D0FF;
}
@media (max-width: 480px) {
  .cidet-app .modal--memberships .memberships-modal__actions {
    position: sticky;
    bottom: 0;
    margin: 1rem -1.1rem 0;
    padding: 0.9rem 1.1rem 1rem;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .cidet-app .modal--memberships .memberships-modal__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.cidet-app .sidebar {
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  padding: 1rem;
}
.cidet-app .sidebar .sidebar__title {
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #1D2128;
}
.cidet-app .sidebar .sidebar__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.cidet-app .sidebar .sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: #1D2128;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cidet-app .sidebar .sidebar__nav a:hover {
  background: rgba(255, 90, 114, 0.08);
  border-color: rgba(255, 90, 114, 0.14);
}
.cidet-app .sidebar .sidebar__nav a:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .sidebar .sidebar__nav a.active {
  background: rgba(255, 90, 114, 0.12);
  border-color: rgba(255, 90, 114, 0.22);
  font-weight: 900;
}
.cidet-app .blog-coming-soon .blog-coming-soon__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cidet-app {
  /* =========================
    LAYOUT BLOG (igual que Cronograma: filtros izq, lista der)
  ========================= */
}
.cidet-app .blog-page {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.cidet-app {
  /* Columna derecha: artículos apilados (uno debajo del otro) */
}
.cidet-app .col-blog {
  min-width: 0;
}
.cidet-app {
  /* Grid de artículos: siempre 1 columna para que al desplegarse se vean completos */
}
.cidet-app .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  min-height: 200px;
}
.cidet-app .blog-no-results {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.73);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  color: rgba(29, 33, 40, 0.7);
  border: 1px solid rgba(29, 33, 40, 0.08);
}
.cidet-app .blog-no-results p {
  margin: 0;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}
.cidet-app {
  /* =========================
    TARJETA DE ARTÍCULO (card)
  ========================= */
}
.cidet-app .blog-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(29, 33, 40, 0.06);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  font-family: "Sora", sans-serif;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.cidet-app .blog-card:hover {
  border-color: rgba(3, 208, 255, 0.2);
  box-shadow: 1px 6px 16px rgba(0, 0, 0, 0.06);
}
.cidet-app .blog-card.is-expanded {
  border-color: rgba(3, 208, 255, 0.25);
  box-shadow: 1px 8px 24px rgba(0, 0, 0, 0.08);
}
.cidet-app .blog-card__trigger {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}
.cidet-app .blog-card__trigger:hover {
  background: rgba(3, 208, 255, 0.04);
}
.cidet-app .blog-card__trigger:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.5);
  outline-offset: 2px;
}
.cidet-app .blog-card.is-expanded .blog-card__trigger {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(29, 33, 40, 0.08);
}
.cidet-app {
  /* Badge categoría (pill) - marca */
}
.cidet-app .blog-card__badge {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
  background: rgba(3, 208, 255, 0.12);
  color: #03D0FF;
  border: 1px solid rgba(3, 208, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cidet-app {
  /* Tema secundario */
}
.cidet-app .blog-card__topic {
  font-size: 0.85rem;
  color: rgba(29, 33, 40, 0.6);
  font-weight: 600;
}
.cidet-app {
  /* Título */
}
.cidet-app .blog-card__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 900;
  color: #1D2128;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
}
.cidet-app .blog-card.is-expanded .blog-card__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.cidet-app {
  /* Fecha */
}
.cidet-app .blog-card__date {
  font-size: 0.82rem;
  color: rgba(29, 33, 40, 0.55);
  margin-top: auto;
}
.cidet-app .blog-card__chevron {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.9rem;
  color: rgba(3, 208, 255, 0.8);
  transition: transform 0.25s ease;
}
.cidet-app .blog-card.is-expanded .blog-card__chevron {
  transform: rotate(180deg);
}
.cidet-app .blog-card__trigger {
  position: relative;
  padding-right: 2.5rem;
}
.cidet-app {
  /* Cuerpo expandible */
}
.cidet-app .blog-card__body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(29, 33, 40, 0.85);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.cidet-app .blog-card.is-expanded .blog-card__body {
  max-height: 2000px;
}
.cidet-app .blog-card__body-inner {
  padding: 1rem 1.25rem 1.5rem;
}
.cidet-app .blog-card__body-inner p {
  margin: 0 0 1.25rem 0;
}
.cidet-app .blog-card__body-inner h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1D2128;
  margin: 1.5rem 0 0.5rem 0;
}
.cidet-app .blog-card__body-inner h3:first-child {
  margin-top: 0;
}
.cidet-app .blog-card__body-inner a {
  color: #03D0FF;
  font-weight: 700;
  text-decoration: none;
}
.cidet-app .blog-card__body-inner a:hover {
  text-decoration: underline;
}
.cidet-app .page-banner {
  background: radial-gradient(520px 240px at 18% 20%, rgba(3, 208, 255, 0.2196078431) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(540px 260px at 86% 70%, rgba(3, 208, 255, 0.2196078431) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, #f4f4f4, #f4f4f4);
  border-radius: 0px 0px 32px 32px;
  padding: 180px 0 60px 0;
  text-align: center;
  position: relative;
}
.cidet-app .page-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cidet-app .page-banner .badge {
  background-color: rgba(255, 90, 114, 0.1);
  color: #FF5A72;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}
.cidet-app .page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1D2128;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cidet-app .page-banner h1 .highlight {
  background: linear-gradient(to right, #03D0FF, #03D0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.cidet-app .page-banner p {
  font-size: 1.1rem;
  color: rgba(29, 33, 40, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.cidet-app .layout-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .cidet-app .layout-2-cols {
    grid-template-columns: 320px 1fr;
  }
}
.cidet-app {
  /* ==========================================
     FILTROS (Búsqueda + Calendario + Intensidad)
  ========================================== */
}
.cidet-app .col-filters .filter-widget {
  background: rgba(255, 255, 255, 0.73);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: sticky;
  top: 120px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .col-filters .filter-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #1D2128;
  border-bottom: 2px solid #FF5A72;
  display: inline-block;
  padding-bottom: 5px;
}
.cidet-app .col-filters .filter-widget h3 i {
  color: #03D0FF;
}
.cidet-app .col-filters .filter-widget .filter-group {
  margin-bottom: 1.25rem;
}
.cidet-app .col-filters .filter-widget .filter-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #1D2128;
}
.cidet-app .col-filters .filter-widget .filter-group input,
.cidet-app .col-filters .filter-widget .filter-group select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .col-filters .filter-widget .filter-group input::placeholder,
.cidet-app .col-filters .filter-widget .filter-group select::placeholder {
  color: rgba(29, 33, 40, 0.45);
}
.cidet-app .col-filters .filter-widget .filter-group input:hover,
.cidet-app .col-filters .filter-widget .filter-group select:hover {
  border-color: rgba(255, 90, 114, 0.35);
}
.cidet-app .col-filters .filter-widget .filter-group input:focus-visible,
.cidet-app .col-filters .filter-widget .filter-group select:focus-visible {
  border-color: #FF5A72;
  box-shadow: 0 0 0 4px rgba(255, 90, 114, 0.18);
}
.cidet-app .col-filters .filter-widget .filter-group input:active,
.cidet-app .col-filters .filter-widget .filter-group select:active {
  transform: scale(0.995);
}
.cidet-app .col-filters .filter-widget .filter-group .filter-help {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: rgba(29, 33, 40, 0.62);
  line-height: 1.35;
}
.cidet-app .col-filters .filter-widget .filter-group .filter-help strong {
  color: #1D2128;
}
.cidet-app .col-filters .filter-widget .filter-group .filter-help .emoji {
  margin-left: 0.25rem;
}
.cidet-app .col-filters .filter-widget input[type=month] {
  border-color: rgba(3, 208, 255, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.cidet-app .col-filters .filter-widget input[type=month]:focus-visible {
  border-color: #03D0FF;
  box-shadow: 0 0 0 4px rgba(3, 208, 255, 0.18);
}
.cidet-app .col-filters .filter-widget input[type=month]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
  width: 18px;
  height: 18px;
  padding: 6px;
  border-radius: 10px;
  background-color: rgba(3, 208, 255, 0.12);
  transition: transform 0.15s ease, background-color 0.2s ease;
}
.cidet-app .col-filters .filter-widget input[type=month]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(3, 208, 255, 0.18);
  transform: translateY(-1px);
}
.cidet-app .col-filters .filter-widget .filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.6rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid rgba(3, 208, 255, 0.28);
  background: rgba(3, 208, 255, 0.12);
  color: #03D0FF;
  width: fit-content;
}
.cidet-app .col-filters .filter-widget .filter-badge i {
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .cidet-app .col-filters .filter-widget {
    position: relative;
    top: auto;
  }
}
.cidet-app {
  /* ==========================================
     CARDS CRONOGRAMA
  ========================================== */
}
.cidet-app .schedule-card {
  background: white;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 24px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
}
.cidet-app .schedule-card:hover {
  transform: scale(1.02) translateX(10px);
  border-color: #03D0FF;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  z-index: 5;
}
.cidet-app .schedule-card .schedule-date {
  background: linear-gradient(180deg, #03D0FF 0%, #002b35 100%);
  color: white;
  padding: 1.2rem;
  border-radius: 0px 0px 16px;
  min-width: 90px;
  text-align: center;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .schedule-card .schedule-date .day {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.cidet-app .schedule-card .schedule-date .month {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cidet-app .schedule-card .schedule-info {
  flex: 1;
}
.cidet-app .schedule-card .schedule-info .cat-tag {
  color: #FF5A72;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cidet-app .schedule-card .schedule-info h4 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: #1D2128;
  font-weight: 700;
  line-height: 1.3;
}
.cidet-app .schedule-card .schedule-info .meta-info, .cidet-app .schedule-card .schedule-info .meta-grid {
  display: flex;
  gap: 1.5rem;
  color: #777;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.cidet-app .schedule-card .schedule-info .meta-info i, .cidet-app .schedule-card .schedule-info .meta-grid i {
  color: #03D0FF;
  margin-right: 5px;
}
.cidet-app .schedule-card .schedule-info .meta-info span, .cidet-app .schedule-card .schedule-info .meta-grid span {
  display: flex;
  align-items: center;
}
.cidet-app .schedule-card .schedule-info {
  /* ==========================================
    ✅ PRECIO (NUEVO) — NO TOCA NADA MÁS
  ========================================== */
}
.cidet-app .schedule-card .schedule-info .schedule-price,
.cidet-app .schedule-card .schedule-info .meta-price,
.cidet-app .schedule-card .schedule-info .price,
.cidet-app .schedule-card .schedule-info .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
  color: #1D2128;
  background: rgba(255, 90, 114, 0.1);
  border: 1px solid rgba(255, 90, 114, 0.18);
  width: max-content;
  line-height: 1;
}
.cidet-app .schedule-card .schedule-info .schedule-price i,
.cidet-app .schedule-card .schedule-info .meta-price i,
.cidet-app .schedule-card .schedule-info .price i,
.cidet-app .schedule-card .schedule-info .price-tag i {
  color: #03D0FF;
  margin-right: 0;
  font-size: 0.95rem;
}
.cidet-app .schedule-card .schedule-info .schedule-price small,
.cidet-app .schedule-card .schedule-info .schedule-price .label,
.cidet-app .schedule-card .schedule-info .meta-price small,
.cidet-app .schedule-card .schedule-info .meta-price .label,
.cidet-app .schedule-card .schedule-info .price small,
.cidet-app .schedule-card .schedule-info .price .label,
.cidet-app .schedule-card .schedule-info .price-tag small,
.cidet-app .schedule-card .schedule-info .price-tag .label {
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(29, 33, 40, 0.7);
}
.cidet-app .schedule-card .schedule-info .meta-info .schedule-price,
.cidet-app .schedule-card .schedule-info .meta-info .meta-price,
.cidet-app .schedule-card .schedule-info .meta-info .price,
.cidet-app .schedule-card .schedule-info .meta-info .price-tag,
.cidet-app .schedule-card .schedule-info .meta-grid .schedule-price,
.cidet-app .schedule-card .schedule-info .meta-grid .meta-price,
.cidet-app .schedule-card .schedule-info .meta-grid .price,
.cidet-app .schedule-card .schedule-info .meta-grid .price-tag {
  margin-top: 0;
}
@media (max-width: 768px) {
  .cidet-app .schedule-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cidet-app .schedule-card .schedule-date {
    width: 100%;
  }
  .cidet-app .schedule-card .meta-info, .cidet-app .schedule-card .meta-grid {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cidet-app .schedule-card .schedule-info .schedule-price,
  .cidet-app .schedule-card .schedule-info .meta-price,
  .cidet-app .schedule-card .schedule-info .price,
  .cidet-app .schedule-card .schedule-info .price-tag {
    margin-left: auto;
    margin-right: auto;
  }
}
.cidet-app .schedule-action {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.cidet-app .schedule-action .btn {
  white-space: nowrap;
}
.cidet-app .schedule-action .btn-secondary {
  font-family: "Sora", sans-serif;
  background: rgba(3, 208, 255, 0.18);
  border-color: rgba(3, 208, 255, 0.28);
  color: #1D2128;
  border-radius: 0px 0px 16px;
}
.cidet-app .schedule-action .btn-secondary:hover {
  background: rgb(3, 208, 255);
  border-color: rgb(3, 208, 255);
  color: #1D2128;
}
.cidet-app .schedule-card--placeholder {
  opacity: 0.9;
}
.cidet-app .schedule-card--placeholder:hover {
  transform: none;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: none;
}
.cidet-app .schedule-card--placeholder .schedule-date {
  background: linear-gradient(135deg, rgba(29, 33, 40, 0.85), rgba(29, 33, 40, 0.65));
  box-shadow: none;
}
.cidet-app .schedule-card--placeholder .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.cidet-app .schedule-card.is-finished {
  border-color: rgba(29, 33, 40, 0.14);
  background: rgba(255, 255, 255, 0.92);
}
.cidet-app .schedule-card.is-finished:hover {
  transform: none;
  border-color: rgba(29, 33, 40, 0.14);
  box-shadow: none;
}
.cidet-app .schedule-card.is-finished .schedule-date,
.cidet-app .schedule-card.is-finished .schedule-info,
.cidet-app .schedule-card.is-finished .schedule-action {
  filter: blur(1.6px) saturate(0.5);
  opacity: 0.6;
}
.cidet-app .schedule-card.is-finished .schedule-action .btn {
  pointer-events: none;
}
.cidet-app .schedule-card .schedule-status-finished {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 114, 0.32);
  background: rgba(255, 90, 114, 0.14);
  color: #9b2940;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.cidet-app {
  /* ==========================================
     NO RESULTS
  ========================================== */
}
.cidet-app .no-results-container {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.73);
  border-radius: 24px;
  border: 2px dashed rgba(255, 90, 114, 0.2);
  margin-top: 2rem;
  animation: fadeIn 0.5s ease;
}
.cidet-app .no-results-container .no-results-img {
  max-width: 150px;
  margin: 0 auto;
  opacity: 0.8;
}
.cidet-app .no-results-container h3 {
  font-size: 1.8rem;
  color: #1D2128;
  margin-bottom: 1rem;
}
.cidet-app .no-results-container p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cidet-app {
  /* ==========================================
     MODAL (Detalle curso) + SCROLL MOBILE
  ========================================== */
}
.cidet-app body.modal-open {
  overflow: hidden;
}
.cidet-app .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 1rem;
}
.cidet-app .modal.is-open {
  display: block;
}
.cidet-app .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 33, 40, 0.55);
  backdrop-filter: blur(4px);
}
.cidet-app .modal__dialog {
  position: relative;
  width: min(720px, 100% - 2rem);
  margin: 6vh auto 0;
  background: white;
  border-radius: 20px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: modalIn 180ms ease-out;
  max-height: calc(100svh - 2rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cidet-app .modal__content {
  padding: 1.75rem;
  padding-bottom: 1.25rem;
}
.cidet-app .modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}
.cidet-app .modal__close:hover {
  transform: translateY(-1px);
}
.cidet-app .modal__close:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.6);
  outline-offset: 2px;
}
.cidet-app .modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 208, 255, 0.12);
  color: #03D0FF;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cidet-app .modal__desc {
  margin-top: 0.75rem;
  color: rgba(29, 33, 40, 0.75);
  line-height: 1.6;
}
.cidet-app .modal__meta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
}
@media (min-width: 900px) {
  .cidet-app .modal__meta {
    grid-template-columns: 1fr 1fr;
  }
}
.cidet-app .modal__metaItem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(29, 33, 40, 0.8);
}
.cidet-app .modal__metaItem i {
  color: #03D0FF;
}
.cidet-app .modal__details {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
  background: #fff;
}
.cidet-app .modal__details summary {
  cursor: pointer;
  font-weight: 800;
  color: #1D2128;
  list-style: none;
}
.cidet-app .modal__details summary::-webkit-details-marker {
  display: none;
}
.cidet-app .modal__details p {
  margin-top: 0.75rem;
  color: rgba(29, 33, 40, 0.75);
  line-height: 1.6;
}
.cidet-app .modal__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@keyframes modalIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cidet-app {
  /* ===== MÓVIL: Bottom sheet ===== */
}
@media (max-width: 480px) {
  .cidet-app .modal {
    padding: 0;
  }
  .cidet-app .modal__dialog {
    width: 100%;
    margin: 0;
    border-radius: 22px 22px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 85svh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    animation: sheetIn 180ms ease-out;
  }
  .cidet-app .modal__content {
    padding: 1.25rem 1.25rem 0.75rem;
  }
  .cidet-app .modal__actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 0.9rem 1.25rem 1rem;
    margin: 1rem -1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .cidet-app .modal__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@keyframes sheetIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cidet-app {
  /* ==========================================
     PROMO MODAL (Cronograma) - 2 columnas + imagen pequeña + textos mejorados
  ========================================== */
}
.cidet-app .modal--promo .modal__dialog {
  margin: 5vh auto 0;
}
@media (min-width: 900px) {
  .cidet-app .modal--promo .modal__dialog {
    width: min(980px, 100% - 2rem);
  }
}
@media (max-width: 480px) {
  .cidet-app .modal--promo .modal {
    padding: 0;
  }
  .cidet-app .modal--promo .modal__dialog {
    width: 100%;
    margin: 0;
    border-radius: 22px 22px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.cidet-app .modal--promo .promo-content {
  padding: 1.35rem 1.35rem 1.05rem;
}
.cidet-app .modal--promo .promo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}
.cidet-app .modal--promo .promo-header .promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  color: #FF5A72;
  background: rgba(255, 90, 114, 0.1);
  border: 1px solid rgba(255, 90, 114, 0.18);
  width: fit-content;
}
@media (max-width: 480px) {
  .cidet-app .modal--promo .promo-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0.9rem 0 0.85rem;
  }
}
.cidet-app .modal--promo .promo-kicker {
  margin: 0;
  color: rgba(29, 33, 40, 0.7);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: right;
  max-width: 360px;
}
@media (max-width: 480px) {
  .cidet-app .modal--promo .promo-kicker {
    text-align: center;
    max-width: 100%;
  }
}
.cidet-app .modal--promo .promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .cidet-app .modal--promo .promo-grid {
    grid-template-columns: 320px 1fr;
    gap: 1.35rem;
  }
}
.cidet-app .modal--promo .promo-media {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: radial-gradient(520px 240px at 18% 20%, rgba(255, 90, 114, 0.28) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(540px 260px at 86% 70%, rgba(3, 208, 255, 0.22) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, #f4f4f4, #f4f4f4);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  padding: 1rem;
  display: grid;
  place-items: center;
  min-height: 200px;
}
.cidet-app .modal--promo .promo-media img {
  width: 100%;
  max-width: fit-content;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}
@media (min-width: 900px) {
  .cidet-app .modal--promo .promo-media {
    min-height: 100%;
    padding: 1.25rem;
  }
  .cidet-app .modal--promo .promo-media img {
    max-width: fit-content;
  }
}
.cidet-app .modal--promo .promo-body h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: 1.55rem;
  line-height: 1.18;
  color: #1D2128;
  font-weight: 900;
}
.cidet-app .modal--promo .promo-body h3 .highlight {
  color: #03D0FF;
}
@media (max-width: 480px) {
  .cidet-app .modal--promo .promo-body h3 {
    font-size: 1.35rem;
    text-align: center;
  }
}
.cidet-app .modal--promo .promo-body .promo-neto {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: rgba(29, 33, 40, 0.78);
}
.cidet-app .modal--promo .promo-body .promo-neto strong {
  color: #1D2128;
}
.cidet-app .modal--promo .promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.85rem;
}
.cidet-app .modal--promo .promo-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
@media (max-width: 480px) {
  .cidet-app .modal--promo .promo-item {
    grid-template-columns: 62px 1fr;
    padding: 0.85rem 0.9rem;
  }
}
.cidet-app .modal--promo .promo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 14px;
  font-weight: 900;
  color: #fff;
  background: #03D0FF;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}
.cidet-app .modal--promo .promo-item__text {
  display: grid;
  gap: 0.2rem;
}
.cidet-app .modal--promo .promo-item__text strong {
  color: #1D2128;
  font-weight: 900;
  font-size: 0.98rem;
  line-height: 1.2;
}
.cidet-app .modal--promo .promo-item__text span {
  color: rgba(29, 33, 40, 0.7);
  font-size: 0.92rem;
  line-height: 1.35;
}
.cidet-app .modal--promo .promo-extra {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(3, 208, 255, 0.22);
  background: rgba(3, 208, 255, 0.08);
  color: rgba(29, 33, 40, 0.85);
}
.cidet-app .modal--promo .promo-extra i {
  margin-top: 2px;
  color: #03D0FF;
}
.cidet-app .modal--promo .promo-extra p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.93rem;
}
.cidet-app .modal--promo .promo-extra strong {
  color: #1D2128;
}
.cidet-app .modal--promo .promo-footnote {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: rgba(29, 33, 40, 0.62);
}
.cidet-app .modal--promo .modal__close {
  font-size: 18px;
  line-height: 1;
  padding: 0;
  display: grid;
  place-items: center;
}
.cidet-app .modal--promo .modal__close::before, .cidet-app .modal--promo .modal__close::after {
  content: none !important;
  display: none !important;
}
.cidet-app .modal--promo .modal__close i {
  display: inline-block !important;
  font-size: 20px;
  line-height: 1;
}
.cidet-app .modal--promo .modal__close i::before,
.cidet-app .modal--promo .modal__close i::after {
  content: none !important;
}
.cidet-app .modal--promo .promo-close {
  display: grid;
  place-items: center;
  align-content: center;
  font-size: 20px;
  color: #FF5A72;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .modal--promo .promo-close .promo-close__x {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}
.cidet-app .modal--promo .promo-close i {
  display: none;
}
.cidet-app .modal--promo .promo-close:hover {
  transform: translateY(-1px);
  color: #fff;
  background: #FF5A72;
}
.cidet-app .modal--promo .promo-close:active {
  transform: translateY(0);
}
.cidet-app .empty-state {
  padding: 180px 0 60px;
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
}
.cidet-app .empty-state__card {
  width: min(920px, 92%);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
}
.cidet-app .empty-state__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 2px dashed rgba(255, 90, 114, 0.25);
  pointer-events: none;
}
.cidet-app .empty-state__img {
  width: min(280px, 70%);
  margin: 0 auto 1rem;
  display: block;
}
.cidet-app .empty-state__title {
  font-weight: 900;
  color: #1D2128;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cidet-app .empty-state__text {
  color: rgba(29, 33, 40, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 auto 0.9rem;
}
.cidet-app .empty-state__text strong {
  color: #1D2128;
  font-weight: 800;
}
.cidet-app .empty-state__hint {
  color: rgba(29, 33, 40, 0.72);
  margin: 0 auto 1.5rem;
  max-width: 62ch;
}
.cidet-app .empty-state__hint a {
  color: #FF5A72;
  font-weight: 800;
  text-decoration: none;
}
.cidet-app .empty-state__hint a:hover {
  text-decoration: underline;
}
.cidet-app .empty-state__hint a:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}
.cidet-app .empty-state__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cidet-app .empty-state__actions .btn {
  min-width: 180px;
  justify-content: center;
}
@media (max-width: 480px) {
  .cidet-app .empty-state {
    padding: 150px 0 40px;
  }
  .cidet-app .empty-state__card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .cidet-app .empty-state__card::before {
    inset: 10px;
    border-radius: 14px;
  }
  .cidet-app .empty-state__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
.cidet-app {
  /* =========================
     CATÁLOGO DE CURSOS (layout 2 cols como cronograma/blog)
  ========================= */
}
.cidet-app .container.catalog-page {
  max-width: 1440px;
}
.cidet-app .catalog-page {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.cidet-app .col-catalog {
  min-width: 0;
}
.cidet-app .catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.cidet-app .catalog-count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(29, 33, 40, 0.8);
}
.cidet-app .catalog-count__num {
  font-weight: 800;
  color: #1D2128;
}
.cidet-app .catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .cidet-app .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .cidet-app .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 899px) {
  .cidet-app .catalog-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .cidet-app .catalog-card__actions {
    flex-direction: column;
  }
  .cidet-app .catalog-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cidet-app .catalog-page {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .cidet-app .catalog-toolbar {
    margin-bottom: 1rem;
  }
  .cidet-app .catalog-grid {
    gap: 1rem;
  }
}
.cidet-app {
  /* Pills de categoría (filtros) */
}
.cidet-app .catalog-filters__inner {
  margin-top: 0.5rem;
}
.cidet-app .catalog-filters__pills {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cidet-app .catalog-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0px 0px 16px;
  border: 1px solid rgba(3, 208, 255, 0.35);
  background: rgba(3, 208, 255, 0.1);
  color: #1D2128;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cidet-app .catalog-pill:hover {
  background: rgba(3, 208, 255, 0.18);
  border-color: rgba(3, 208, 255, 0.5);
}
.cidet-app .catalog-pill:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .catalog-pill.catalog-pill--active {
  background: #03D0FF;
  border-color: #03D0FF;
  color: #fff;
}
.cidet-app .catalog-sort {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}
.cidet-app .catalog-sort:focus-visible {
  border-color: #FF5A72;
  box-shadow: 0 0 0 4px rgba(255, 90, 114, 0.18);
  outline: none;
}
.cidet-app {
  /* Card de curso */
}
.cidet-app .catalog-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(29, 33, 40, 0.06);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  font-family: "Sora", sans-serif;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cidet-app .catalog-card:hover {
  border-color: rgba(3, 208, 255, 0.2);
  box-shadow: 1px 6px 16px rgba(0, 0, 0, 0.06);
}
.cidet-app .catalog-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(29, 33, 40, 0.04);
  overflow: hidden;
}
.cidet-app .catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cidet-app .catalog-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(3, 208, 255, 0.95);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cidet-app .catalog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cidet-app .catalog-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #1D2128;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.cidet-app .catalog-card__excerpt {
  font-size: 0.9rem;
  color: rgba(29, 33, 40, 0.75);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  flex: 1;
}
.cidet-app .catalog-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  color: rgba(29, 33, 40, 0.7);
}
.cidet-app .catalog-card__rating i {
  color: #f0c14b;
}
.cidet-app .catalog-card__rating .fa-regular.fa-star {
  color: rgba(29, 33, 40, 0.25);
}
.cidet-app .catalog-card__rating-count {
  font-size: 0.82rem;
  font-weight: 600;
  margin-left: 0.25rem;
}
.cidet-app .catalog-card__meta {
  font-size: 0.82rem;
  color: rgba(29, 33, 40, 0.6);
  margin: 0 0 1rem 0;
}
.cidet-app .catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.cidet-app .catalog-card__price {
  font-weight: 900;
  font-size: 1rem;
  color: #FF5A72;
}
.cidet-app .catalog-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cidet-app .catalog-card__detail,
.cidet-app .catalog-card__cta {
  border-radius: 0px 0px 16px;
  white-space: nowrap;
}
.cidet-app .catalog-card__cta {
  flex-shrink: 0;
}
.cidet-app .catalog-no-results {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.73);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  color: rgba(29, 33, 40, 0.7);
  border: 1px solid rgba(29, 33, 40, 0.08);
}
.cidet-app .catalog-no-results p {
  margin: 0;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}
.cidet-app .catalog-modal__dialog {
  max-width: 560px;
}
.cidet-app .catalog-modal__content {
  padding: 1.25rem 1.5rem 1.5rem;
}
.cidet-app .catalog-modal__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FF5A72;
  margin-bottom: 0.5rem;
}
.cidet-app .catalog-modal__title {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1D2128;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.cidet-app .catalog-modal__excerpt {
  font-size: 0.95rem;
  color: rgba(29, 33, 40, 0.85);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
.cidet-app .catalog-modal__video-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.cidet-app .catalog-modal__video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}
.cidet-app .catalog-modal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: rgba(29, 33, 40, 0.7);
}
.cidet-app .catalog-modal__price {
  font-weight: 800;
  color: #FF5A72;
}
.cidet-app .catalog-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cidet-app .catalog-modal__actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}
@media (max-width: 599px) {
  .cidet-app .catalog-modal__dialog {
    max-width: calc(100% - 1rem);
    margin: 1rem auto 0;
  }
  .cidet-app .catalog-modal__content {
    padding: 1rem 1.25rem 1.25rem;
  }
  .cidet-app .catalog-modal__title {
    font-size: 1.2rem;
  }
  .cidet-app .catalog-modal__actions {
    flex-direction: column;
  }
  .cidet-app .catalog-modal__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}
.cidet-app {
  /* =========================
    HERO + PARTICLES
  ========================= */
}
.cidet-app .hero {
  background-color: #f5f6fa;
  padding: 180px 0 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cidet-app .hero #particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cidet-app {
  /* =========================
    HERO (ESTILO TIPO CODERHOUSE) - RESPONSIVE FIX
  ========================= */
}
.cidet-app .hero.hero--coderhouse {
  font-family: "Sora", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* ✅ padding fluido: evita que en mobile “se coma” el contenido */
  padding: clamp(96px, 10vh, 150px) 0 clamp(2.2rem, 3vw, 3.5rem) 0;
  background: radial-gradient(1200px 520px at 50% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.55) 35%, rgba(255, 255, 255, 0) 70%), linear-gradient(180deg, #fbf4ee 0%, #f5f6fa 70%);
  position: relative;
  /* ✅ en desktop puedes empujar un poco más */
}
@media (min-width: 900px) {
  .cidet-app .hero.hero--coderhouse {
    padding-top: 170px;
  }
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ FIX: alto real en mobile (evita bug de barras del navegador) */
  min-height: 92vh;
  min-height: 92svh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  /* ✅ el contenido no debe quedar pegado a los bordes en mobile */
}
.cidet-app .hero.hero--coderhouse .container {
  width: 100%;
}
.cidet-app .hero.hero--coderhouse {
  /* particles por encima del video, pero debajo del contenido */
}
.cidet-app .hero.hero--coderhouse #particles-js {
  opacity: 0.25;
  z-index: 3;
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ VIDEO BG (ABSOLUTO) */
}
.cidet-app .hero.hero--coderhouse .hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.cidet-app .hero.hero--coderhouse .hero-bg-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: opacity 0.4s ease-out;
  filter: saturate(0.95) contrast(1.02);
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ overlay real (antes estaba vacío) */
}
.cidet-app .hero.hero--coderhouse .hero-bg-media__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ Por si quedó el watermark en otro HTML */
}
.cidet-app .hero.hero--coderhouse .hero-bg-image {
  display: none !important;
}
.cidet-app .hero.hero--coderhouse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 18% 54%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 70%), radial-gradient(520px 220px at 56% 58%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%), radial-gradient(460px 200px at 86% 56%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(8px);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ center responsive */
}
.cidet-app .hero.hero--coderhouse .hero-center {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  /* evita overflow en mobile por elementos inline */
  padding: 0 1rem;
}
@media (min-width: 900px) {
  .cidet-app .hero.hero--coderhouse .hero-center {
    padding: 0;
  }
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ pill: se apila en mobile */
}
.cidet-app .hero.hero--coderhouse .hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  color: #1D2128;
  text-decoration: none;
  margin: 0 auto 1.35rem auto;
  max-width: 100%;
}
.cidet-app .hero.hero--coderhouse .hero-pill:hover {
  transform: translateY(-1px);
}
.cidet-app .hero.hero--coderhouse .hero-pill:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .hero.hero--coderhouse .hero-pill__tag {
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: #FF5A72;
  white-space: nowrap;
}
.cidet-app .hero.hero--coderhouse .hero-pill__text {
  font-size: 0.88rem;
  color: rgba(29, 33, 40, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}
@media (max-width: 480px) {
  .cidet-app .hero.hero--coderhouse .hero-pill__text {
    max-width: 46vw;
  }
}
.cidet-app .hero.hero--coderhouse .hero-pill__cta {
  font-weight: 800;
  color: #FF5A72;
  white-space: nowrap;
}
.cidet-app .hero.hero--coderhouse .hero-pill {
  /* ✅ en pantallas muy pequeñas se apila */
}
@media (max-width: 420px) {
  .cidet-app .hero.hero--coderhouse .hero-pill {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
  .cidet-app .hero.hero--coderhouse .hero-pill__text {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    text-align: center;
  }
}
.cidet-app .hero.hero--coderhouse .badge {
  display: inline-flex;
  margin: 0 auto 0.85rem auto;
  background-color: rgba(255, 90, 114, 0.1);
  backdrop-filter: blur(16px);
  color: #FF5A72;
  padding: 0.4rem 0.75rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.85rem;
  backdrop-filter: blur(16px);
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ tipografía ajustada para mobile */
}
.cidet-app .hero.hero--coderhouse h1 {
  font-family: "Sora", sans-serif;
  margin: 0 auto 0.95rem auto;
  max-width: 920px;
  font-weight: 900;
  line-height: 0.98;
  font-size: clamp(1.85rem, 5.3vw, 4.4rem);
  color: #1D2128;
}
.cidet-app .hero.hero--coderhouse h1 .highlight {
  color: #03D0FF;
}
.cidet-app .hero.hero--coderhouse p {
  margin: 0 auto 1.25rem auto;
  max-width: 820px;
  font-size: clamp(0.98rem, 1.65vw, 1.15rem);
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.65;
}
.cidet-app .hero.hero--coderhouse .hero-buttons {
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cidet-app .hero.hero--coderhouse {
  /* ✅ botón full width en mobile si tu .btn lo permite */
}
@media (max-width: 520px) {
  .cidet-app .hero.hero--coderhouse .hero-buttons .btn {
    width: 80%;
    justify-content: center;
  }
}
.cidet-app .hero.hero--coderhouse .hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(29, 33, 40, 0.06);
  color: rgba(29, 33, 40, 0.8);
  font-weight: 600;
}
.cidet-app .hero.hero--coderhouse .hero-note i {
  color: #03D0FF;
}
@media (max-width: 520px) {
  .cidet-app .hero.hero--coderhouse .hero-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.cidet-app .hero.hero--coderhouse .hero-trust-title {
  margin: 1.8rem auto 0.85rem auto;
  font-weight: 600;
  color: rgba(29, 33, 40, 0.72);
  padding: 0 1rem;
}
@media (min-width: 900px) {
  .cidet-app .hero.hero--coderhouse .hero-trust-title {
    padding: 0;
  }
}
.cidet-app .hero.hero--coderhouse .hero-trust {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.75rem 0.1rem;
  scroll-snap-type: x mandatory;
}
@media (min-width: 900px) {
  .cidet-app .hero.hero--coderhouse .hero-trust {
    grid-auto-flow: unset;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
}
.cidet-app .hero.hero--coderhouse .hero-trust::-webkit-scrollbar {
  height: 8px;
}
.cidet-app .hero.hero--coderhouse .hero-trust::-webkit-scrollbar-thumb {
  background: rgba(29, 33, 40, 0.15);
  border-radius: 999px;
}
.cidet-app .hero.hero--coderhouse .trust-card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 33, 40, 0.08);
  border-radius: 0px 0px 16px;
  padding: 0.9rem 0.95rem;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .hero.hero--coderhouse .trust-card strong {
  display: block;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1D2128;
  margin-bottom: 0.25rem;
}
.cidet-app .hero.hero--coderhouse .trust-card span {
  display: block;
  color: rgba(29, 33, 40, 0.65);
  font-size: 0.9rem;
  line-height: 1.35;
}
@media (prefers-reduced-motion: reduce) {
  .cidet-app .hero.hero--coderhouse .hero-pill {
    transform: none !important;
  }
}
.cidet-app {
  /* ✅ si el usuario prefiere menos movimiento: apaga el video */
}
@media (prefers-reduced-motion: reduce) {
  .cidet-app .hero.hero--coderhouse .hero-bg-media {
    display: none;
  }
}
.cidet-app {
  /* =========================
    LOGO STRIP
  ========================= */
}
.cidet-app .logo-strip {
  padding: 1.25rem 0 1.6rem 0;
  background: linear-gradient(180deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
}
.cidet-app .logo-strip .logo-strip__header {
  text-align: center;
  margin-bottom: 0.9rem;
}
.cidet-app .logo-strip .logo-strip__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: rgba(29, 33, 40, 0.72);
}
.cidet-app .logo-strip .logo-strip__footnote {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(29, 33, 40, 0.55);
}
.cidet-app .logo-marquee {
  position: relative;
  border-radius: 16px;
  padding: 0.75rem 0.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 33, 40, 0.06);
}
.cidet-app .logo-marquee:hover .logo-marquee__track, .cidet-app .logo-marquee:focus-within .logo-marquee__track {
  animation-play-state: paused;
}
.cidet-app .logo-marquee .logo-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}
.cidet-app .logo-marquee .logo-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, #f4f4f4 0%, rgba(251, 244, 238, 0) 100%);
}
.cidet-app .logo-marquee .logo-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, #f4f4f4 0%, rgba(251, 244, 238, 0) 100%);
}
.cidet-app .logo-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 28s linear infinite;
}
.cidet-app .logo-list {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cidet-app .logo-card {
  min-width: 210px;
  height: 92px;
  border-radius: 18px;
  background: radial-gradient(520px 240px at 18% 20%, rgba(255, 90, 114, 0.28) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(540px 260px at 86% 70%, rgba(3, 208, 255, 0.22) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, #1D2128, #1D2128);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem 1rem;
  gap: 0.35rem;
}
.cidet-app .logo-card .logo-number {
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: rgba(29, 33, 40, 0.55);
  font-size: 1.25rem;
  line-height: 1;
}
.cidet-app .logo-card .logo-name {
  margin-top: 0.2rem;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(29, 33, 40, 0);
  text-transform: uppercase;
  font-size: 0.85rem;
}
.cidet-app .logo-card {
  /* si cambias números por logos */
}
.cidet-app .logo-card .logo-number.logo-number--img {
  width: 132px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 0;
  color: transparent;
  line-height: 1;
}
.cidet-app .logo-card .logo-number.logo-number--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.78;
  transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}
.cidet-app .logo-card:hover .logo-number.logo-number--img img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}
@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cidet-app .logo-marquee__track {
    animation: none;
    transform: translateX(0);
  }
}
.cidet-app {
  /* =========================================================
    NUEVA SECCIÓN: PROMO + MEMBRESÍAS + ACCESOS RÁPIDOS
  ========================================================= */
}
.cidet-app .home-highlight {
  padding: 1.2rem 0 2.2rem 0;
}
.cidet-app .home-highlight .home-highlight__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-areas: "promo" "banner" "panel" "value";
}
@media (min-width: 900px) {
  .cidet-app .home-highlight .home-highlight__grid {
    grid-template-columns: 1fr 1.3fr;
    grid-template-areas: "promo banner" "panel banner" "value value";
    gap: 1.2rem;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .cidet-app .home-highlight .home-highlight__grid {
    grid-template-columns: 0.85fr 1.6fr 0.9fr;
    grid-template-areas: "promo banner panel" "value value panel";
    gap: 1.2rem;
  }
}
.cidet-app {
  /* Promo vertical */
}
.cidet-app .promo-vertical {
  grid-area: promo;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  display: grid;
  grid-template-rows: 1fr auto;
}
.cidet-app .promo-vertical .promo-vertical__media {
  background: linear-gradient(180deg, rgba(255, 90, 114, 0.12), rgba(29, 33, 40, 0.03));
  position: relative;
}
.cidet-app .promo-vertical .promo-vertical__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.cidet-app .promo-vertical .promo-vertical__body {
  padding: 1rem 1rem 1.1rem;
}
.cidet-app .promo-vertical .promo-vertical__body h3 {
  margin: 0 0 0.45rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1D2128;
  font-size: 1.15rem;
}
.cidet-app .promo-vertical .promo-vertical__body p {
  margin: 0 0 0.75rem 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.55;
}
.cidet-app .promo-vertical .promo-vertical__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.cidet-app .promo-vertical .promo-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(29, 33, 40, 0.75);
  background: rgba(29, 33, 40, 0.04);
  border: 1px solid rgba(29, 33, 40, 0.08);
}
.cidet-app .promo-vertical .promo-pill--accent {
  color: #FF5A72;
  background: rgba(255, 90, 114, 0.1);
  border-color: rgba(255, 90, 114, 0.22);
}
.cidet-app {
  /* Banner membresías */
}
.cidet-app .membership-banner {
  grid-area: banner;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  background: radial-gradient(520px 240px at 18% 20%, rgba(3, 208, 255, 0.2196078431) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(540px 260px at 86% 70%, rgba(3, 208, 255, 0.2196078431) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, #f4f4f4, #f4f4f4);
  color: #1D2128;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
}
@media (min-width: 900px) {
  .cidet-app .membership-banner {
    align-items: center;
    padding: 1.5rem;
  }
}
.cidet-app .membership-banner .membership-banner__content .tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 900;
  background-color: rgba(255, 90, 114, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 0.75rem;
}
.cidet-app .membership-banner .membership-banner__content h3 {
  margin: 0 0 0.6rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.05;
}
.cidet-app .membership-banner .membership-banner__content p {
  margin: 0 0 1rem 0;
  color: #1D2128;
  line-height: 1.6;
  max-width: 58ch;
}
.cidet-app .membership-banner .membership-banner__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cidet-app .membership-banner .membership-banner__art {
  display: grid;
  place-items: center;
}
.cidet-app .membership-banner .membership-banner__art .art-card {
  width: min(260px, 100%);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  text-align: center;
}
.cidet-app .membership-banner .membership-banner__art .art-card i {
  font-size: 2.2rem;
}
.cidet-app .membership-banner .membership-banner__art .art-card span {
  font-weight: 800;
  opacity: 0.92;
}
.cidet-app {
  /* Panel derecho */
}
.cidet-app .quick-panel {
  grid-area: panel;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  padding: 1rem;
}
.cidet-app .quick-panel h3 {
  margin: 0 0 0.8rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1D2128;
  font-size: 1.1rem;
}
.cidet-app .quick-links {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.cidet-app .quick-links .quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1D2128;
  padding: 0.85rem 0.85rem;
  border-radius: 18px;
  background: rgba(3, 208, 255, 0.08);
  background: rgba(3, 209, 255, 0.342);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.cidet-app .quick-links .quick-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 90, 114, 0.1);
  border-color: rgba(255, 90, 114, 0.22);
}
.cidet-app .quick-links .quick-link:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .quick-links .quick-link i.fa-chevron-right {
  margin-left: auto;
  color: rgba(29, 33, 40, 0.45);
}
.cidet-app .quick-links .quick-link .quick-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(29, 33, 40, 0.08);
}
.cidet-app .quick-links .quick-link .quick-link__icon i {
  color: #03D0FF;
}
.cidet-app .quick-links .quick-link .quick-link__text {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cidet-app .expectations {
  border-radius: 16px;
  background: rgba(3, 208, 255, 0.08);
  border: 1px solid rgba(3, 208, 255, 0.18);
  padding: 0.9rem;
}
.cidet-app .expectations h4 {
  margin: 0 0 0.7rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: #1D2128;
  letter-spacing: -0.01em;
}
.cidet-app .expectations .checklist {
  margin: 0 0 0.85rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.cidet-app .expectations .checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: rgba(29, 33, 40, 0.75);
  line-height: 1.45;
}
.cidet-app .expectations .checklist li i {
  color: #03D0FF;
  margin-top: 0.15rem;
}
.cidet-app .expectations .expectations-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-decoration: none;
  font-weight: 900;
  color: #1D2128;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(3, 208, 255, 0.22);
  transition: transform 0.15s ease, background 0.15s ease;
}
.cidet-app .expectations .expectations-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.88);
}
.cidet-app .expectations .expectations-cta:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .expectations .expectations-cta i {
  color: #03D0FF;
}
.cidet-app {
  /* Value strip */
}
.cidet-app .value-strip {
  grid-area: value;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  padding: 1.1rem;
}
@media (min-width: 900px) {
  .cidet-app .value-strip {
    padding: 1.25rem;
  }
}
.cidet-app .value-strip .value-strip__intro {
  margin-bottom: 1rem;
}
.cidet-app .value-strip .value-strip__intro h2 {
  margin: 0 0 0.5rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1D2128;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}
.cidet-app .value-strip .value-strip__intro h2 span {
  color: rgba(29, 33, 40, 0.55);
  font-weight: 800;
}
.cidet-app .value-strip .value-strip__intro p {
  margin: 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.6;
  max-width: 90ch;
}
.cidet-app .value-strip .value-strip__cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .cidet-app .value-strip .value-strip__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cidet-app .value-strip .mini-card {
  border-radius: 16px;
  background: rgba(29, 33, 40, 0.02);
  border: 1px solid rgba(29, 33, 40, 0.08);
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .value-strip .mini-card .mini-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 114, 0.1);
  border: 1px solid rgba(255, 90, 114, 0.18);
}
.cidet-app .value-strip .mini-card .mini-card__icon i {
  color: #03D0FF;
}
.cidet-app .value-strip .mini-card h3 {
  margin: 0.2rem 0 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: #1D2128;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
.cidet-app .value-strip .mini-card p {
  margin: 0;
  color: rgba(29, 33, 40, 0.62);
  font-size: 0.92rem;
}
.cidet-app {
  /* Helpers */
}
.cidet-app .btn-block {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
}
.cidet-app {
  /* =========================
    CATEGORÍAS (Carrusel)
  ========================= */
}
.cidet-app .categories-carousel {
  padding: 2.6rem 0 2.2rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 32%, rgba(255, 255, 255, 0) 100%);
}
.cidet-app .categories-carousel .categories-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 1.5rem auto;
}
.cidet-app .categories-carousel .categories-header h2 {
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1D2128;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 0.65rem 0 0.6rem;
  line-height: 1.1;
}
.cidet-app .categories-carousel .categories-header h2 .accent {
  color: #FF5A72;
}
.cidet-app .categories-carousel .categories-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(29, 33, 40, 0.72);
  font-size: 1rem;
}
.cidet-app .categories-carousel .categories-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(3, 208, 255, 0.12);
  color: #1D2128;
  border: 1px solid rgba(3, 208, 255, 0.35);
  font-weight: 800;
  font-size: 0.85rem;
}
.cidet-app .categories-carousel .categories-pill i {
  color: #03D0FF;
}
.cidet-app .categories-carousel .categories-footnote {
  margin: 0.9rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(29, 33, 40, 0.55);
}
.cidet-app .categories-scroller {
  position: relative;
  border-radius: 16px;
  padding: 0.35rem 0.25rem 0.65rem;
  overflow: hidden;
}
.cidet-app .categories-scroller .categories-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}
.cidet-app .categories-scroller .categories-fade--left {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.cidet-app .categories-scroller .categories-fade--right {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.cidet-app .categories-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0.3rem 0.25rem 0.65rem;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.cidet-app .categories-track::-webkit-scrollbar {
  height: 9px;
}
.cidet-app .categories-track::-webkit-scrollbar-thumb {
  background: rgba(29, 33, 40, 0.14);
  border-radius: 999px;
}
.cidet-app .cat-card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  border-radius: 16px;
  padding: 1.1rem;
  min-height: 360px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .cat-card:focus-within {
  outline: 3px solid rgba(3, 208, 255, 0.45);
  outline-offset: 2px;
}
.cidet-app .cat-card .cat-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.cidet-app .cat-card .cat-card__top h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: #1D2128;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.cidet-app .cat-card .cat-card__media {
  flex: 1;
  border-radius: 18px;
  border: 1px solid rgba(29, 33, 40, 0.08);
  background: radial-gradient(420px 210px at 20% 30%, rgba(255, 90, 114, 0.18) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(420px 220px at 80% 60%, rgba(3, 208, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  position: relative;
}
.cidet-app .cat-card .cat-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.cidet-app .cat-card .cat-card__media--accent {
  background: radial-gradient(420px 210px at 30% 30%, rgba(3, 208, 255, 0.22) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 220px at 70% 60%, rgba(255, 90, 114, 0.16) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
}
.cidet-app .cat-card .cat-card__media--soft {
  background: radial-gradient(420px 210px at 40% 35%, rgba(29, 33, 40, 0.06) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 220px at 70% 62%, rgba(3, 208, 255, 0.14) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
}
.cidet-app .cat-card .cat-card__media--warning {
  background: radial-gradient(420px 210px at 35% 35%, rgba(255, 90, 114, 0.22) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 220px at 70% 62%, rgba(29, 33, 40, 0.08) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
}
.cidet-app .cat-card .cat-card__media--green {
  background: radial-gradient(420px 210px at 35% 35%, rgba(3, 208, 255, 0.18) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 220px at 70% 62%, rgba(29, 33, 40, 0.06) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
}
.cidet-app .cat-card .cat-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 33, 40, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #1D2128;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.cidet-app .cat-card .cat-card__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 114, 0.35);
  background: rgba(255, 90, 114, 0.06);
}
.cidet-app .cat-card .cat-card__btn:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .cat-card .cat-card__btn i {
  color: #03D0FF;
}
.cidet-app .cat-card {
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #FF5A72;
  background: rgba(255, 90, 114, 0.1);
  border: 1px solid rgba(255, 90, 114, 0.3);
}
.cidet-app {
  /* =========================
    FEATURES SHOWCASE
  ========================= */
}
.cidet-app .features-showcase {
  padding: 2.8rem 0 2.2rem 0;
}
.cidet-app .features-showcase .features-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 1.6rem auto;
}
.cidet-app .features-showcase .features-header .features-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(3, 208, 255, 0.1);
  color: #1D2128;
  border: 1px solid rgba(3, 208, 255, 0.35);
  font-weight: 900;
  font-size: 0.85rem;
}
.cidet-app .features-showcase .features-header .features-pill i {
  color: #03D0FF;
}
.cidet-app .features-showcase .features-header h2 {
  margin: 0.7rem 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1D2128;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}
.cidet-app .features-showcase .features-header h2 .accent {
  color: #FF5A72;
}
.cidet-app .features-showcase .features-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(29, 33, 40, 0.72);
  font-size: 1rem;
}
.cidet-app .features-showcase .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .cidet-app .features-showcase .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left wide" "full full";
    gap: 1.2rem;
  }
}
.cidet-app .feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  border-radius: 16px;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .feature-card:focus-within {
  outline: 3px solid rgba(3, 208, 255, 0.45);
  outline-offset: 2px;
}
.cidet-app .feature-card .feature-card__body {
  padding: 1.25rem 1.25rem 1.35rem;
}
.cidet-app .feature-card .feature-card__body h3 {
  margin: 0 0 0.5rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: #1D2128;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
.cidet-app .feature-card .feature-card__body p {
  margin: 0;
  color: rgba(29, 33, 40, 0.72);
  line-height: 1.6;
}
.cidet-app .feature-card .feature-card__media {
  padding: 1.1rem 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.cidet-app .feature-card .feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
@media (min-width: 900px) {
  .cidet-app .feature-card--left {
    grid-area: left;
  }
}
.cidet-app .feature-card--left .feature-card__media {
  padding-bottom: 0.25rem;
}
@media (min-width: 900px) {
  .cidet-app .feature-card--wide {
    grid-area: wide;
  }
}
@media (min-width: 900px) {
  .cidet-app .feature-card--wide {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
  .cidet-app .feature-card--wide .feature-card__media {
    padding: 1.25rem;
  }
  .cidet-app .feature-card--wide .feature-card__body {
    padding: 1.25rem 1.35rem 1.35rem 0;
  }
}
@media (min-width: 900px) {
  .cidet-app .feature-card--full {
    grid-area: full;
  }
}
@media (min-width: 900px) {
  .cidet-app .feature-card--full {
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
  }
  .cidet-app .feature-card--full .feature-card__media {
    padding: 1.25rem;
  }
  .cidet-app .feature-card--full .feature-card__body {
    padding: 1.35rem;
  }
}
.cidet-app .feature-card--full .feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 900;
  color: #1D2128;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 114, 0.35);
  background: rgba(255, 90, 114, 0.08);
  transition: transform 0.15s ease, background 0.15s ease;
}
.cidet-app .feature-card--full .feature-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 90, 114, 0.12);
}
.cidet-app .feature-card--full .feature-cta:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.55);
  outline-offset: 2px;
}
.cidet-app .feature-card--full .feature-cta i {
  color: #03D0FF;
}
.cidet-app .media-placeholder {
  border-radius: 18px;
  border: 1px solid rgba(29, 33, 40, 0.08);
  background: radial-gradient(420px 220px at 20% 25%, rgba(255, 90, 114, 0.18) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 240px at 80% 60%, rgba(3, 208, 255, 0.18) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  color: rgba(29, 33, 40, 0.55);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.cidet-app .media-placeholder span {
  font-size: 0.85rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(29, 33, 40, 0.22);
  background: rgba(255, 255, 255, 0.55);
}
.cidet-app .media-placeholder--phone {
  height: 240px;
}
.cidet-app .media-placeholder--chat {
  height: 210px;
}
.cidet-app .media-placeholder--dashboard {
  height: 240px;
}
.cidet-app {
  /* =========================
    VIDEO MARQUEE (LOCAL)
  ========================= */
}
.cidet-app .video-marquee-section {
  padding: 2.6rem 0 2.2rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(251, 244, 238, 0.65) 40%, rgba(255, 255, 255, 0) 100%);
}
.cidet-app .video-marquee-section .video-marquee-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 1.25rem auto;
}
.cidet-app .video-marquee-section .video-marquee-header h2 {
  margin: 0 0 0.5rem 0;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #1D2128;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.05;
}
.cidet-app .video-marquee-section .video-marquee-header h2 .accent {
  color: #FF5A72;
}
.cidet-app .video-marquee-section .video-marquee-header h2 i {
  color: #03D0FF;
  margin-left: 0.35rem;
}
.cidet-app .video-marquee-section .video-marquee-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(29, 33, 40, 0.7);
}
.cidet-app .video-marquee-section .video-marquee-footnote {
  margin: 0.9rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(29, 33, 40, 0.55);
}
.cidet-app .video-marquee {
  position: relative;
  border-radius: 16px;
  padding: 0.9rem 0.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 33, 40, 0.06);
}
.cidet-app .video-marquee:hover .video-marquee__track, .cidet-app .video-marquee:focus-within .video-marquee__track {
  animation-play-state: paused;
}
.cidet-app .video-marquee .video-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 3;
  pointer-events: none;
}
.cidet-app .video-marquee .video-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, #f4f4f4 0%, rgba(251, 244, 238, 0) 100%);
}
.cidet-app .video-marquee .video-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, #f4f4f4 0%, rgba(251, 244, 238, 0) 100%);
}
.cidet-app .video-marquee__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
  animation: videoMarquee 34s linear infinite;
}
.cidet-app .video-list {
  display: flex;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cidet-app .video-card {
  width: 280px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 33, 40, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  display: grid;
  place-items: stretch;
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
}
.cidet-app .video-card:focus-within {
  outline: 3px solid rgba(3, 208, 255, 0.45);
  outline-offset: 2px;
}
.cidet-app .video-card--logo {
  background: rgba(3, 208, 255, 0.08);
  border-color: rgba(3, 208, 255, 0.25);
}
.cidet-app .video-card--logo .video-card__logo {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: radial-gradient(520px 240px at 18% 20%, rgba(255, 90, 114, 0.28) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(540px 260px at 86% 70%, rgba(3, 208, 255, 0.22) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, #1D2128, #1D2128);
}
.cidet-app .video-card--logo .video-card__logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cidet-app .video-card__media {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 300px;
  background: rgba(29, 33, 40, 0.04);
  border-radius: inherit;
  overflow: hidden;
  cursor: pointer;
}
.cidet-app .video-card__audio-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cidet-app .video-card__audio-icon .video-card__audio-icon--muted,
.cidet-app .video-card__audio-icon .video-card__audio-icon--unmuted {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.cidet-app .video-card__audio-icon .video-card__audio-icon--unmuted {
  color: #03D0FF;
}
.cidet-app .video-el {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  background: rgba(29, 33, 40, 0.04);
  border-radius: inherit;
}
.cidet-app .video-el:not([src]) {
  background: radial-gradient(420px 220px at 20% 25%, rgba(255, 90, 114, 0.18) 0%, rgba(255, 255, 255, 0) 62%), radial-gradient(420px 240px at 80% 60%, rgba(3, 208, 255, 0.18) 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(180deg, rgba(29, 33, 40, 0.02), rgba(29, 33, 40, 0.01));
}
.cidet-app .video-brand {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: rgba(29, 33, 40, 0.82);
  letter-spacing: -0.02em;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 33, 40, 0.08);
  backdrop-filter: blur(6px);
}
@keyframes videoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .cidet-app .video-card {
    width: 240px;
    height: 380px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cidet-app .video-marquee__track {
    animation: none;
    transform: translateX(0);
  }
  .cidet-app .video-card {
    transition: none;
  }
  .cidet-app .video-card:hover {
    transform: none;
  }
}
.cidet-app .empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.73);
  border: 1px dashed rgba(255, 90, 114, 0.25);
  border-radius: 24px;
}
.cidet-app .empty-state .empty-state__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1D2128;
  margin-bottom: 0.75rem;
}
.cidet-app .empty-state .empty-state__text {
  color: rgba(29, 33, 40, 0.72);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.cidet-app {
  /* ==========================================
     TOAST (Newsletter)
  ========================================== */
}
.cidet-app .toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, 100% - 36px);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 1px 4px 8px 0px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 99999;
}
.cidet-app .toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cidet-app .toast__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(3, 208, 255, 0.14);
  color: #03D0FF;
  font-size: 1.2rem;
}
.cidet-app .toast__content {
  line-height: 1.3;
}
.cidet-app .toast__title {
  display: block;
  font-weight: 900;
  color: #1D2128;
  margin-bottom: 2px;
}
.cidet-app .toast__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(29, 33, 40, 0.72);
}
.cidet-app .toast__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.cidet-app .toast__close:hover {
  transform: translateY(-1px);
}
.cidet-app .toast__close:focus-visible {
  outline: 3px solid rgba(3, 208, 255, 0.5);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .cidet-app .toast {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

[style*="#c36"],
[style*="#C36"],
[style*="#cc3366"],
[style*="#CC3366"] {
  background-color: rgba(3, 208, 255, 0.18) !important;
  background: rgba(3, 208, 255, 0.18) !important;
  border-color: rgba(3, 208, 255, 0.18) !important;
}
