/* ── FOOTER ── */
.cp-footer {
  background: var(--olive);
  padding: 40px 48px 0;
}

.cp-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr;
  gap: 24px;
  align-items: start;
}

/* Logo col */
.cp-footer-logo-col { display: flex; flex-direction: column; gap: 4px; }
.cp-footer-logo-col svg { width: 80px; height: 32px; }
.cp-footer-logo-sub {
  font-size: 6.5px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-weight: 300;
}

/* Colunas parceiros */
.cp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-footer-label {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2px;
}

/* Parceiro genérico */
.cp-partner { display: flex; flex-direction: column; gap: 2px; }
.cp-partner-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cp-partner-name.cp-light { font-weight: 300; }
.cp-partner-name.cp-sm    { font-size: 12px; }
.cp-partner-sub {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-weight: 300;
}
.cp-partner-logo {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.cp-logo-dark {
  filter: none;
  opacity: 1;
}

/* Avilanes */
.cp-avilanes { display: flex; flex-direction: column; gap: 3px; }
.cp-avilanes-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.5px;
}
.cp-avilanes-sub {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.cp-avilanes-badge {
  font-size: 7px;
  background: rgba(200,169,110,0.2);
  color: var(--gold);
  padding: 2px 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
}

/* Contactos */
.cp-footer-contacts { display: flex; flex-direction: column; gap: 5px; }
.cp-footer-contacts p {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.8;
}
.cp-footer-contacts a {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  transition: color 0.2s;
}
.cp-footer-contacts a:hover { color: var(--gold); }

/* Divisor */
.cp-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 28px 0 0;
}

/* Bottom bar */
.cp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.cp-footer-bottom p,
.cp-footer-bottom a {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.cp-footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cp-footer { padding: 32px 24px 0; }
  .cp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cp-footer-logo-col { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .cp-footer-inner { grid-template-columns: 1fr; }
  .cp-footer-bottom { flex-direction: column; align-items: flex-start; }
}
