/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos gerais do corpo */
  body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #444;
    line-height: 1.5;
    overflow-x: hidden;
    transition: opacity ease-in 0.2s;
  }
  
  body[unresolved] {
    opacity: 0;
    display: block;
    overflow: hidden;
    position: relative;
  }
  
  /* Wrapper de conteúdo */
  .content-wrapper {
    padding: 0 1rem;
    max-width: 1020px;
    margin: 0 auto;
  }
  
  /* Texto de advertorial */
  .advertorial-text {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #71717a;
  }
  
  .advertorial-text p {
    padding: 0.5rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Caixa da fonte */
  .source-box {
    background-color: #000;
    color: #e4e4e7;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    width: fit-content;
    margin: 0 auto;
  }
  
  .source-box a {
    color: inherit;
    text-decoration: none;
  }
  
  .source-box h1 {
    font-size: 1rem;
  }
  
  /* Informações meta */
  .meta-info {
    display: flex;
    gap: 0.25rem;
    font-size: 0.75rem;
    padding-top: 1rem;
    color: #71717a;
  }
  
  .meta-info .italic {
    font-style: italic;
  }
  
  /* Seção do artigo */
  .article-section {
    padding: 1rem 0 3rem;
  }
  
  .article-layout {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .article-content {
    width: 100%;
    border-right: 1px solid #6a74819f;
  }
  
  .article-title {
    font-family: Arial, sans-serif;
    font-weight: bolder;
    font-size: 31px !important;
    line-height: 1.2;
    text-decoration: underline;
    color: #000;
  }
  
  .summary-label {
    display: block;
    color: #4b5563;
    font-size: 0.75rem;
    font-style: italic;
    padding: 1rem 0;
  }
  
  .article-text {
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: black;
  }
  
  /* Imagem do artigo */
  .article-image {
    padding: 1rem 0;
  }
  
  .article-image img {
    max-width: 100%;
    display: block;
    padding-left: 20px;
    height: auto;
    margin-left: -20px;
  }
  
  /* Botão de ação */
  .watch-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #1d4ed8;
    text-align: center;
    border: 2px solid #1d4ed8;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-family: Arial, sans-serif;
  }
  
  /* Rodapé */
  .footer {
    font-family: Arial, sans-serif;
    background-color: #f4f4f5;
    color: #a1a1aa;
    font-size: 0.75rem;
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-content p {
    text-align: left;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-contact a {
    font-family: Arial, sans-serif;
    color: #2563eb;
    text-decoration: none;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    color: #2563eb;
    text-decoration: underline;
  }
  
  .separator {
    display: none;
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .content-wrapper {
      padding: 0;
    }
    .advertorial-text {
      padding: 2rem 0;
      font-size: 1rem;
    }
  
    .source-box {
      margin: 0;
    }
  
    .meta-info {
      gap: 1rem;
      font-size: 0.6=775rem;
      color: rgb(56, 55, 55);
      font-family: Arial, sans-serif;
    }
  
    .article-layout {
      flex-direction: row;
    }
  
    .article-content {
      width: 80%;
      padding-right: 0.5rem;
    }
  
    .article-title {
      font-size: 1.875rem;
    }
  
    .article-text {
      font-size: 1.25rem;
    }
  
    .article-image {
      padding: 0 0 0 0.5rem;
    }
  
    .watch-button {
      font-size: 1.5rem;
    }
  
    .footer {
      padding: 3rem 0;
      text-align: left;
    }
  
    .footer-links {
      flex-direction: row;
      justify-content: center;
    }
  
    .separator {
      display: inline;
    }
  }
  
  @media (max-width: 480px) {
    .article-title {
      font-size: 1.5rem;
    }
    .article-text {
      font-size: 1rem;
    }
    .article-content {
        border: 0px;
    }
  }
  