    :root {
      --main-bg-color: #f8f5f0;
      --header-color: #a52a2a;
      --accent-color: #d4af37;
      --secondary-accent: #c19b76;
      --text-color: #333;
      --light-text: #777;
      --border-color: #8b4513;
      --card-bg: #fefdf9;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
      --favorite-color: #e74c3c;
      --header-bg: #a52a2a;
      --rejected-color: #e74c3c;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Playfair Display', 'Georgia', serif;
      background-color: var(--main-bg-color);
      color: var(--text-color);
      line-height: 1.7;
      padding: 0;
      max-width: 1400px;
      margin: 0 auto;
      background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23f8f5f0'/%3E%3Cpath d='M0 0l100 100M100 0L0 100' stroke='%23e8e1d3' stroke-width='0.9'/%3E%3C/svg%3E");
      position: relative;
      overflow-x: hidden;
    }
    
    
    /* HEADER COM LARGURA TOTAL */
    .header-full-width {
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      background: linear-gradient(135deg, var(--header-bg), #8b0000);
      margin-bottom: 30px;
      box-shadow: var(--shadow);
    }
    
    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 20px;
    }
    
    .newspaper-header {
      text-align: center;
      position: relative;
      padding: 10px 0 20px;
    }
    /* Título do jornal */
    .newspaper-title {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 800;
      color: white;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin: 15px 0 5px;
      line-height: 1.1;
      position: relative;
      display: inline-block;
      padding: 0 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .newspaper-title::before,
    .newspaper-title::after {
      content: "✶";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: var(--accent-color);
      font-size: 3rem;
      text-shadow: none;
    }
    
    .newspaper-title::before {
      left: -40px;
    }
    
    .newspaper-title::after {
      right: -40px;
    }

    /* Subtítulo */
    .newspaper-subtitle {
      font-style: italic;
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.9);
      margin: 10px 0;
      letter-spacing: 1px;
      font-weight: 400;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Data */
    .newspaper-date {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 10px;
      font-weight: 500;
    }

    
    /* Container para o conteúdo com margens */
    .content-wrapper {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Navegação melhorada */
    .nav-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 40px 0 0;
      flex-wrap: wrap;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--header-color);
      font-weight: 600;
      padding: 14px 30px;
      border: 2px solid var(--header-color);
      border-radius: 50px;
      transition: var(--transition);
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .nav-links a i {
      font-size: 1.2rem;
    }
    
    .nav-links a:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: var(--header-color);
      transition: var(--transition);
      z-index: -1;
      border-radius: 50px;
    }
    
    .nav-links a:hover:before {
      width: 100%;
    }
    
    .nav-links a:hover {
      color: #fff;
      box-shadow: 0 5px 15px rgba(165, 42, 42, 0.3);
    }
    
    /* Títulos de seção */
    .section-title {
      text-align: center;
      margin: 60px 0 40px;
      position: relative;
      padding-bottom: 20px;
    }
    
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: var(--header-color);
      margin-bottom: 15px;
      font-weight: 700;
    }
    
    .section-title p {
      color: var(--light-text);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.2rem;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
      border-radius: 2px;
    }
    
    /* Conteúdo principal */
    .about-content {
      display: grid;
      gap: 50px;
      margin-bottom: 80px;
    }
    
    
    /* Linha do Tempo - Jornada */
    .journey-timeline {
      position: relative;
      max-width: 1000px;
      margin: 50px auto 0;
    }
    
    .journey-timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      background: linear-gradient(to bottom, var(--accent-color), var(--secondary-accent));
      border-radius: 2px;
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 60px;
      width: 45%;
      padding: 25px;
      background: var(--card-bg);
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    
    .timeline-item:nth-child(odd) {
      left: 0;
      text-align: right;
    }
    
    .timeline-item:nth-child(even) {
      left: 55%;
    }
    
    .timeline-item::before {
      content: '';
      position: absolute;
      top: 30px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent-color);
      border: 4px solid var(--card-bg);
      box-shadow: 0 0 0 4px var(--accent-color);
    }
    
    .timeline-item:nth-child(odd)::before {
      right: -12px;
    }
    
    .timeline-item:nth-child(even)::before {
      left: -12px;
    }
    
    .timeline-year {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--header-color);
      margin-bottom: 10px;
    }
    
    .timeline-content h4 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--text-color);
    }
    
    /* FAQ */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: var(--card-bg);
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
    }
    
    .faq-item:hover {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
      padding: 25px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--header-color);
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .faq-question i {
      color: var(--accent-color);
      transition: var(--transition);
    }
    
    .faq-answer {
      padding: 0 30px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 30px 25px;
      max-height: 500px;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    /* Criador */
    .creator-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: center;
      background: var(--card-bg);
      padding: 50px;
      border-radius: 16px;
      box-shadow: var(--shadow);
      margin-top: 40px;
    }
    
    .creator-image {
      flex: 0 0 250px;
    }
    
    .creator-image img {
      width: 100%;
      height: auto;
      border-radius: 50%;
      border: 8px solid var(--accent-color);
      box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    }
    
    .creator-info {
      flex: 1;
      min-width: 300px;
    }
    
    .creator-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--header-color);
      margin-bottom: 10px;
    }
    
    .creator-title {
      font-size: 1.2rem;
      color: var(--accent-color);
      margin-bottom: 25px;
      font-weight: 600;
    }
    
    .creator-bio {
      margin-bottom: 25px;
      line-height: 1.8;
    }
    
    .creator-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .creator-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: var(--header-color);
      color: white;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: var(--transition);
      text-decoration: none;
    }
    
    .creator-social a:hover {
      background: var(--accent-color);
      color: var(--header-color);
      transform: translateY(-5px);
    }
    
    /* Rodapé */
    .newspaper-footer {
      text-align: center;
      margin-top: 80px;
      padding-top: 40px;
      border-top: 2px solid var(--border-color);
      color: var(--light-text);
      position: relative;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      text-align: left;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      color: var(--header-color);
      margin-bottom: 20px;
      font-size: 1.4rem;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 12px;
    }
    
    .footer-column a {
      color: var(--light-text);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-column a:hover {
      color: var(--header-color);
    }
    
    .footer-bottom {
      padding: 20px 0;
      border-top: 1px solid #eee;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      text-decoration: none;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: var(--header-color);
      color: white;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      transform: translateY(-5px);
      background: var(--accent-color);
      color: var(--header-color);
    }
    
    /* Animações */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .mv-card, .timeline-item, .faq-item {
      animation: fadeIn 0.6s ease forwards;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
      .newspaper-title {
        font-size: 3.5rem;
      }
      
      .about-hero h1 {
        font-size: 2.8rem;
      }
      
      .timeline-item {
        width: 90%;
        left: 5% !important;
        text-align: left !important;
      }
      
      .timeline-item:nth-child(odd)::before {
        left: -12px;
        right: auto;
      }
      
      .journey-timeline::before {
        left: 20px;
      }
    }
    
    @media (max-width: 768px) {
      .nav-links {
        gap: 15px;
      }
      
      .nav-links a {
        padding: 12px 20px;
        font-size: 1rem;
      }
      
      .section-title h2 {
        font-size: 2.2rem;
      }
      
      .stats-container {
        gap: 20px;
      }
      
      .stat-item {
        padding: 20px;
        min-width: 130px;
      }
      
      .stat-number {
        font-size: 2.2rem;
      }
      
      .creator-container {
        padding: 30px;
      }
      
      .creator-image {
        flex: 0 0 200px;
      }
    }
    
    @media (max-width: 576px) {
      .newspaper-title {
        font-size: 2.5rem;
      }

      .newspaper-title::before,
      .newspaper-title::after {
        display: none;     
        }
      
      .about-hero {
        padding: 50px 20px;
      }
      
      .about-hero h1 {
        font-size: 2.2rem;
      }
      
      .creator-container {
        text-align: center;
      }

      .newspaper-subtitle{
        font-size: 1.1rem;
      }
    }