/* Footer Styles - Complete styling for footer */

/* Main Footer Container */
footer {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(37, 211, 102, 0.1);
  padding: 3rem 0 0;
  color: #e0e0e0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* Footer Info Section */
.footer-info h3 {
  color: #25d366;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-tagline,
.footer-availability {
  color: #b0b0b0;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-btn.facebook:hover {
  background: #1877f2;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.tiktok:hover {
  background: #000;
}

.social-btn.youtube:hover {
  background: #ff0000;
}

/* Politicas Section */
.politicas-section h3 {
  color: #25d366;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.politicas-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.politicas-links li {
  margin-bottom: 0.75rem;
}

.politicas-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.politicas-links a:hover {
  color: #25d366;
  padding-left: 5px;
}

/* Complaints Book Button */
.complaints-book {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 2px solid #8e24aa;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-decoration: none !important;
  /* Force removal of underline */
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  max-width: 280px;
}

.complaints-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 36, 170, 0.3);
}

.complaints-book-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  /* Centering */
  align-items: center;
  justify-content: center;
}

.complaints-book-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.complaints-book-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.complaints-book-title {
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.complaints-book-subtitle {
  color: #8e24aa;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-decoration: none;
}

/* Footer Contact and Payment Section */
.footer-contact-payment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-contact h4,
.payment-methods-compact h4 {
  color: #25d366;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* WhatsApp Button in Footer */
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-bottom: 1rem;
}

.btn-whatsapp-footer:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Contact Details */
.contact-details p {
  color: #b0b0b0;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-details strong {
  color: #e0e0e0;
}

/* Payment Logos Grid */
.payment-logos-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.payment-logo {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 50px;
}

.payment-logo svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.payment-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer Bottom - Copyright */
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2.5rem;
  border-top: 2px solid rgba(37, 211, 102, 0.2);
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .genesis-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-bottom .genesis-link:hover {
  color: #20ba5a;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-contact-payment {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact-payment {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info,
  .politicas-section,
  .footer-contact {
    text-align: center;
  }

  .social-media {
    justify-content: center;
  }

  .politicas-links {
    text-align: center;
  }

  .btn-whatsapp-footer {
    display: inline-flex;
  }

  .complaints-book {
    margin: 1.5rem auto 0;
  }

  /* Payment logos in 2 columns for mobile */
  .payment-logos-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 400px;
    margin: 1rem auto 0;
  }

  .payment-logo {
    height: 55px;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding: 1.25rem 1rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-info h3 {
    font-size: 1.3rem;
  }

  .politicas-section h3,
  .footer-contact h4,
  .payment-methods-compact h4 {
    font-size: 1.1rem;
  }

  .payment-logos-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    max-width: 100%;
  }

  .payment-logo {
    height: 50px;
    padding: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 1rem 0.75rem;
    margin-top: 1.5rem;
  }

  .genesis-link {
    display: inline-block;
  }
}