* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial;
    background: #f7f7f5;
    color: #2f3437;
  }
  
  /* HEADER */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #705475cc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ad9af5;
    position: sticky;
    top: 0;
  }
  
  header h1 {
    font-size: 16px;
    font-weight: 600;
  }
  
  header button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* CONTAINER */
  main {
    max-width: 600px;
    margin: auto;
    padding: 15px;
  }
  
  /* CARDS */
  .card {
    background: white;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: 0.2s;
  }
  
  .card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  /* TIMER */
  #timer {
    font-size: 42px;
    text-align: center;
    margin: 10px 0;
    font-weight: 600;
  }
  
  /* INPUTS */
  input, textarea {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fbfbfb;
    font-size: 14px;
  }
  
  textarea {
    height: 60px;
    resize: none;
  }
  
  /* BOTÕES */
  button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #2f3437;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  .btn-group {
    display: flex;
    gap: 10px;
  }
  
  .btn-group button {
    flex: 1;
  }
  
  /* LISTA */
  li {
    margin-top: 6px;
    padding: 6px;
    border-radius: 6px;
    transition: 0.2s;
  }
  
  li:hover {
    background: #f2f2f2;
  }
  
  /* DARK MODE */
  .light {
    background: #383838;
    color: #6d6a6a;
  }
  
  .light .card {
    background: #333333;
    border: 1px solid #333333;
  }
  
  .light input,
  .light textarea {
    background: #444343;
    border: 1px solid #3b3b3b;
    color: white;
  }

  #nome{
    color: #e0e0e0;
    align-items: center;
  }

  .icon{
    width: 30px;
    height:30px ;

  }
