/* ========================================
   FOOTER STYLES - The Lounge Gramado (Simplificado)
   ======================================== */

footer {
  background: var(--dark-gray);
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 30px;
}

/* Footer Main Section */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
  text-align: left;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-slogan {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Footer Info Grid */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  /*   font-family: "Playfair Display", serif; */
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Footer Contact */
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 12px;
  margin-right: 20px;
}

/* Footer Social */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--gold);
}

.social-link i {
  width: 16px;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-partnership {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-partnership strong {
  color: var(--gold);
  font-style: italic;
  margin-left: 5px;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    padding: 50px 20px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 40px 15px 20px;
  }

  .footer-brand h3 {
    font-size: 1.3rem;
  }

  .footer-logo img {
    height: 40px;
  }
}
