  @charset "UTF-8";

  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  :root {
    --preto-acizentado-recinto: #272727;
    --azul-marinho-recinto: #252f3f;
    --bege-recinto: #E7E0D6;
    --texto-opaco: #8f8f8f;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bege-recinto);
    font-family: "Poppins", sans-serif;
  }

  main {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: scroll;
  }

  nav {
    display: none;
  }

  .nav-top {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(350px);
    width: calc(100% - 350px);
    background-color: #272727;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 15px;
  }

  .nav-top ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }

  .nav-top li {
    list-style: none;
  }

  .nav-top a {
    text-decoration: none;
    color: white;
    font-size: clamp(10pt, 1.5vw, 12pt);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
  }

  .nav-top a.active {
    border-bottom: 1px solid white;
  }

  .sidebar {
    min-width: 350px;
    height: 100vh;
    background: #272727;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 50px 0 50px 0;
  }

  .sidebar-logo {
    width: 150px;
    padding: 50px 0 50px 0;
  }

  .sidebar-logo img {
    width: 100%;
  }

  .nav-links {
    list-style: none;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
    transition: background 0.3s ease;
  }

  .nav-links li a i {
    font-size: clamp(12pt, 1.5vw, 16pt);
  }

  .nav-links li a span {
    font-size: clamp(10pt, 1.5vw, 12pt);
    font-weight: 500;
  }

  .nav-links li a.active,
  .nav-links li a:hover {
    background: #333;
    border-left: 4px solid var(--bege-recinto);
  }

  @media (max-width: 1000px) {
    .sidebar {
      position: fixed;
      top: 0;
      left: -400px;
      min-width: 300px;
      height: 100%;
      background: #272727;
      color: #fff;
      transition: left 0.3s ease;
      z-index: 1010;
    }

    .sidebar.active {
      left: 0;
    }
  }

  .container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    gap: 20px;
  }

  .appointment {
    height: 450px;
    width: 350px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: var(--preto-acizentado-recinto);
    color: white;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    gap: 10px;
  }

  .tittle {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tittle i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: goldenrod;
    color: rgb(253, 218, 20);
    font-size: large;
  }

  .tittle p {
    font-size: 12pt;
    font-weight: 300;
    text-transform: uppercase;
  }

  .tittle span {
    font-size: 20pt;
    font-weight: 500;
  }

  .content-appointment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
  }

  .content-appointment label {
    display: flex;
    align-items: center;
    word-break: break-word;
    overflow-wrap: break-word;
    gap: 10px;
  }

  .content-appointment label i {
    font-size: 14pt;
  }

  .appointment a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12pt;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    padding: 12px;
    background-color: var(--bege-recinto);
    color: var(--preto-acizentado-recinto);
  }

  .card__pricing {
    position: absolute;
    background: linear-gradient(157deg, white -12%, white 109%);
    min-width: 100px;
    height: 88px;
    right: 1.5rem;
    top: -1rem;
    padding-top: 1.25rem;
    text-align: center;
    opacity: .9;
  }

  .card__pricing-number {
    font-family: "Poppins";
  }

  .card__pricing-symbol {
    font-size: .813rem;
  }

  .card__pricing-number {
    font-size: 1.25rem;
  }

  .card__pricing-month {
    display: block;
    font-size: 11pt;
  }

  .card__pricing-number,
  .card__pricing-month {
    color: var(--preto-acizentado-recinto);
  }

  .card__pricing::after,
  .card__pricing::before {
    content: '';
    position: absolute;
  }

  .card__pricing::after {
    width: 100%;
    height: 14px;
    background-color: var(--preto-acizentado-recinto);
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }

  .card__pricing::before {
    width: 14px;
    height: 16px;
    background-color: white;
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }

  @media (max-width: 1000px) {
    .sidebar {
      position: fixed;
      top: 0;
      left: -400px;
      min-width: 300px;
      height: 100%;
      background: #272727;
      color: #fff;
      transition: left 0.3s ease;
      z-index: 1010;
    }

    .sidebar.active {
      left: 0;
    }

    .backdrop {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1005;
    }

    .backdrop.active {
      display: block;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: #272727;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      z-index: 999;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      width: 120px;
    }

    .nav-logo img {
      width: 100%;
      object-fit: cover;
    }

    .nav .menu-toggle {
      display: flex;
      align-items: center;
      font-size: 30px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .nav-top {
      border-top: 2px solid #3d3d3d;
      margin-top: 60px;
      transform: translateX(0);
      width: 100%;
      padding: 10px;
    }
  }