* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #0a4460;

  a {
    text-decoration: none;
    color: #fff;
  }
}

.navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background-color: #ffffff;
  color: #0a4460;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 10;
  border: 1px solid #000000;
}

a {
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #0a4460;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #0a4460;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

.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;
}

.contato h1 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  max-width: 800px;
}

.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*/
footer {
  background-color: #ffffff;
  color: #000000;
  padding: 70px 10%;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

/* Estrutura principal */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

/* Cada coluna do footer */
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  /* azul destaque */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

/* 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: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* Logo */
.logo-footer {
  justify-content: flex-start;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.logo-talura-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: #000;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-bottom p {
  margin: 0;
}

/* Responsividade */
@media (max-width: 900px) {
  footer {
    padding: 50px 5%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  footer {
    padding: 50px 5%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }
}

.nav-toggle {
  display: none;
}

.nav-toggle button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 2rem;
  color: var(--brand);
  line-height: 0;
  margin: 15px 0 0 0;
}

nav {
  display: flex;
}

@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  .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;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1rem;
  }

  .logo img {
    height: 32px;
  }

  .navbar {
    padding: 12px 20px;
    border-radius: 28px;
  }

  .logo-talura-footer {
    display: flex;
    justify-content: center;
    margin-left: 120px;
  }
}