:root {
      --bg: #060711;
      --bg-soft: #0f101a;
      --card: #141523;
      --accent: #ccff00;
      --accent-soft: rgba(242, 181, 68, 0.15);
      --text-main: #f7f7fb;
      --text-soft: #b3b3cc;
      --border-soft: #26273a;
      --error: #ff5f5f;
      --text: #fff;
      --border: #666;
      --panel:  #333333 ; /* mismo color que el fondo, instead of "Transparent" */
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #333333 0, #333333 55%); /*radial-gradient(circle at top, #191a2b 0, #050510 55%);*/
      color: var(--text-main);
      color: var(--text-main);
      line-height: 1.3;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    p { margin-bottom: 1.4em; }

    .page {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) 4rem;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.5rem 1.5rem;
      position: sticky;
      top: 0;
      border-radius: 1.4rem;
      z-index: 10;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(11,12,24,0.95), rgba(11,12,24,0.95), transparent);
      box-shadow: 0 0cap 0px rgb(173, 252, 0);
      margin: 2px;
    }
    h1{
      margin:0 0 10px;
      font-size: clamp(4rem, 4vw, 4.5rem);
      line-height:1.05;
      letter-spacing:-.4px;
    }
    h2{
      margin:0 0 10px;
      font-size: clamp(20px, 3vw, 36px);
      line-height:1.05;
      letter-spacing:-.4px;
       font-weight: 300;
    }
     
    strong {
        color:  rgb(173, 252, 0); /* example: gold */
        }

    .container {
        padding: 24px;
        }

   
    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 10%, #ffffff, rgb(153, 248, 0), rgb(153, 248, 0));
      box-shadow: 0 0 32px rgb(153, 248, 0);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: inherit;
      background: radial-gradient(circle at 20% 0, rgba(0,0,0,0.12), rgba(0,0,0,0.9));
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-title {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      /*text-transform: uppercase;*/
    }

    .logo-sub {
      font-size: 0.72rem;
      color: var(--text-soft);
    }

    .cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
    }


    .card {
          /* todas ocupan el mismo ancho */
      min-width: 0;              /* MUY importante para móvil */
      height: 380px;
      border-radius: 10px;
      
      padding: 8px;
      box-sizing: border-box;

      background:#181e00;
      border: 1px solid var(--border-soft);
      box-shadow: 0 0cap 5px rgb(173, 252, 0);

      position: relative;
    }
   
        .card:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 40px rgb(183, 255, 0);
    }

    .cards-container{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

 
.card h4 {
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 15px;

  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--accent);

  white-space: normal;     /* allow wrapping */
  overflow: visible;       /* no cutting */
  word-break: break-word;  /* safety for small screens */
}

