/* ===================================================
   tipsedicion.css — Estilos específicos de tipsedicion.html
   Los estilos de nav, footer y animaciones globales
   viven en stylesheet.css
   =================================================== */

@keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

@keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

@keyframes fadeIn {
      to { opacity: 1; }
    }

@keyframes fadeInBody {
      to { opacity: 1; }
    }

/* SCROLLBAR CON EFECTOS DE LUZ */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgb(255, 153, 0), rgb(255, 136, 0));
  border-radius: 10px;
  border: 2px solid #0a0a0a;
  position: relative;
}

::-webkit-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 10px 10px 0 0;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(255, 170, 51), rgb(255, 153, 0));
  box-shadow: 
    0 0 10px rgba(255, 153, 0, 0.8),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, rgb(255, 136, 0), rgb(255, 153, 0));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(255, 153, 0) #1a1a1a;
}

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

:root {
      --primary-color: rgb(255, 153, 0);
      --primary-dark: rgb(255, 136, 0);
      --error-color: rgb(255, 68, 68);
      --bg-dark: #111111;
      --bg-card: #1a1a1a;
      --text-light: #ffffff;
      --text-muted: #cccccc;
      --border-color: #333;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

body {
      font-family: 'Montserrat Alternates', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      color: var(--text-light);
      line-height: 1.6;
      padding: 20px;
      opacity: 0;
      animation: fadeInBody 0.8s ease-out forwards;
    }

.container {
      max-width: 1000px;
      margin: 0 auto;
      background: var(--bg-dark);
      border-radius: 15px;
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(20px);
      animation: slideUpContainer 0.8s ease-out 0.3s forwards;
    }

@keyframes slideUpContainer {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.header {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 2px solid var(--primary-color);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out 0.5s forwards;
    }

.logo {
      font-size: 4rem;
      margin-bottom: 20px;
      opacity: 0;
      transform: scale(0.8);
      animation: bounceIn 0.8s ease-out 0.7s forwards;
    }

h1 {
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 15px;
      font-weight: bold;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 0.9s forwards;
    }

.subtitle {
      color: var(--text-muted);
      font-size: 1.2rem;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 1.1s forwards;
    }

/* INTRODUCCIÓN */
    .introduction {
      background: rgba(255, 153, 0, 0.1);
      border-radius: 12px;
      padding: 25px;
      margin: 30px 0;
      border: 1px solid rgba(255, 153, 0, 0.3);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out 1.3s forwards;
    }

.introduction h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

.introduction p {
      margin-bottom: 15px;
      color: var(--text-muted);
    }

.introduction ul {
      margin: 15px 0;
      padding-left: 20px;
    }

.introduction li {
      margin-bottom: 8px;
      color: var(--text-muted);
    }

.introduction strong {
      color: var(--text-light);
    }

/* SECCIÓN YOUTUBE */
    .youtube-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, #ff000024 100%);
    /* border: 1px solid rgba(255, 0, 0, 0.3); */
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.youtube-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }

.youtube-icon {
      font-size: 2.5rem;
      color: #ff0000;
    }

.youtube-title {
      color: var(--text-light);
      font-size: 1.5rem;
      font-weight: bold;
    }

.youtube-content {
      display: grid;
      
      gap: 25px;
      align-items: center;
      margin-bottom: 20px;
    }

.youtube-preview {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      border: 2px solid rgba(255, 0, 0, 0.5);
    }

.youtube-thumbnail {
      font-size: 4rem;
      margin-bottom: 15px;
      color: #ff0000;
    }

.youtube-info {
      text-align: left;
    }

.youtube-info h4 {
      
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

.youtube-info ul {
      color: var(--text-muted);
      padding-left: 20px;
      margin-bottom: 15px;
    }

.youtube-info li {
      margin-bottom: 8px;
    }

.youtube-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ff0000;
      color: white;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

.youtube-button:hover {
      background: #cc0000;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    }

h2 {
      
      font-size: 1.8rem;
      margin: 40px 0 25px 0;
      border-left: 4px solid var(--primary-color);
      padding-left: 15px;
      opacity: 0;
      transform: translateX(-30px);
      animation: slideInRight 0.6s ease-out forwards;
    }

h2:nth-of-type(1) { animation-delay: 1.7s; }

h2:nth-of-type(2) { animation-delay: 1.9s; }

h2:nth-of-type(3) { animation-delay: 2.1s; }

h2:nth-of-type(4) { animation-delay: 2.3s; }

h2:nth-of-type(5) { animation-delay: 2.5s; }

h2:nth-of-type(6) { animation-delay: 2.7s; }

@keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

/* FLUJO DE TRABAJO 2x2 */
    .workflow {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin: 30px 0;
    }

.workflow-step {
      background: rgba(255, 153, 0, 0.1);
      border: 1px solid rgba(255, 153, 0, 0.3);
      border-radius: 12px;
      padding: 25px;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out forwards;
    }

.workflow-step:nth-child(1) { animation-delay: 1.8s; }

.workflow-step:nth-child(2) { animation-delay: 1.9s; }

.workflow-step:nth-child(3) { animation-delay: 2.0s; }

.workflow-step:nth-child(4) { animation-delay: 2.1s; }

.workflow-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
      border-color: var(--primary-color);
    }

.step-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

.step-icon {
      font-size: 1.8rem;
      background: var(--primary-color);
      color: black;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: bold;
    }

.step-title {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: bold;
    }

.workflow-step ul {
      color: var(--text-muted);
      padding-left: 20px;
    }

.workflow-step li {
      padding: 6px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      opacity: 0;
      transform: translateX(-10px);
      animation: slideInListItem 0.4s ease-out forwards;
    }

.workflow-step:nth-child(1) li:nth-child(1) { animation-delay: 2.0s; }

.workflow-step:nth-child(1) li:nth-child(2) { animation-delay: 2.1s; }

.workflow-step:nth-child(1) li:nth-child(3) { animation-delay: 2.2s; }

.workflow-step:nth-child(1) li:nth-child(4) { animation-delay: 2.3s; }

.workflow-step:nth-child(1) li:nth-child(5) { animation-delay: 2.4s; }

.workflow-step:nth-child(2) li { animation-delay: 2.1s; }

.workflow-step:nth-child(3) li { animation-delay: 2.2s; }

.workflow-step:nth-child(4) li { animation-delay: 2.3s; }

@keyframes slideInListItem {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

.workflow-step li:last-child {
      border-bottom: none;
    }

/* TÉCNICAS DE EDICIÓN */
    .tip-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 25px 0;
    }

.tip-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      transition: all 0.3s ease;
      opacity: 0;
      transform: scale(0.9);
      animation: scaleIn 0.5s ease-out forwards;
    }

.tip-card:nth-child(1) { animation-delay: 2.2s; }

.tip-card:nth-child(2) { animation-delay: 2.3s; }

.tip-card:nth-child(3) { animation-delay: 2.4s; }

.tip-card:nth-child(4) { animation-delay: 2.5s; }

@keyframes scaleIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

.tip-card:hover {
      border-color: var(--primary-color);
      transform: translateY(-3px) scale(1.02);
    }

.tip-icon {
      font-size: 2rem;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

.tip-title {
      color: var(--text-light);
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

/* AUDIO PROFESIONAL */
    .audio-tip {
      background: rgba(255, 153, 0, 0.1);
      border: 1px solid rgba(255, 153, 0, 0.3);
      border-radius: 10px;
      padding: 20px;
      margin: 20px 0;
      opacity: 0;
      transform: translateX(-30px);
      animation: slideInRight 0.6s ease-out 2.6s forwards;
    }

/* SOFTWARE RECOMENDADO */
    .software-section {
      background: rgba(255, 153, 0, 0.1);
      border-radius: 10px;
      padding: 25px;
      margin: 30px 0;
      opacity: 0;
      transform: scale(0.95);
      animation: scaleIn 0.6s ease-out 2.8s forwards;
    }

.software-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

.software-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(15px);
      animation: fadeInUp 0.5s ease-out forwards;
    }

.software-card:nth-child(1) { animation-delay: 3.0s; }

.software-card:nth-child(2) { animation-delay: 3.1s; }

.software-card:nth-child(3) { animation-delay: 3.2s; }

.software-card:hover {
      background: rgba(255, 153, 0, 0.1);
      transform: translateY(-2px);
    }

/* ATAJOS DE TECLADO */
    .shortcuts {
      background: rgba(255, 153, 0, 0.1);
      border-radius: 8px;
      padding: 20px;
      margin: 25px 0;
      opacity: 0;
      transform: translateX(30px);
      animation: slideInLeft 0.6s ease-out 3.3s forwards;
    }

@keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

.shortcut-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      margin: 8px 0;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateX(20px);
      animation: slideInRight 0.4s ease-out forwards;
    }

.shortcut-item:nth-child(1) { animation-delay: 3.5s; }

.shortcut-item:nth-child(2) { animation-delay: 3.6s; }

.shortcut-item:nth-child(3) { animation-delay: 3.7s; }

.shortcut-item:nth-child(4) { animation-delay: 3.8s; }

.shortcut-item:nth-child(5) { animation-delay: 3.9s; }

.shortcut-item:hover {
      background: rgba(255, 153, 0, 0.15);
    }

.shortcut-key {
      background: var(--primary-color);
      color: black;
      padding: 5px 10px;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
      font-weight: bold;
    }

/* ERRORES COMUNES */
    .errors-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 25px 0;
    }

