* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background-color: #E6F2F2; 
      color: #333333;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .top-banner {
    width: 100%;
    max-width: 600px;
    height: 220px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    }

    .top-banner img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: top; 
    }

    .container {
      width: 100%;
      max-width: 600px;
      padding: 0 20px 40px 20px;
      display: flex;
      flex-direction: column;
      margin-top: -10px;
    }

    .main-header-text {
      text-align: center;
      margin-bottom: 30px;
    }

    .main-header-text h1 {
      color: #1980E6;
      font-size: 1.6rem;
      margin-bottom: 8px;
    }

    .main-header-text p {
      color: #6B6661;
      font-size: 0.95rem;
      line-height: 1.4;
    }


    .link-section {
      margin-bottom: 35px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .section-category {
      text-align: center;
      color: #1980E6;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      justify-content: center; 
      align-items: center;
      gap: 8px;
    }

    .link-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding: 14px 20px;
      border-radius: 50px;
      text-decoration: none;
      color: #333333;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .link-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .card-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .imagem-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      background-color: #E6F2F2;
      padding: 6px;
    }

    .card-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #6B6661;
    }

    .card-subtitle {
      font-size: 0.75rem;
      font-weight: 280;
      color: #6B6661;
      margin-top: 2px;
    }

    .card-arrow {
      font-size: 1.2rem;
      font-weight: bold;
      color: #A0B9B9;
    }

    footer {
      width: 100%;
      text-align: center;
      padding: 20px;
      color: #6C8A8A;
      font-size: 0.8rem;
    }