@media (max-width: 480px) {
  .card h4 {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }
}

    .card p {
      margin: 0;
      font-size: 1.0rem;
      line-height: 1.3;
      text-align: center;   /* centra TODO el texto */
      color: #7b990f;
      overflow: hidden;
    }
        /* El símbolo + */
    .card:not(:last-child)::after {
      content: " ";
      position: absolute;
      right: -27px;          /* coloca el + entre tarjetas */
      top: 50%;
      transform: translateY(-50%);
      
      font-weight: 600;
      color: #93c32c;
       opacity: 0.6;
      font-size: 30px;
    }

          /* ENTRE LA 3ª Y LA 4ª → =@ */
      .card:nth-child(2)::after {
        content: " ";
        font-size: 30px;
        color:#93c32c;
      }

    nav {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      font-size: 0.85rem;
    }

    nav a {
      color: var(--text-soft);
      transition: color 0.18s ease, opacity 0.18s ease;
      opacity: 0.9;
    }

    nav a:hover {
      color: var(--accent);
      opacity: 1;
    }

    .nav-cta {
      padding: 0.42rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-weight: 500;
    }

    .nav-cta:hover {
      background: var(--accent-soft);
    }

    .anchor-offset {
        position: relative;
        top: -100px;  /* Höhe deines Headers */
        visibility: hidden;
        height: 0;
        }

    .anchor-offsetXL {
        position: relative;
        top: -200px;  /* Höhe deines Headers */
        visibility: hidden;
        height: 0;
        }


    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
      gap: clamp(1.75rem, 6vw, 3.5rem);
      padding: 2.5rem 0 3.25rem;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.18rem 0.65rem;
      border-radius: 999px;
      background: rgba(13, 14, 26, 0.92);
      border: 1px solid rgba(242,181,68,0.40);
      color: var(--accent);
      font-size: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .hero-tag-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 12px rgba(242,181,68,0.8);
    }

    .hero-title {
      font-size: clamp(4rem, 4vw, 4.5rem);
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .hero-title2 {
      font-size: clamp(3rem, 4vw, 4rem);
      font-weight: 700;
      letter-spacing: 0.03em;
      /*text-transform: uppercase;*/
      margin-bottom: 0.75rem;
    }

    .hero-title span {
      color: #cbfd00;
    } 
     .hero-title2 span {
      color:#cbfd00;
    }

    .green{
      color:#cbfd00;
      
    }
    .greenbold{
      color:#cbfd00;
      font-weight: 500;
    }



    .hero-sub {
      font-size: 0.97rem;
      color: var(--text-main);
      max-width: 34rem;
    }

    .hero-sub strong {
      color: var(--text-main);
      font-weight: 500;
    }

    .hero-question {
      margin-top: 1.25rem;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 1.85rem;
    }

    .btn {
      border-radius: 1.0rem;
      padding: 0.8rem 1.5rem;
      font-size: 0.8rem;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #0b0d18, #0b0d18);
      color: #ccff00 ;
      box-shadow: 3px 3px 10px #ccff00;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 40px rgb(183, 255, 0);
    }

    .btn-outline {
      border-color: #3b3d56;
      background: transparent;
      color: var(--text-main);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      background: rgba(242,181,68,0.08);
      color: var(--accent);
    }

    .btn small {
      font-size: 0.78rem;
      opacity: 0.85;
    }

    .hero-note {
      margin-top: 0.85rem;
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      background: radial-gradient(circle at 0 0,#0e1200, transparent 0%), #121323;
      border-radius: 1.6rem;
      padding: 1.5rem 1.4rem;
      border: 1px solid var(--border-soft);
      box-shadow:
        0 18px 55px rgba(0,0,0,0.65),
        0 0 0 1px rgba(255,255,255,0.02);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hero-avatar {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 0.25rem;
    }
    .hero-avatar-circle {
      width: 52px !important;
      height: 52px !important;
      min-width: 52px !important;
      min-height: 52px !important;
      max-width: 52px !important;
      max-height: 52px !important;
      border-radius: 999px;
      overflow: hidden;
      flex-shrink: 0 !important;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-avatar-circle img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      max-width: none !important;
      flex-shrink: 0 !important;
    }


    .hero-avatar-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .hero-avatar-text strong {
      font-size: 0.9rem;
    }

    .hero-avatar-text span {
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    .hero-list {
      margin-top: 0.35rem;
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    .hero-list li {
      list-style: none;
      display: flex;
      gap: 0.45rem;
      align-items: flex-start;
      margin-bottom: 0.25rem;
    }

    .hero-dot {
      margin-top: 0.42rem;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: rgba(242,181,68,0.85);
      flex-shrink: 0;
    }
    .hero-image {
        width: 100%;
        border-radius: 1rem;
        margin: 0.5rem 0 1rem;
        }

    .hero-badge {
      margin-top: 0.75rem;
      font-size: 0.75rem;
      background: rgba(14, 18, 36, 0.95);
      border-radius: 0.75rem;
      padding: 0.7rem 0.75rem;
      border: 1px solid rgba(242,181,68,0.28);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .hero-badge span {
      color: var(--accent);
      font-weight: 500;
    }

    .hero-badge small {
      color: var(--text-soft);
      font-size: 0.74rem;
    }

    .section-foto {
    max-width: 100%;
    }
  
    .fotoCBP {
      max-width: 700px;  /* nunca más grande de 500px */
      min-width: 300px;
      width: 90%;       /* se adapta al contenedor */
      height: auto;      /* mantiene proporción */
      display: block;
    }
  
    
    /* Sections */

    section {
      padding: 2rem 2rem 2rem 2rem;
      border-top: 1px solid rgba(33,34,54,0.85);
    }

    .section-header {
      max-width: 880px;
      margin-bottom: 1.rem;
    }

    .section-kicker {
      font-size: 1.2rem;
      letter-spacing: 0.10em;
      /*text-transform: uppercase;*/
      /*color: var(--accent);*/
      color: #c5c4c4;
      margin-bottom: 0rem;
      font-weight: 300;
    }


        .section-kicker2 {
      font-size: 2.5rem;
      letter-spacing: 0.10em;
      /*text-transform: uppercase;*/
      /*color: var(--accent);*/
      color: #ccff00;
      margin-bottom: 0.35rem;
      font-weight: 300;
    }

     .section-kicker3 {
      font-size: 1.6rem;
      letter-spacing: 0.10em;
      /*text-transform: uppercase;*/
      /*color: var(--accent);*/
      color: #ffffff;
      margin-bottom: 1rem;
      font-weight: 300;
    }


    .section-title {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-sub {
      font-size: 0.93rem;
      color: var(--text-soft);
    }

    /* Problem */

    .problem-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
      gap: 1.75rem;
    }

    .problem-card {
      background: rgba(13, 11, 24, 0.9);
      border-radius: 1.25rem;
      padding: 1.4rem 1.4rem;
      border: 2px solid var(--border-soft);
      font-size: 1.1rem;
    }

    .problem-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.7rem;
    }

    .problem-card ul {
      list-style: none;
      margin-top: 0.5rem;
    }

    .problem-card li {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-soft);
      font-size: 0.88rem;
    }

    .bullet {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-soft);
      border: 1px solid var(--accent);
      margin-top: 0.35rem;
      flex-shrink: 0;
    }

    /* Programs */

    .programs-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
      gap: 1.75rem;
    }

    .program-card {
      background: #181e00;
      border-radius: 1.4rem;
      padding: 1.6rem 1.6rem 1.6rem;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      box-shadow: 0 0cap 5px rgb(173, 252, 0);
    }

    .program-card2 {
      /*background: rgba(11,12,24,0.95);*/
      background-image: url("IMG/CBP_foto.png");
       background-size: cover; /*100%;*/
       background-position: center;
      background-repeat: no-repeat;
      aspect-ratio: 16 / 9;  /* mantendrá proporción */

      border-radius: 1.4rem;
      padding: 1.6rem 1.6rem 2.2rem;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      box-shadow: 0 0cap 5px rgb(173, 252, 0);
    }

    .program-label {
      font-size: 1.6rem;
      letter-spacing: 0.16em;
      /*text-transform: uppercase;*/
      color: var(--accent);
    }
        .program-number {
      font-size: 1.0rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .program-title {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .program-sub {
      font-size: 1.0rem;
      color: var(--text-soft);
    }

    .program-list {
      list-style: none;
      margin-top: 0.2rem;
      font-size: 1rem;
      color: var(--text-soft);
    }

    .program-list li {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    .program-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin: 0.4rem 0 0.2rem;
      font-size: 1rem;
    }

    .program-pill {
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      border: 2px solid #ccff0093;
      background: rgba(14,16,30,0.8);
      color: var(--text-soft);
    }
       .program-pill2 {
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      /*border: 2px solid #ccff0093;*/
      background: rgba(14,16,30,0.8);
      color: rgb(255, 255, 255);
      font-size: 1.6rem;
    }

    .program-price {
      font-size: 0.92rem;
      font-weight: 500;
      margin-top: 0.15rem;
    }

    .program-price span {
      color: var(--accent);
      font-weight: 600;
      font-size: 1rem;
    }

    .program-guarantee {
      font-size: 0.8rem;
      color: var(--text-soft);
      margin-top: 0.25rem;
    }

    .program-footer {
      margin-top: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    .program-footerXL {
      margin-top: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 1.2rem;
      color: var(--text-soft);
    }

    .program-footer strong {
      color: var(--text-main);
    }

      .program-footerXL strong {
      color: var(--text-main);
    }

    .program-actions {
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    /* Method / Bio */

    .bio-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
      gap: 1.75rem;
    }

    .bio-highlight {
      background: rgba(11,12,24,0.95);
      border-radius: 1.3rem;
      padding: 1.5rem 1.6rem;
      border: 1px solid var(--border-soft);
      font-size: 0.9rem;
    }

    .bio-highlight p + p {
      margin-top: 0.7rem;
    }

    .bio-list {
      list-style: none;
      margin-top: 0.75rem;
      font-size: 0.88rem;
      color: var(--text-soft);
    }

    .bio-list li {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    /* Form */

    .form-card {
      margin-top: 1.4rem;
      background: rgba(11,12,24,0.95);
      border-radius: 1.4rem;
      padding: 1.5rem 1.6rem 1.6rem;
      border: 1px solid var(--border-soft);
      max-width: 520px;
    }

    .form-card h3 {
      font-size: 1.02rem;
      margin-bottom: 0.5rem;
    }

    .form-card p {
      font-size: 0.85rem;
      color: var(--text-soft);
      margin-bottom: 0.9rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.7rem;
      margin-bottom: 0.9rem;
    }

    label {
      font-size: 0.8rem;
      color: var(--text-soft);
      display: block;
      margin-bottom: 0.15rem;
    }

    input, textarea {
      width: 100%;
      background: #080814;
      border-radius: 0.6rem;
      border: 1px solid #26273a;
      padding: 0.55rem 0.65rem;
      color: var(--text-main);
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
    }

    textarea {
      min-height: 80px;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(242,181,68,0.25);
      background: #050510;
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--text-soft);
      margin-top: 0.3rem;
    }

    /* Final CTA */

    .cta-final {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-final h2 {
      font-size: 1.4rem;
      margin-bottom: 0.4rem;
    }

    .cta-final p {
      font-size: 0.9rem;
      color: var(--text-soft);
      margin-bottom: 1.2rem;
    }

    .cta-final-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      justify-content: center;
    }

    footer {
      padding: 2rem 0 0.5rem;
      font-size: 0.75rem;
      color: var(--text-soft);
      text-align: center;
      opacity: 0.8;
    }

    /* Responsive */

    @media (max-width: 880px) {
      header {
        flex-direction: row;
        gap: 1rem;
      }

      nav {
        display: none;
      }

      .hero {
        grid-template-columns: minmax(0,1fr);
        padding-top: 2rem;
      }

      .hero-right {
        order: -1;
      }

      .problem-grid,
      .programs-grid,
      .bio-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .page {
        padding-bottom: 3rem;
      }
    }

    @media (max-width: 520px) {
      .hero-title{
        font-size: 3rem;
      }

      .hero-title2{
        font-size: 3rem;
      }

      .hero-card {
        padding: 1.3rem 1.15rem;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-cta-group {
        flex-direction: column;
      }

      section {
        padding: 2.25rem 0;
      }
    }

    .wrap{
        max-width: 760px;
        margin: 20px 0;   /* izquierda */
        padding-left: 0%;
    }

    /* contenedor con borde punteado */
    .accordion{
      /*border: 1px solid #ccff00;*/
      border-radius: 14px;
      background: var(--panel);
      overflow: hidden;
      width: 75%;
    }

    /* "título botón" */
    .acc-btn{
      width: 100%;
      background: linear-gradient(135deg, #0b0d18, #0b0d18);
      color: #ccff00;
      border: 1px solid transparent;
      padding: 16px 18px;
      font-size: 1.05rem;
      font-weight: 400;    /*UPDATE from 800*/
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-radius: 1rem;
      box-shadow: 3px 3px 10px #ccff00;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
    }

    .acc-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 40px rgb(183, 255, 0);
    }

    /* flecha */
    .chev{
      display: inline-block;
      transition: transform 220ms ease;
      font-size: 1.4rem;                         /*UPDATE to 1.2*/
      line-height: 1;
      color: var(--accent);
      opacity: .9;
    }
    .acc-btn[aria-expanded="true"] .chev{
      transform: rotate(180deg);
    }


    /* panel (se abre/cierra con altura animada) */
    .panel{
      height: 0;
      overflow: hidden;
      padding: 0 18px; /* padding vertical lo manejamos dentro para que no “salte” */
      transition: height 260ms ease;
    }

    .panel-inner{
      padding: 6px 0 14px;
    }

    /* lista con checks */
    .lesson-list{
      margin: 0px 0 0;
      padding: 0;
      list-style: none;
    }

    .lesson-list li{
      position: relative;
      padding-left: 25px;
      margin: 14px 0;
      line-height: 1.55;
      font-size: 1rem;
      align-items: center;
      justify-content: center;
    }

    .lesson-list li::before{
      content: "+";
      position: absolute;
      left: 0;
      top: 2px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: #fff;
      color: #3b3b3b;
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    em{ opacity: .85; }


/* workshop selector */
      .workshop-form .workshop-selector {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 0.35rem;
      }

      .workshop-form .workshop-option {
        display: block;
        cursor: pointer;
        margin-bottom: 0;
      }

      .workshop-form .workshop-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
      }

      .workshop-form .option-card {
        display: block;
        width: 100%;
        background: #080814;
        border-radius: 0.6rem;
        border: 1px solid #26273a;
        padding: 0.85rem 0.9rem;
        color: var(--text-main);
        transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, transform 0.14s ease;
      }

      .workshop-form .option-card strong {
        display: block;
        margin-bottom: 0.2rem;
        color: var(--text-main);
        font-size: 0.95rem;
      }

      .workshop-form .option-card small {
        display: block;
        color: var(--text-soft);
        line-height: 1.35;
        font-size: 0.8rem;
      }

      .workshop-form .workshop-option input[type="radio"]:checked + .option-card {
        border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(242,181,68,0.25);
        background: #050510;
      }

      .workshop-form .workshop-option:hover .option-card {
        border-color: var(--accent);
        transform: translateY(-1px);
      }

      /*CARD SHORT*/
    .card-short {
      min-width: 0;
      height: 220px;              /* más corta */
      border-radius: 10px;
      padding: 12px;
      box-sizing: border-box;

      background: #181e00;
      border: 1px solid var(--border-soft);
      box-shadow: 0 0 5px rgb(173, 252, 0);

      position: relative;

      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow: hidden;
    }

    .card-short:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 40px rgb(183, 255, 0);
    }

    .card-short h4 {
      text-transform: uppercase;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
      padding-bottom: 8px;
      padding-top: 10px;
      font-size: 1.2rem;
      letter-spacing: 0.08em;
      color: var(--accent);

      white-space: normal;
      overflow: visible;
      word-break: break-word;
    }

    .card-short p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.25;
      text-align: center;
      color: #7b990f;
      overflow: hidden;
    }

    @media (max-width: 480px) {
      .card-short {
        height: 220px;
        padding: 10px;
      }

      .card-short h4 {
        font-size: 1rem;
      }

      .card-short p {
        font-size: 0.9rem;
      }
    }