.error-card {
      background: rgba(255, 68, 68, 0.1);
      border: 1px solid rgba(255, 68, 68, 0.3);
      border-radius: 8px;
      padding: 25px;
      transition: all 0.3s ease;
      min-height: 180px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out forwards;
    }

.error-card:nth-child(1) { animation-delay: 4.0s; }

.error-card:nth-child(2) { animation-delay: 4.1s; }

.error-card:nth-child(3) { animation-delay: 4.2s; }

.error-card:nth-child(4) { animation-delay: 4.3s; }

.error-card:nth-child(5) { animation-delay: 4.4s; }

.error-card:nth-child(6) { animation-delay: 4.5s; }

.error-card:hover {
      border-color: var(--error-color);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
    }

.error-icon {
      font-size: 2rem;
      margin-bottom: 15px;
      color: var(--error-color);
    }

.error-title {
      color: #ffffff;
      font-size: 1.2rem;
      margin-bottom: 12px;
      font-weight: bold;
      flex: 1;
    }

.error-description {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.4;
    }

.btn-download {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: black;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 4.9s forwards;
    }

.btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
      color: white;
    }

/* Botón Volver al Inicio Fijo */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary-color);
      color: black;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 5.1s forwards;
    }

.back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
      background: rgb(255, 170, 0);
    }

