:root {
    --corFundo: #773003;
    --corTexto: #2b2b2b;
    --corHeader: #582302;
    --corCartao: #855333;
    --corRodape: #582302;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: var(--corFundo);
    color: var(--corTexto);
  }
  

  main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .card-scooby{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--corCartao);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s;
  }

  .card-scooby:hover{
    transform: translateY(-5px);
  }

  .card-salsicha{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:#67a3578a;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s;
  }
  .card-salsicha:hover{
    transform: translateY(-5px);
  }

  .card-fred{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:#87aefb8f;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s;
  }

  .card-fred:hover{
    transform: translateY(-5px);
  }

  .card-daphne{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:#c987fb88;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s;
  }

  .card-daphne:hover{
    transform: translateY(-5px);
  }

  .card-velma{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:#ff7f2f71;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    gap: 20px;
    transition: transform 0.3s;
  }

  .card-velma:hover{
    transform: translateY(-5px);
  }
  
  
  .flex-box-card-img img {
    height: 200px;
    object-fit: contain;
    max-width: 100%;
  }
  
  .flex-box-info {
    flex: 1;
  }

  h1{
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    color: var(--corTexto);

  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--corHeader);
  }
  
  p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .texto{
    font-size: 1.1rem;
  }

  .info{
    padding: 30px;
    border-bottom: 3px solid var(--corTexto);
  }
  
  .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .card-criadores{
    display: flex;
    flex-direction: column;
    align-items: center; 
    background-color: var(--corCartao);
    border-radius: 20px;
    width: 45%;
    max-width: 400px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    transition: transform 0.3s;
    
  }
  .card-criadores:hover{
    transform: translateY(-5px);
  }

  .flex-box-card-img-criadores {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .flex-box-card-img-criadores img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  table{
    background-color: var(--corCartao);
      width: 100%;
      margin-top: 1rem;
    }

    th, td {
      border: 1px solid #000000;
      padding: 0.75rem;
      text-align: center;
    }
    
    th {
      font-size: 23px;
      font-weight: bold;
      background-color: rgb(100, 47, 11);
      color: rgb(172, 131, 99);
    }


  .card-dubladores{
    display: flex;
    flex-direction: column;
    align-items: center; 
    background-color: var(--corCartao);
    border-radius: 20px;
    width: 45%;
    max-width: 400px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding: 20px;
    transition: transform 0.3s;
  }
  .card-dubladores:hover{
    transform: translateY(-5px);
  }

  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }


  .flex-box-card-img-dubladores img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  
  footer {
    background-color: var(--corRodape);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
  }
  
  .contato {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  
  .link-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .link-contato img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .link-contato img:hover {
    transform: scale(1.3);
    box-shadow: 0 5px 20px rgb(99, 95, 95);
  }
  
  .link-contato p {
    margin-top: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: Arial, sans-serif;
  }

  @media (max-width: 768px) {
    .nav-container {
      flex-direction: line;
      justify-content: flex-start;
      gap: 10px;
    }
  
    .ulMenu {
      flex-direction: line;
      gap: 10px;
      width: 100%;
    }
  
    .ulMenu li a {
      font-size: 1rem;
      padding-left: 10px;
    }
  
    .card {
      flex-direction: column;
      text-align: center;
    }
  
    .flex-box-card-img img {
      height: 150px;
    }
  
    h2 {
      font-size: 1.3rem;
    }
  
    p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {

    h1, h2 {
      font-size: 1.1rem;
      text-align: center;
    }
  
    p {
      font-size: 0.9rem;
      text-align: justify;
    }
  
    table {
      display: block;
      width: 100%;
      overflow-x: auto;
      font-size: 0.85rem;
    }
  
    th, td {
      padding: 0.5rem;
      font-size: 0.85rem;
    }
  
    .container {
      flex-direction: column;
      align-items: center;
    }
  
    .card-criadores,
    .card-dubladores {
      width: 100%;
      padding: 10px;
    }
  
    .flex-box-card-img-criadores img,
    .flex-box-card-img-dubladores img {
      width: 150px;
      height: 150px;
    }
  
    .card-scooby,
    .card-salsicha,
    .card-fred,
    .card-daphne,
    .card-velma {
      flex-direction: column;
      text-align: center;
      width: 100%;
      padding: 15px;
    }
  
    .flex-box-card-img img {
      height: 150px;
    }
  
    .ulMenu li a {
      font-size: 0.9rem;
      padding: 4px 8px;
    }
  }