  @font-face {
    font-family: 'Pocion';
    src: url('./assets/PocionSansVF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }
  @font-face {
    font-family: 'Pocion';
    src: url('./assets/PocionItalicaVF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
  }

  /* =============================================
     DESIGN TOKENS & RESET
  ============================================= */
  :root {
    --magenta-pcn:    #ed0180;
    --magenta-wash:    #ffe6f2;
    --cream:         #f2f2f2;
    --warm-white:    #FDFCF9;
    --charcoal:      #1C2B26;
    --text-body:     #3A4A42;
    --text-muted:    #7A8C84;
    --text-light:    #A8B8B0;
    --gold-light:    #E8D5B0;
    --border:        #DDE8E3;
    --shadow-sm:     0 2px 8px rgba(45,74,62,0.08);
    --shadow-md:     0 6px 24px rgba(45,74,62,0.12);
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-pill:   100px;
    --font-display:  'Pocion', sans-serif;
    --font-body:     'Pocion', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--warm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* =============================================
     UTILITY
  ============================================= */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--magenta-pcn);
    background: var(--magenta-wash);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--magenta-pcn);
    line-height: 1.2;
    font-weight: 700;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin-top: 12px;
    line-height: 1.7;
  }

  .badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
  }
  .badge-green  { background: var(--magenta-wash); color: var(--magenta-pcn); }
  .badge-gold   { background: var(--gold-light); color: #8A6A2A; }
  .badge-dark   { background: var(--magenta-pcn); color: white; }
  .badge-soft   { background: var(--border); color: var(--text-muted); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
  }
  .btn-primary {
    background: var(--magenta-pcn);
    color: white;
  }
  .btn-primary:hover { background: var(--magenta-pcn); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-outline {
    background: transparent;
    color: var(--magenta-pcn);
    border: 1.5px solid var(--magenta-pcn);
  }
  .btn-outline:hover { background: var(--magenta-wash); }
  .btn-white {
    background: white;
    color: var(--magenta-pcn);
  }
  .btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: rgba(255,255,255,0.9); }
  .btn-sm { padding: 9px 18px; font-size: 13px; }

  .card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

  /* =============================================
     NAV
  ============================================= */
  #nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--magenta-pcn);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-logo-mark span {
    font-family: var(--font-display);
    color: white;
    font-size: 18px;
    font-style: italic;
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .nav-logo-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--magenta-pcn);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .nav-logo-text em {
    font-size: 11px;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.08em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .nav-links a:not(.btn-primary) {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: all 0.15s;
    white-space: nowrap;
  }
  .nav-links a:not(.btn-primary):hover,
  .nav-links a:not(.btn-primary).active { background: var(--magenta-wash); color: var(--magenta-pcn); }

  .nav-cta { margin-left: 8px; }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: 0.2s;
  }

  /* =============================================
     HERO
  ============================================= */
  #hero {
    background: var(--magenta-pcn);
    min-height: 88vh;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: white;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .hero-title em {
    font-style: italic;
    color: white;
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-actions .btn-primary { background: white; color: var(--magenta-pcn); }
  .hero-actions .btn-primary:hover { background: var(--cream); }
  .hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
  .hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    font-weight: normal;
  }
  .hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Hero visual panel */
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-module {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 24px 20px 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
    animation: floatIn 0.6s ease both;
    text-decoration: none;
    display: block;
    position: relative;
  }
  .hero-module:hover { transform: translateX(4px); }
  .hero-module:nth-child(1) { animation-delay: 0.1s; }
  .hero-module:nth-child(2) { animation-delay: 0.2s; }
  .hero-module:nth-child(3) { animation-delay: 0.3s; }
  .hero-module:nth-child(4) { animation-delay: 0.4s; }

  @keyframes floatIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .hero-module-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    position: absolute;
    top: 24px;
    right: 20px;
  }
  .hero-module-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-right: 90px;
  }
  .hero-module-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .hero-module-title {
    font-weight: 700;
    font-size: 15px;
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .hero-module-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }
  .hero-module-bar {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
  }
  .hero-module-bar-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
  }

  /* =============================================
     MASTER POCION
  ============================================= */
  #master {
    padding: 96px 0;
    background: #f2f2f2;
  }

  .master-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  /* Line tabs */
  .line-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
  }
  .line-tab {
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-body);
    transition: all 0.15s;
  }
  .line-tab:hover { border-color: var(--magenta-pcn); color: var(--magenta-pcn); }
  .line-tab.active { background: var(--magenta-pcn); color: white; border-color: var(--magenta-pcn); }

  /* Line cards grid */
  .lines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
  }

  .line-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .line-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--magenta-pcn);
    transition: width 0.2s;
  }
  .line-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .line-card:hover::before { width: 6px; background: var(--magenta-pcn); }

  .line-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .line-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--magenta-wash);
    flex-shrink: 0;
  }
  .line-card-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--cream);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-weight: 600;
  }
  .line-card h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--magenta-pcn);
    margin-bottom: 8px;
  }
  .line-card-resuelve {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .line-card-perfil {
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .line-card-perfil::before {
    content: '👤';
    font-size: 12px;
  }

  .line-card-cta {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--magenta-pcn);
    letter-spacing: 0.02em;
    transition: gap 0.2s;
  }
  .line-card-cta-arrow {
    font-size: 14px;
    transition: transform 0.2s;
  }
  .line-card:hover .line-card-cta-arrow { transform: translateX(4px); }

  /* Product fichas */
  .product-section-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--magenta-pcn);
    margin-bottom: 6px;
    margin-top: 48px;
  }
  .product-section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
  }

  .product-ficha {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
  }
  .product-ficha:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

  .product-ficha-header {
    padding: 20px 22px 16px;
    background: var(--magenta-pcn);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .product-ficha-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: white;
    line-height: 1.3;
  }
  .product-ficha-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
  }
  .product-ficha-thumb {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
  }
  .product-ficha-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .product-ficha-thumb.placeholder {
    background: #f8f8f8;
  }

  .product-ficha-body { padding: 20px 22px; }

  .ficha-row {
    margin-bottom: 14px;
  }
  .ficha-row-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
  }
  .ficha-row-value {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.55;
  }

  .ficha-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }
  .ficha-benefit {
    font-size: 11px;
    color: var(--magenta-pcn);
    background: transparent;
    border: 1px solid var(--magenta-pcn);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-weight: 600;
  }

  .product-ficha-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cross-sell {
    font-size: 12px;
    color: var(--text-muted);
  }
  .cross-sell strong { color: var(--magenta-pcn); }

  /* Video placeholder */
  .video-placeholder {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1px solid var(--magenta-pcn);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-top: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .video-placeholder:hover {
    background: rgba(229, 0, 118, 0.05); /* very light var(--magenta-pcn) */
    border-color: var(--magenta-pcn);
  }
  .video-placeholder-icon {
    width: 36px;
    height: 36px;
    background: var(--magenta-pcn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .video-placeholder-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .video-placeholder-text strong {
    font-size: 13px;
    color: var(--magenta-pcn);
    font-weight: 700;
  }
  .video-placeholder-text span {
    font-size: 11px;
    color: var(--text-muted);
  }

  /* =============================================
     LABORATORIO DE VENTAS
  ============================================= */
  #ventas {
    padding: 96px 0;
    background: white;
  }

  .ventas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .objection-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
  }
  .objection-card .objection-q {
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .objection-card .objection-q::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--magenta-pcn);
    line-height: 1;
    flex-shrink: 0;
  }
  .objection-card .objection-a {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    padding-left: 20px;
    border-left: 3px solid var(--magenta-pcn);
  }

  .needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .need-card {
    background: transparent;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--magenta-pcn);
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
  }
  .need-card-icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 24px;
    margin-bottom: 0;
    align-self: center;
  }
  .need-card h4 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--magenta-pcn);
    margin-bottom: 0;
  }
  .need-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
  }
  .need-card-product {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--magenta-pcn);
  }

  .script-card {
    background: var(--magenta-pcn);
    color: white;
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 40px;
  }
  .script-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 24px;
    color: white;
  }
  .script-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .script-step { position: relative; }
  .script-step-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255,255,255,0.12);
    position: absolute;
    top: -8px; left: 0;
    line-height: 1;
  }
  .script-step-title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 8px;
    padding-top: 24px;
  }
  .script-step-text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  .tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .tip-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
  }
  .tip-card-icon { margin-bottom: 12px; }
  .tip-card-icon svg {
    color: var(--magenta-pcn) !important;
    width: 42px !important;
    height: 42px !important;
  }
  .tip-card h4 { font-size: 14px; font-weight: 700; color: var(--magenta-pcn); margin-bottom: 6px; }
  .tip-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

  /* =============================================
     MENTE DE LA CLIENTA
  ============================================= */
  #clienta {
    padding: 96px 0;
    background: var(--cream);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    align-items: start;
  }
  .faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .faq-q {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 14px;
    color: var(--magenta-pcn);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-q-toggle {
    width: 28px;
    height: 28px;
    background: var(--magenta-wash);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
    color: var(--magenta-pcn);
    font-weight: bold;
  }
  .faq-item.open .faq-q-toggle { transform: rotate(45deg); background: var(--magenta-pcn); color: white; }
  .faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
  }

  .myths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .myth-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .myth-col { }
  .myth-col-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    display: inline-block;
  }
  .myth-col-label.mito { background: #FFF0EE; color: #C45A5A; }
  .myth-col-label.realidad { background: var(--magenta-wash); color: var(--magenta-pcn); }
  .myth-col p { font-size: 13px; line-height: 1.6; color: var(--text-body); }

  .problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .problem-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 22px;
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
  }
  .problem-card-icon {
    grid-column: 1;
    grid-row: 1;
    font-size: 28px;
    margin-bottom: 0;
    align-self: center;
  }
  .problem-card h4 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--magenta-pcn);
    margin-bottom: 0;
  }
  .problem-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    margin-top: 12px;
  }
  .problem-card-product {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 12px;
    font-weight: 700;
    color: var(--magenta-pcn);
  }

  /* =============================================
     CONTROL CASPA FEATURE
  ============================================= */
  #caspa {
    padding: 80px 0;
    background: white;
  }
  .caspa-inner {
    background: var(--magenta-pcn);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .caspa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
  }
  .caspa-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: normal;
  }
  .caspa-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
  .caspa-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .caspa-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }
  .caspa-check-icon { width: 1.2em; height: 1.2em; flex-shrink: 0; color: white; }

  .caspa-products {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .caspa-product {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
  }
  .caspa-product:hover { background: rgba(255,255,255,0.14); }
  .caspa-product-icon {
    width: 110px;
    height: 110px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .caspa-product-name { font-weight: 700; font-size: 14px; color: white; margin-bottom: 3px; }
  .caspa-product-desc { font-size: 12px; color: rgba(255,255,255,0.6); }
  .caspa-product-price {
    margin-left: auto;
    font-weight: 700;
    font-size: 14px;
    color: white;
    white-space: nowrap;
  }

  /* =============================================
     EXPERIENCIA POCION
  ============================================= */
  #experiencia {
    padding: 96px 0;
    background: var(--cream);
  }

  .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .exp-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }
  .exp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

  .exp-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
  }
  .exp-thumb-evento     { background: linear-gradient(135deg, #2D4A3E, #4A7D68); }
  .exp-thumb-cap        { background: linear-gradient(135deg, #3D5C7A, #5B8AB5); }
  .exp-thumb-backstage  { background: linear-gradient(135deg, #5C3D2A, #9A6A40); }
  .exp-thumb-testimonio { background: linear-gradient(135deg, #4A2D5C, #8A5AB5); }
  .exp-thumb-video      { background: linear-gradient(135deg, #1C3A2E, #2D6A50); }
  .exp-thumb-foto       { background: linear-gradient(135deg, #3A2D1C, #7A5A30); }

  .exp-play {
    position: absolute;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    bottom: 10px; right: 10px;
  }

  .exp-body { padding: 18px 20px; }
  .exp-body h4 { font-weight: 700; font-size: 15px; color: var(--magenta-pcn); margin-bottom: 6px; }
  .exp-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
  .exp-footer { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
  .exp-footer small { font-size: 11px; color: var(--text-light); }

  /* =============================================
     WEB LINKS
  ============================================= */
  #weblinks {
    padding: 80px 0;
    background: white;
  }
  .weblinks-inner {
    text-align: center;
    margin-bottom: 48px;
  }
  .weblinks-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .weblink-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
  }
  .weblink-card:hover { background: var(--magenta-wash); border-color: var(--magenta-pcn); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
  .weblink-card-icon { font-size: 32px; margin-bottom: 12px; }
  .weblink-card h4 { font-weight: 700; font-size: 14px; color: var(--magenta-pcn); margin-bottom: 6px; }
  .weblink-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
  .weblink-card-arrow { font-size: 18px; color: var(--magenta-pcn); margin-top: 12px; }

  /* =============================================
     CTA FINAL
  ============================================= */
  #cta {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--magenta-pcn) 0%, var(--magenta-pcn) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '✦';
    position: absolute;
    font-size: 320px;
    color: rgba(255,255,255,0.03);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
  }
  #cta h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    color: white;
    font-weight: normal;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.2;
  }
  #cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-actions .btn-primary { background: white; color: var(--magenta-pcn); }
  .cta-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
  .cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

  /* =============================================
     FOOTER
  ============================================= */
  footer {
    background: var(--charcoal);
    padding: 56px 0 32px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand { }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .footer-logo-mark {
    width: 36px; height: 36px;
    background: var(--magenta-pcn);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .footer-logo-mark span { font-family: var(--font-display); color: white; font-size: 18px; font-style: italic; }
  .footer-logo-text strong { font-size: 14px; font-weight: 700; color: white; letter-spacing: 0.05em; text-transform: uppercase; display: block; }
  .footer-logo-text em { font-size: 11px; color: rgba(255,255,255,0.45); font-style: normal; letter-spacing: 0.08em; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
  .footer-col ul a:hover { color: white; }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-bottom a { color: rgba(255,255,255,0.5); }
  .footer-bottom a:hover { color: white; }

  /* =============================================
     SECTION HEADERS WITH DIVIDER
  ============================================= */
  .section-head { margin-bottom: 16px; }

  /* =============================================
     RESPONSIVE
  ============================================= */
  .mobile-only { display: none !important; }

  @media (max-width: 1024px) {
    .mobile-only { display: block !important; }
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 64px;
      right: -100%;
      width: 280px;
      height: calc(100vh - 64px);
      background: var(--warm-white);
      border-left: 1px solid var(--border);
      padding: 24px;
      gap: 16px;
      transition: right 0.3s ease;
      z-index: 99;
      box-shadow: -4px 0 15px rgba(0,0,0,0.05);
    }
    .nav-links.open {
      right: 0;
    }
    .nav-hamburger { display: flex; }
    .nav-inner { position: relative; flex-wrap: wrap; }
    .nav-cta { display: none; }
    
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
    .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-module:nth-child(2) { margin-left: 0; }
    .hero-module:nth-child(3) { margin-left: 0; }
    .ventas-grid { grid-template-columns: 1fr; }
    .script-steps { grid-template-columns: 1fr 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }
    .caspa-inner { grid-template-columns: 1fr; gap: 36px; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .weblinks-cards { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .needs-grid { grid-template-columns: 1fr 1fr; }
    .myths-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .hero-inner { padding: 48px 16px; }
    .hero-visual { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .script-steps { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }
    .problems-grid { grid-template-columns: 1fr 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .weblinks-cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .needs-grid { grid-template-columns: 1fr; }
    .caspa-inner { padding: 32px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    .lines-grid { grid-template-columns: 1fr; }
  }

  /* =============================================
     SCROLL ANIMATE
  ============================================= */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }


/* =============================================
   BACK TO TOP BUTTON
============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--magenta-pcn);
  color: white;
  border: 2px solid transparent;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: transparent;
  color: var(--magenta-pcn);
  border-color: var(--magenta-pcn);
  transform: translateY(-3px);
}



/* Lucide Icons Styles */
i[data-lucide], svg.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em; /* Aligns with text baseline */
}

/* Specific icon adjustments */
.line-card-icon i[data-lucide] {
  width: 1.2em;
  height: 1.2em;
  color: var(--magenta-pcn);
}

.product-section-title i[data-lucide] {
  margin-right: 8px;
}



/* Ensure hero module icons are white */
.hero-module-icon svg {
  color: white;
  width: 1.2em;
  height: 1.2em;
}



/* Custom SVG Mask Icons */
.custom-icon {
  width: 28px;
  height: 28px;
  background-color: var(--magenta-pcn);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  display: inline-block;
}



/* Inline SVG Icon Styling */
.inline-svg-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.inline-svg-icon path,
.inline-svg-icon g,
.inline-svg-icon polygon,
.inline-svg-icon rect {
  fill: var(--magenta-pcn) !important;
}



.caspa-product-icon {
  background: transparent !important;
}
.caspa-product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


.icon-link {
  width: 1em !important;
  height: 1em !important;
  vertical-align: -0.125em;
  margin-left: 0.25em;
  display: inline-block;
}
.weblink-card-arrow .icon-link {
  width: 1.5em !important;
  height: 1.5em !important;
}