/* ===== RESPONSIVE MEJORADO ===== */

/* Tablets y pantallas medianas */
@media screen and (max-width: 1024px) {
  .container {
    max-width: 95%;
    padding: 30px 25px;
  }
  
  .workflow,
  .tip-grid,
  .errors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .youtube-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .youtube-info {
    text-align: center;
  }
}

/* Tablets pequeñas y móviles grandes */
@media screen and (max-width: 768px) {
  body {
    padding: 15px 10px;
  }
  
  .container {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .logo {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  /* INTRODUCCIÓN */
  .introduction {
    padding: 20px;
    margin: 25px 0;
  }
  
  .introduction h3 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* YOUTUBE SECTION */
  .youtube-section {
    padding: 20px;
    margin: 25px 0;
  }
  
  .youtube-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .youtube-title {
    font-size: 1.3rem;
  }
  
  .youtube-preview {
    padding: 15px;
  }
  
  .youtube-thumbnail {
    font-size: 3rem;
  }
  
  /* GRIDS - CAMBIAR A UNA COLUMNA */
  .workflow,
  .tip-grid,
  .errors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .workflow-step {
    padding: 20px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  /* TIP CARDS */
  .tip-card {
    padding: 18px;
  }
  
  .tip-icon {
    font-size: 1.8rem;
  }
  
  .tip-title {
    font-size: 1.1rem;
  }
  
  /* AUDIO SECTION */
  .audio-tip {
    padding: 18px;
    margin: 18px 0;
  }
  
  /* SOFTWARE SECTION */
  .software-section {
    padding: 20px;
    margin: 25px 0;
  }
  
  .software-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .software-card {
    padding: 18px;
  }
  
  /* SHORTCUTS */
  .shortcuts {
    padding: 18px;
    margin: 20px 0;
  }
  
  .shortcut-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }
  
  .shortcut-key {
    align-self: flex-start;
  }
  
  /* ERROR CARDS */
  .error-card {
    padding: 20px;
    min-height: auto;
  }
  
  .error-icon {
    font-size: 1.8rem;
  }
  
  .error-title {
    font-size: 1.1rem;
  }
  
  /* HEADERS */
  h2 {
    font-size: 1.5rem;
    margin: 35px 0 20px 0;
    padding-left: 12px;
  }
  
  /* BOTONES */
  .youtube-button,
  .btn-download {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  /* BOTÓN FIXED */
  .custom-btn-fixed-scroll {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* Móviles pequeños */
@media screen and (max-width: 480px) {
  body {
    padding: 10px 5px;
  }
  
  .container {
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .header {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .logo {
    font-size: 2.5rem;
  }
  
  h1 {
    font-size: 1.7rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  /* CONTENIDO MÁS COMPACTO */
  .introduction,
  .youtube-section,
  .software-section {
    padding: 18px;
    margin: 20px 0;
  }
  
  .workflow-step,
  .tip-card,
  .error-card {
    padding: 16px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  /* LISTAS MÁS COMPACTAS */
  .workflow-step ul,
  .introduction ul,
  .youtube-info ul {
    padding-left: 18px;
  }
  
  .workflow-step li,
  .introduction li,
  .youtube-info li {
    margin-bottom: 6px;
    font-size: 0.9rem;
  }
  
  /* TEXTO MÁS PEQUEÑO PARA MÓVILES */
  p {
    font-size: 0.95rem;
  }
  
  .tip-card p,
  .error-description {
    font-size: 0.85rem;
  }
  
  /* HEADERS MÁS PEQUEÑOS */
  h2 {
    font-size: 1.3rem;
    margin: 30px 0 18px 0;
  }
  
  .youtube-title {
    font-size: 1.2rem;
  }
  
  /* BOTÓN FIXED MÁS PEQUEÑO */
  .custom-btn-fixed-scroll {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .btn-text {
    font-size: 0.9rem;
  }
}

/* Móviles muy pequeños (orientación vertical) */
@media screen and (max-width: 360px) {
  .container {
    padding: 15px 12px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .workflow-step,
  .tip-card,
  .error-card {
    padding: 14px;
  }
  
  .custom-btn-fixed-scroll {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* MEJORAS ESPECÍFICAS PARA ELEMENTOS CRÍTICOS */

/* Evitar desbordamiento de texto en títulos largos */
.step-title,
.tip-title,
.error-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Mejorar legibilidad en móviles */
@media screen and (max-width: 768px) {
  body {
    line-height: 1.5;
  }
  
  p, li {
    line-height: 1.4;
  }
}

/* Mejorar la jerarquía visual en móviles */
@media screen and (max-width: 768px) {
  h2 {
    border-left-width: 3px;
    margin-left: 5px;
  }
  
  .workflow-step,
  .tip-card,
  .error-card {
    border-width: 1px;
  }
}

/* Ajustes específicos para la sección de YouTube en móviles */
@media screen and (max-width: 768px) {
  .youtube-content {
    gap: 20px;
  }
  
  .youtube-info h4 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .youtube-info ul {
    text-align: left;
  }
}

/* Mejorar la visualización de atajos en móviles */
@media screen and (max-width: 768px) {
  .shortcut-item {
    padding: 10px 12px;
  }
  
  .shortcut-key {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}

/* Optimizar animaciones para dispositivos móviles */
@media screen and (max-width: 768px) {
  /* Reducir ligeramente las duraciones de animación para mejor rendimiento */
  .container {
    animation-duration: 0.6s;
  }
  
  .header {
    animation-duration: 0.5s;
  }
  
  .logo {
    animation-duration: 0.7s;
  }
  
  h1, .subtitle {
    animation-duration: 0.5s;
  }
  
  .introduction,
  .youtube-section {
    animation-duration: 0.7s;
  }
  
  .workflow-step,
  .tip-card,
  .error-card {
    animation-duration: 0.5s;
  }
}