
    /* ===== PÁGINA DE AUTORES ===== */
    .authors-page {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 40px 20px 80px;
    }

    /* HERO DOS AUTORES */
    .yt-authors-hero {
      background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hero) 100%);
      border-radius: var(--radius);
      padding: 60px 40px;
      margin-bottom: 60px;
      text-align: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .yt-authors-hero::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: var(--brand-yellow);
      opacity: 0.1;
      border-radius: 50%;
    }

    .yt-authors-hero::after {
      content: "";
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 200px;
      height: 200px;
      background: var(--brand-yellow);
      opacity: 0.08;
      border-radius: 50%;
    }

    .yt-authors-hero h1 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--brand-yellow);
      margin-bottom: 25px;
      line-height: 1.1;
      position: relative;
      z-index: 1;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .yt-authors-hero p {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: clamp(1.2rem, 1.8vw, 1.4rem);
      color: white;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.95;
      position: relative;
      z-index: 1;
    }

    /* SEÇÕES DE CONTEÚDO */
    .yt-authors-section {
      background: var(--bg-light);
      border-radius: var(--radius);
      padding: 50px 40px;
      margin-bottom: 50px;
      box-shadow: var(--shadow);
    }

    .yt-authors-section h2 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: var(--brand-blue);
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--brand-yellow);
      position: relative;
    }

    .yt-authors-section h2::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--brand-blue);
    }

    .yt-authors-section p {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--ink-700);
      margin-bottom: 20px;
    }

    /* GRID DE AUTORES */
    .yt-authors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .yt-authors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
    }

    /* CARD DE AUTOR */
    .yt-author-card {
      background: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .yt-author-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .yt-author-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--brand-yellow);
    }

    .yt-author-card:hover::before {
      opacity: 1;
    }

    .yt-author-card h3 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(1.5rem, 2vw, 1.8rem);
      color: var(--brand-blue);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .yt-author-card h3 a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .yt-author-card h3 a:hover {
      color: var(--brand-blue-hero);
      text-decoration: underline;
    }

    .yt-author-role {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink-900);
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .yt-author-card p:not(.yt-author-role):not(.yt-author-link) {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--ink-700);
      margin-bottom: 20px;
    }

    .yt-author-link {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .yt-author-link a {
      display: inline-flex;
      align-items: center;
      font-family: "DM Sans", system-ui, sans-serif;
      font-weight: 600;
      color: var(--brand-blue);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .yt-author-link a:hover {
      color: var(--brand-blue-hero);
      transform: translateX(5px);
    }

    .yt-author-link a::after {
      content: "→";
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .yt-author-link a:hover::after {
      transform: translateX(4px);
    }

    /* RESPONSIVIDADE */
    @media (max-width: 768px) {
      .authors-page {
        padding: 20px 15px 60px;
      }

      .yt-authors-hero {
        padding: 40px 25px;
        margin-bottom: 40px;
      }

      .yt-authors-section {
        padding: 35px 25px;
      }

      .yt-author-card {
        padding: 25px;
      }
    }

    @media (max-width: 480px) {
      .yt-authors-hero {
        padding: 35px 20px;
      }

      .yt-authors-hero h1 {
        font-size: 2.2rem;
      }

      .yt-authors-section {
        padding: 30px 20px;
      }

      .yt-author-card {
        padding: 22px;
      }
    }

    /* ANIMAÇÕES */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .yt-authors-hero {
      animation: fadeInUp 0.6s ease-out;
    }

    .yt-authors-section {
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    .yt-authors-section:nth-child(2) {
      animation-delay: 0.3s;
    }

    .yt-authors-section:nth-child(3) {
      animation-delay: 0.4s;
    }

    .yt-author-card {
      animation: fadeInUp 0.5s ease-out both;
    }

    .yt-author-card:nth-child(1) {
      animation-delay: 0.5s;
    }

    .yt-author-card:nth-child(2) {
      animation-delay: 0.6s;
    }

    .yt-author-card:nth-child(3) {
      animation-delay: 0.7s;
    }

    .yt-author-card:nth-child(4) {
      animation-delay: 0.8s;
    }

    /* MENSAGEM PARA FUTUROS AUTORES */
    .yt-authors-grid::after {
      content: "";
      display: block;
      grid-column: 1 / -1;
      text-align: center;
      padding: 30px;
      color: var(--ink-700);
      font-family: "DM Sans", system-ui, sans-serif;
      font-style: italic;
      opacity: 0.7;
      border-top: 1px dashed rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }
