 /* Estilos específicos para el artículo */

     /* Sistema de tipografía */
     body {
        font-family: 'Noto Sans', sans-serif;
        color: #333;
        line-height: 1.7;
      }
      
      h1, h2, h3, h4 {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #222;
      }
      .article-header {
        padding: 60px 0 30px;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
      }
      
      .article-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #3498db;
      }
      
      .article-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.2;
      }
      
      .article-meta {
        color: #7f8c8d;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
      }
      
      .article-author {
        font-weight: 600;
        color: #2c3e50;
        display: block;
        margin-bottom: 5px;
      }
      
      .article-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
        line-height: 1.8;
        color: #444;
      }
      
      .article-section {
        margin-bottom: 40px;
      }
      
      .article-section h2 {
        color: #2c3e50;
        margin: 50px 0 20px;
        font-size: 1.8rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
      }
      
      .article-section h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #3498db;
      }
      
      .article-img {
        max-width: 100%;
        height: auto;
        margin: 30px 0;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
      
      .conclusion {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        margin: 50px 0;
        border-left: 4px solid #3498db;
      }
      
      .conclusion h2 {
        margin-top: 0;
      }
      
      ul {
        padding-left: 20px;
        margin: 20px 0;
      }
      
      li {
        margin-bottom: 10px;
      }

      .join-community {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        max-width: 700px;
        margin: 50px auto;
        text-align: center;
        border: 1px solid #eee;
      }
      
      .join-community h3 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #3498db;
      }
      
      .join-community p {
        margin-bottom: 20px;
        color: #333;
      }
      
      .join-community .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
      }
      
      .join-community .social-links a {
        color: #3498db;
        text-decoration: none;
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
      }
      
      /* YouTube hover efecto en rojo */
      .join-community .social-links a[href*="youtube"]:hover {
        background-color: #ff0000;
        color: white;
      }
      
      /* Telegram hover efecto azul */
      .join-community .social-links a[href*="t.me"]:hover {
        background-color: #0088cc;
        color: white;
      }
      
      /* Sección completa del video */
.video-section {
  margin: 25px 0;
  text-align: center;
}

/* Contenedor responsive mejorado */
.video-wrapper {
  position: relative;
  margin: 0 auto;
  width: 95%;
  max-width: 800px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
  .video-wrapper {
    width: 100%;
    padding-right: 15px; /* Empuja el video hacia la derecha */
    transform: translateX(8px); /* Ajuste fino de centrado */
  }
  
  .video-section p {
    padding: 0 15px;
    text-align: left;
  }
  
  .video-note {
    font-size: 0.9em;
    padding: 0 15px;
    text-align: right;
    margin-top: 8px;
  }
}

.comparison-table {
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th {
  background-color: #2c3e50;
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.comparison-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.comparison-table tr:hover {
  background-color: #f1f1f1;
}

.feature-col {
  width: 30%;
}

.liquid-col, .air-col {
  width: 35%;
}

.liquid-col {
  background-color: #3498db30;
}

.air-col {
  background-color: #e74c3c30;
}

.table-note {
  font-size: 0.8rem;
  color: #7f8c8d;
  margin-top: 0.5rem;
  text-align: right;
  font-style: italic;
}