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

body {
    font-family: "Teko", sans-serif, 'Poppins';
    background: #ffffff;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
  }

  #menuBtn {
    font-size: 34px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  @media (max-width: 900px) {
    .nav-links {
      display: none !important;
    }

    .nav-toggle {
      display: block;
    }
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #009688;
    padding-top: 100px;
    transition: .3s ease;
    z-index: 998;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 30px;
  }

  .mobile-menu a {
    color: white;
    font-size: 24px;
    font-family: "Teko", sans-serif;
    text-decoration: none;
  }

  .mobile-menu.open {
    right: 0;
  }

.navbar {
    width: 100%;
    background: #009688;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.nav-content {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 110px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: "Teko", sans-serif;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.contato {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 180px 160px 140px 120px;
  text-align: center;
  background-color: #009688;
  a {
    text-decoration: none;
    color: #fff;
  }
}

.contato h1 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  max-width: 800px;
  color: #fff;
  font-style: italic;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1000px;
  width: 100%;
}

.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.contato-item:hover {
  transform: translateY(-10px);
}

.contato-item i {
  font-size: 48px;
  color: var(--text-light);
}

.contato-item p {
  margin: 0;
  color: var(--text-light);
  opacity: 0.95;
}

.contato-item.endereco {
  align-items: center;
}

.contato-item.endereco i {
  margin-bottom: 8px;
}

.contato-item.endereco div p {
  margin: -6px 0;
  font-size: 1.1rem;
}

.fixed-icons {
  position: fixed;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  z-index: 9999;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
    background-color: #029686;
    color: #ffffff;
    padding: 70px 10%;
    position: relative;
    overflow: hidden;
    font-family: "Instrument Sans", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* Estrutura principal */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Lista de links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Logo */
.logo-footer {
    justify-content: flex-start;
    max-width: 70px;
}

.logo-pitinin-footer {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-section .logo img:hover {
    transform: scale(1.05);
}

/* Linha inferior */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    footer {
        padding: 50px 5%;
    }

    nav {
        position: absolute;
    }

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

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .navbar {
        gap: 10px;
    }

    .logo h1 {
        max-width: 1000px;
    }
}

@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .navbar.open nav {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    background: #fff;
    padding: 1.4rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .navbar.open nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .navbar.open nav a {
    color: var(--brand);
    font-weight: 600;
  }

  .contato {
    padding: 160px 20px;
    text-align: center;
    align-items: center;
  }

  .contato-grid {
    justify-content: center;
  }

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

  .footer-section {
    text-align: center;
  }
}