/* Estilo do Header Compacto */
.main-header {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 6px 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #007bff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* WhatsApp */
.whatsapp-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-icon-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
}

@media (max-width: 768px) {
  .whatsapp-icon-img {
    width: 50px;
    height: 50px;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
}

.slide-content {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.bg-eztec {
  background-color: #ffffff !important; /* vinho institucional */
}

.rodape-eztec {
  background-color: #ffffff;
  color: #000000;
}

.rodape-eztec h5,
.rodape-eztec h6,
.rodape-eztec p,
.rodape-eztec a {
  color: #000000;
  text-decoration: none;
}

.rodape-eztec .footer-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rodape-eztec .footer-link:hover {
  color: #7c0719;
  text-decoration: underline;
}

.rodape-eztec .social-link {
  color: #000000;
  text-decoration: none;
}

.rodape-eztec .social-link:hover {
  color: #7c0719;
}
