/* ===== COOKIES NOTICE - FOOTER STYLE ===== */

.cookies-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
  border-top: 4px solid #e7605e;
}

.cookies-notice-content {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cookies-notice-text h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.cookies-notice-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookies-notice-text a {
  color: #e7605e;
  text-decoration: none;
  font-weight: 600;
}

.cookies-notice-text a:hover {
  text-decoration: underline;
}

.cookies-notice-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#acceptCookies,
#rejectCookies {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#acceptCookies {
  background-color: #e7605e;
  color: white;
}

#acceptCookies:hover {
  background-color: #d45351;
}

#rejectCookies {
  background-color: #f0f0f0;
  color: #555;
  border: 1px solid #ddd;
}

#rejectCookies:hover {
  background-color: #e8e8e8;
}

@media (max-width: 768px) {
  .cookies-notice {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .cookies-notice-content {
    flex-direction: column;
    gap: 15px;
  }

  .cookies-notice-buttons {
    width: 100%;
    flex-direction: column;
  }

  #acceptCookies,
  #rejectCookies {
    width: 100%;
  }
}

/* ===== COOKIE BANNER LEGACY (mantenido para compatibilidad) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
  border-top: 4px solid #e7605e;
}

.cookie-banner-content {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-text h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #e7605e;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept-cookies,
.btn-reject-cookies {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept-cookies {
  background-color: #e7605e;
  color: white;
}

.btn-accept-cookies:hover {
  background-color: #d45351;
  transform: translateY(-2px);
}

.btn-reject-cookies {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-reject-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #e7605e;
  color: #e7605e;
}

/* Footer */
.footer {
    background-color: #373737;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-section {
  text-align: left;
}

.footer-section h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 700;
  color: #e7605e;
  border-bottom: 2px solid #e7605e;
  padding-bottom: 10px;
}

/* Logo Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-section a {
  margin-bottom: 15px;
}

.footerLogo {
  width: 150px;
  height: auto;
}

.footer-tagline {
  font-size: 14px;
  color: #bbb;
  font-style: italic;
  margin-top: 10px;
}

/* Contact Section */
.footer-contact-section .contactoArea {
  text-align: center;
}

.conteinerRedesFooter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.btnHeaderSocialRef,
.btnHeaderSocial {
  display: inline-block;
  transition: all 0.3s ease;
}

.btnHeaderSocialRef img,
.btnHeaderSocial img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.btnHeaderSocialRef:hover img,
.btnHeaderSocial:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Legal Links Section */
.footer-legal-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-section .footer-links li {
  margin-bottom: 10px;
}

.footer-legal-section .footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-legal-section .footer-links a:hover {
  color: #e7605e;
  padding-left: 5px;
}

/* QR Fiscal Section */
.footer-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-fiscal-container {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.qr-fiscal-code {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.qr-fiscal-label {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* Footer Links */
.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #e7605e;
}

/* Separator */
.separadorArea {
  margin: 20px 0;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: 10px 0;
}

.separadorArea p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

/* Info Final */
.infoFinalArea {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #555;
}

.infoFinalArea p {
  margin: 0;
  font-size: 12px;
  color: #aaa;
}

/* Social Link */
a.social-linkAlex {
  color: #e7605e;
  font-weight: 600;
  transition: all 0.3s ease;
}

a.social-linkAlex:hover {
  font-weight: 900;
  color: #be4045;
  font-size: 1.1rem;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner-text {
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-logo-section {
    order: -1;
  }

  .footerLogo {
    width: 120px;
  }

  .footer-section h4 {
    border-bottom: 2px solid #e7605e;
  }

  .conteinerRedesFooter {
    justify-content: center;
    gap: 15px;
  }

  .footer-legal-section .footer-links a {
    font-size: 13px;
  }

  .infoArea p {
    font-size: 13px;
  }

  .infoFinalArea p {
    font-size: 11px;
  }
}
