    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #fff;
      color: #222;
    }

    /* Cabeçalho */
    header {
      background: #0D0D0D;
      color: #C9A13C;
      padding: 20px 5%;
      position: relative;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      width: 100%;
    }

    header a{
      text-decoration: none;
      color: #C9A13C;
    }

    header h1 {
      text-decoration: none;
      font-size: 1.8rem;
      font-weight: bold;
      color: #C9A13C;
    }

    .header-right{
      display: flex;
      gap: 20px;
    }

    .header-right a {
      color: #F5F5F5;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .header-right a:hover {
      color: #C9A13C;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-grow : 1;
      text-align: center;
    }

    nav a {
      text-decoration: none;
      color: #F5F5F5;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #C9A13C;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #f5f5f5;
        color: #333;
        display: flex;
        flex-direction: column;
    }

    section {
        background-color: #fff;
        margin: 20px auto;
        padding: 20px;
        max-width: 800px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    section p{
        margin-bottom: 10px;
        font-size: 1.1em;
    }

    h2 {
        margin-bottom: 10px;
        border-left: 5px solid;
        padding-left: 10px;
        font-size: 1.8em;
    }

    main {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
        flex: 1;
        line-height: 1.6;
    }

    .lista-contatos {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .lista-contatos li {
        background-color: #C9A13C;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 10px;
        width: 250px;
        transition: background-color 0.3s ease;
    }

    .lista-contatos a{
        text-decoration: none;
        color: #fff;
    }

    .icone {
        width: 24px;
        height: 24px;
    }

    footer {
        background-color: #0D0D0D;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        font-size: 14px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .footer-left {
        flex: 1;
        text-align: left;
    }

    .footer-center{
      flex: 1;
      display: flex;
      gap: 10px;
    }

    .footer-center p{
      margin-top: 2px;
    }

    .footer-center img{
      width: 24px;
      height: 24px;
    }

    .footer-right img {
        width: 24px;
        height: 24px;
    }

    .footer-right span{
      margin-bottom: 4px;
    }

    .footer-right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .contato-label {
        font-weight: bold;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        }

    .social-icons img {
        width: 24px;
        height: 24px;
    }

    /* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 28px;
  height: 3px;
  background-color: #C9A13C;
  border-radius: 5px;
}

/* Versão responsiva */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0D0D0D;
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 70px;
    left: 0;
  }

  nav a {
    padding: 12px 0;
    display: block;
    font-size: 1.2rem;
  }

  nav.active {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Rodapé responsivo */

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    align-items: center;
  }

  .footer-center .ref {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
  }

  .footer-center img,
  .footer-right img {
    width: 28px;
    height: 28px;
  }
}

/* Sobre mobile */
@media (max-width: 768px) {

  main {
    padding: 0 12px;
  }

  section {
    padding: 18px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p {
    font-size: 1rem;
  }

  .lista-contatos {
    flex-direction: column;
    align-items: stretch;
  }

  .lista-contatos li {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }

  .icone {
    width: 24px;
    height: 24px;
  }
}