.hero,
.procedimentos-hero {
  background: #fff;
  text-align: center;
  padding: 40px 16px 100px;
}

.hero-overlay,
.procedimentos-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1,
.procedimentos-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p,
.procedimentos-hero p {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-block;
  padding: 14px 28px;
  background: var(--cor-btn);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: var(--cor-btn-hover);
}

.procedimentos-cards {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.25);
}

.card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

.logos {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.logos h2 {
  margin-bottom: 40px;
  font-size: 24px;
}

.logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: logos-scroll 41s linear infinite;
}

.logos-track img {
  height: 140px;
  flex-shrink: 0;
  width: auto;
}

.galeria-decorativa {
  width: 100%;
  padding: 40px 16px 60px; 
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 16px;
}

.galeria-item {
  width: 100%;
  height: 250px;
  background: #e0e0e0;
  overflow: hidden;
  border-radius: 8px; 
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
  }

  .menu {
    width: auto;
    margin-top: 0;
  }

  .menu-list {
    flex-direction: row;
    gap: 20px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }

  .procedimentos-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .card {
    height: 570px;
  }

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .galeria-item {
    height: 300px; 
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1;
  }
}