#huf-ratings-strip, #huf-site-footer {
  --huf-primary: #1E3A2F;
  --huf-secondary: #1E6B2E;
  --huf-accent: #009688;
  --huf-white: #FFFFFF;
  --huf-bg: #F4F8F4;
  --huf-border: #2C4A3D;
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
}
#huf-ratings-strip *, #huf-site-footer * { box-sizing: border-box; }

/* Oculta el footer genérico de Kadence para que solo se vea el nuestro */
.site-footer,
#colophon,
.kadence-footer {
  display: none !important;
}

/* ============ FRANJA DE CALIFICACIONES ============ */
#huf-ratings-strip {
  background: var(--huf-bg);
  padding: 20px 0;
  border-top: 1px solid #E0E8E1;
}
.huf-ratings-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0 20px;
}
.huf-rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--huf-primary);
}
.huf-rating-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--huf-secondary);
}
.huf-rating-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--huf-primary);
}
.huf-rating-item:hover .huf-rating-label { text-decoration: underline; }

/* ============ FOOTER PRINCIPAL ============ */
#huf-site-footer {
  background: var(--huf-primary);
  color: rgba(255,255,255,0.85);
  padding: 48px 24px 0;
}

.huf-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.huf-footer-logo {
  height: 56px;
  margin-bottom: 14px;
}
.huf-footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.huf-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--huf-white);
  margin: 0 0 16px 0;
}

.huf-footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.huf-footer-link:hover { color: var(--huf-white); text-decoration: underline; }

.huf-footer-contact-item {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 12px 0;
}
.huf-footer-link-inline {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.huf-footer-link-inline:hover { text-decoration: underline; }

.huf-footer-social-row {
  display: flex;
  gap: 10px;
}
.huf-footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--huf-white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.huf-footer-social-btn:hover { background: var(--huf-accent); }

.huf-footer-bottom {
  border-top: 1px solid var(--huf-border);
  padding: 18px 0;
  text-align: center;
}
.huf-footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 860px) {
  .huf-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .huf-footer-about { grid-column: 1 / -1; }
  .huf-ratings-inner { gap: 22px; }
}

@media (max-width: 500px) {
  .huf-footer-inner { grid-template-columns: 1fr; }
  .huf-ratings-inner { gap: 16px 24px; }
  .huf-rating-value { font-size: 16px; }
  .huf-rating-label { font-size: 12px; }
}
