html:not([lang="es"],[lang="en"]) .amtena-thanks {
    display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;700;800&display=swap&subset=latin,latin-ext');
:root {
    --color-bg:       #F7F4EF;
    --color-surface:  #FFFFFF;
    --color-text:     #1C1C1C;
    --color-muted:    #333;
    /* --color-muted:    #6B6257; */
    --color-accent:   #A05F3C;
    /* --color-accent:   #7A5C3C; */
    --color-rule:     #C9B99E;
    /* --color-rule:     #C9B99E; */
  
    --font-display:   'Merriweather Sans', sans-serif;
    --font-body:      'Montserrat', sans-serif;
  
    --section-pad-v:  clamp(3rem, 7vw, 6rem);
    --section-pad-h:  clamp(1.25rem, 5vw, 4rem);
    --gap:            clamp(2rem, 5vw, 4.5rem);
  }
  
  /* ── Sección ── */
  .amtena-thanks {
    background-color: var(--color-bg);
    padding: var(--section-pad-v) var(--section-pad-h);
  }
  
  /* ── Grid de dos columnas ── */
  .amtena-thanks__inner {
    display: grid;
    grid-template-columns: minmax(0, 5fr) 1px minmax(0, 7fr);
    gap: 0 var(--gap);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
  }
  
  /* ── Columna del video ── */
  .amtena-thanks__video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .amtena-thanks__video-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  }
  
  .amtena-thanks__video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  /* ── Línea divisoria vertical ── */
  .amtena-thanks__rule {
    background-color: var(--color-rule);
    height: 100%;
    min-height: 320px;
    width: 1px;
    align-self: stretch;
  }
  
  /* ── Columna de texto ── */
  .amtena-thanks__text-col {
    padding: 1rem 0;
  }
  
  .amtena-thanks__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
  }
  
  .amtena-thanks__quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-rule);
    margin-bottom: -1.5rem;
    display: block;
    user-select: none;
  }
  
  .amtena-thanks__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }
  
  .amtena-thanks__title strong {
    font-weight: 700;
    color: var(--color-accent);
  }
  
  .amtena-thanks__body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--color-muted);
    line-height: 1.8;
    max-width: 52ch;
  }
  
  .amtena-thanks__body p + p {
    margin-top: 1rem;
  }
  
  .amtena-thanks__signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-rule);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .amtena-thanks__signature-line {
    width: 2.5rem;
    height: 2px;
    background-color: var(--color-accent);
    flex-shrink: 0;
  }
  
  .amtena-thanks__signature-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    text-transform: uppercase;
  }
  
  /* ── Responsive: mobile ── */
  @media (max-width: 768px) {
    .amtena-thanks__inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      gap: 2rem 0;
    }
  
    .amtena-thanks__rule {
      display: none;
    }
  
    .amtena-thanks__video-col {
      order: 2;
    }
  
    .amtena-thanks__text-col {
      order: 1;
    }
  
    .amtena-thanks__video-wrap {
      max-width: 280px;
    }
  
    .amtena-thanks__body {
      max-width: 100%;
    }
  }
  
  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }
  