/* Container centralizado só no desktop */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* No mobile, container ocupa 100% da largura sem margem */
  @media (max-width: 768px) {
    .container {
      max-width: 100%;
      margin: 0;
      padding: 0 10px; /* ou 0 se quiser colado */
    }
  }

  /* esconder sidebar no mobile */
  @media (max-width: 768px) {
    .mobile-hide {
      display: none;
    }
  }
  
  
  
  /* TOPO PADRÃO */
  .top-bar {
    background-color: #02284c;
    color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px;
    flex-wrap: wrap;
    position: relative;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .logo img {
    height: 30px;
    width: auto;
    display: block;
  }
  
  
  /* Menu visível no desktop */
  .menu {
    display: flex;
    gap: 20px;
  }
  
  .menu a {
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    text-decoration: none;
  }
  
  /* Barra de pesquisa desktop */
  .search-box {
    display: flex;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .search-box input {
    padding: 6px 10px;
    border: none;
    outline: none;
    width: 150px;
  }
  
  .search-box button {
    background: #02284c;
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
  }
  
  /* Barra de pesquisa no topo (mobile) */
  .mobile-search-box {
    display: none;
  }
  
  .mobile-search-box input {
    padding: 5px 8px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    width: 130px;
  }
  
  .mobile-search-box button{
    background: none;
  }
  
  /* Ativa no mobile */
  @media (max-width: 768px) {
    .main-nav {
      align-items: center;
      gap: 10px;
    }
  
    .mobile-search-box {
      display: block;
    }
  
    .logo {
      order: 1;
    }
  
    .mobile-search-box {
      order: 2;
    }
  
    .mobile-icons {
      order: 3;
    }
  }
  
  
  /* Ícones visíveis só no mobile */
  .mobile-icons {
    display: none;
    gap: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* TICKER visível sempre */
  .ticker {
    background-color: #03284B;
    overflow: hidden;
    white-space: nowrap;
    padding: 0px 0;
    width: 100%;
  }
  
  .ticker p {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 30s linear infinite;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: white;
  }
  
  @keyframes ticker-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  
  /* RESPONSIVO */
  @media (max-width: 768px) {
    .menu,
    .search-box {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #02284c;
      padding: 10px;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 10;
    }
  
    .menu.active,
    .search-box.active {
      display: flex;
    }
  
    .search-box input {
      width: 100%;
    }
  
    .mobile-icons {
      display: flex;
    }
  }
  
  .desktop-subbar {
    background-color: #083969;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: white;
    font-size: 0.55rem;
  }
  
  .sub-left {
    opacity: 0.8;
  }
  
  .sub-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .sub-right a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 0.85rem;
  }
  
  .watch-oz {
    font-weight: bold;
    color: #fff;
  }
  
  .watch-oz span {
    color: #ccc;
    font-weight: normal;
    padding: 0 5px;
  }
  
  /* Oculta a subbar no mobile */
  @media (max-width: 768px) {
    .desktop-subbar {
      display: none;
    }
  }
  
  
  
  /* HEADER */
  .main-content {
    max-width: 900px;
    margin: 10px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .labels {
    margin-bottom: 10px;
  }
  
  .label {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 10px;
    font-size: 0.70rem;
    font-weight: bold;
    border-radius: 5px;
    color: white;
  }
  
  .label.ad {
    background-color: #999;
  }
  
  .label.health {
    background-color: #c12828;
  }
  
  .headline {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1.2;
  }
  
  .subheadline {
    font-size: 1.1rem;
    margin: 0px 0;
    line-height: 1.2;
  }
  
  .social-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 7px;
    padding: 5px 0;
  }
  
  .social-bubbles {
    display: flex;
    gap: 7px;
  }
  
  .social-bubbles a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #ddd;
    color: white;
    font-size: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  
  .social-bubbles a:hover {
    transform: scale(1.1);
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    text-decoration: none;
  }
  
  .social-icon.facebook { background-color: #3b5998; }
  .social-icon.twitter { background-color: #1da1f2; }
  .social-icon.whatsapp { background-color: #25d366; }
  .social-icon.print { background-color: #6c757d; }
  .social-icon.email { background-color: #5a9bd4; }
  
  
  .byline {
    font-family: Georgia, serif;
    color: #111;
    text-align: left;
  }
  
  .byline p {
    margin: 4px 0;
    font-size: 15px;
  }
  
  .bilyne .pub-date {
    color: #666;
    font-size: 14px;
  }
  
  .date {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* CONTEÚDO CENTRAL COM SIDEBAR */
  .content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0px auto;
    gap: 15px;
    padding: 0 5px;
  }
  
  .main-column {
    flex: 2;
  }
  
  .sidebar {
    flex: 1;
  }
  
  
  .video-presentation{
    text-align: center;
  }
  
  .video-preview img,
  .video-presentation img {
    width: 100%;
    border-radius: 5px;
  }
  
  .video-cta {
    color: #b20000;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .article p {
    margin-bottom: 15px;
  }
  
  .article blockquote {
    font-style: italic;
    background: #f8f8f8;
    padding: 10px 15px;
    border-left: 4px solid #999;
    margin: 20px 0;
  }
  
  /* SIDEBAR */
  .sidebar-section {
    margin-bottom: 40px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
  }
  
  .sidebar-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  
  .sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .sidebar-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .sidebar-item p {
    font-size: 0.9rem;
  }
  
  .weight-selector button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background-color: #02284c;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .watch-button-wrapper {
    margin-top: 20px;
    text-align: center;
  }
  
  .watch-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease;
  }
  
  .watch-button:hover {
    background-color: #43a047;
  }

  