/*////////////// CSS REVISTO //////////////*/


.footer-ccv {
  background-color: #F6F6F6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
}

/* TOP */

.footer-top {
  padding-block: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Logo */
.footer-logo {
  display: inline-block;
  margin-bottom: 1.1rem;
}

.footer-logo img {
  height: clamp(50px, 4vw, 70px);
  width: auto;
  display: block;
}

/* Morada / Contacto */
.footer-morada,
.footer-contacto {
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

.footer-contacto i {
  margin-right: 0.35rem;
}

/* Selos */
.footer-selos {
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-selos img {
  height: 42px;
  width: auto;
}

/* Sitemap col 1 */
.footer-sitemap {
  margin-top: 1.75rem;
}

/* HEADINGS */

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* NAV LINKS */

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--color-text);
  font-size: 0.82rem;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-secondary);
}


/* SOCIAL */

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.07);
  color: var(--color-heading);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* APPS */
.links-redes {
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.footer-apps {
  display: flex;
  gap: 2rem;
}

.footer-apps img {
  height: 24px;
  width: auto;
  display: block;
}

/* APOIOS */

.footer-apoios {
  display: flex;
  gap: 2rem;
}

.footer-iniciativa p,
.footer-vodafone p {
  color: var(--color-text);
  font-size: 0.73rem;
  margin-bottom: 0.3rem;
}

.footer-iniciativa img {
  height: 30px;
  width: auto;
}

.footer-vodafone img {
  height: 22px;
  width: auto;
}

.footer-premio {
  height: 60px;
  width: auto;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-block: 1.1rem;
}

.footer-bottom p {
  color: var(--color-text);
  font-size: 0.76rem;
  margin: 0;
  opacity: 0.6;
}

.footer-bottom a {
  color: var(--color-text);
  font-size: 0.76rem;
  text-decoration: none;
  opacity: 0.6;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-secondary);
  opacity: 1;
}

.footer-sep {
  margin-inline: 0.4rem;
  color: var(--color-text);
  opacity: 0.3;
}

@media (max-width: 991px) {
  .links-redes{
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    margin-inline: auto;
  }
  .footer-sitemap {
    margin-top: 1.5rem;
  }
  .footer-sitemap .row {
    row-gap: 1rem;
}

}