   /* Returns Page Styles */
    .returns-container {
      margin-top: 80px;
      padding: 80px 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-title {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 60px;
      text-align: center;
      color: #000000;
    }

    .section-title {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 25px;
      margin-top: 50px;
      color: #000000;
    }

    .content-text {
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.5px;
      color: #000000;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .returns-list {
      list-style: none;
      padding-left: 0;
      margin: 20px 0;
    }

    .returns-list li {
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.5px;
      color: #000000;
      font-weight: 300;
      margin-bottom: 15px;
      padding-left: 20px;
      position: relative;
    }

    .returns-list li:before {
      content: "•";
      position: absolute;
      left: 0;
      font-weight: 400;
    }

    .cta-link {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 30px;
      border: 1px solid #000000;
      color: #000000;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      background-color: transparent;
      font-weight: 300;
    }

    .cta-link:hover {
      background-color: #000000;
      color: #ffffff;
    }

    .highlight-box {
      background-color: #fafafa;
      border: 1px solid #e0e0e0;
      padding: 30px;
      margin: 40px 0;
    }
/* Responsivo */
    @media (max-width: 768px) {    
      .returns-container {
        padding: 60px 20px;
      }
    
    }