/**
 * Easy2Clean global footer (.e2c-footer-new)  -  extracted from contact page.
 * Única fonte de verdade do markup: assets/partials/footer-pt.html | footer-en.html (injetados por scripts/build-layout.js).
 */

/* Evita que CSS legado (ex.: helpers .site-footer noutros bundles) pinte o <footer> por fora do conteúdo real */
footer.e2c-footer {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  text-align: initial;
}

.e2c-footer-new {
  background-color: #b1d5c1;
  color: #324a6d;
  font-family: "Poppins", sans-serif;
  padding: 56px 48px 0;
}

@media (max-width: 768px) {
  .e2c-footer-new {
    padding: 40px 24px 0;
  }
}

.e2c-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .e2c-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 520px) {
  .e2c-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
}

.e2c-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.e2c-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.e2c-footer-contact-item > .e2c-inline-icon {
  margin-top: 2px;
  color: #31b387;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.e2c-footer-contact-item > .e2c-inline-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.e2c-footer-social a .e2c-inline-icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: center;
}
.e2c-footer-social a .e2c-inline-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.e2c-footer-contact-key {
  display: block;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1c244b;
  margin-bottom: 4px;
}

.e2c-footer-contact-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #324a6d;
}

.e2c-footer-contact-item p.e2c-footer-contact-fixo {
  margin-top: 6px;
}

.e2c-footer-contact-item a {
  color: #324a6d;
  font-size: 13px;
  text-decoration: none;
}

.e2c-footer-contact-item a:hover {
  color: #1c244b;
  text-decoration: underline;
}

.e2c-footer-logo {
  width: 100px;
  max-width: 100px;
  height: auto;
  display: block;
}

.e2c-footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: #324a6d;
  margin: 0 0 24px;
}

.e2c-footer-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.e2c-footer-trust li {
  font-size: 13px;
  color: #324a6d;
  line-height: 1.4;
}

.e2c-footer-trust li span {
  color: #1c244b;
  margin-right: 8px;
  font-weight: 700;
}

.e2c-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #1c244b;
  margin: 0 0 20px;
}

.e2c-footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.e2c-footer-services ul li a {
  color: #324a6d;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.e2c-footer-services ul li a:hover {
  color: #1c244b;
}

.e2c-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.e2c-footer-btn {
  display: inline-block;
  background-color: #31b387;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(28, 36, 75, 0.16);
}

.e2c-footer-btn:hover {
  background-color: #289970;
}

.e2c-footer-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.e2c-footer-phone > a {
  color: #1c244b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.e2c-footer-phone > a:hover {
  color: #31b387;
  text-decoration: underline;
}

.e2c-footer-wa-badge a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2a6650;
  font-size: 13px;
  text-decoration: none;
}

.e2c-footer-wa-badge a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #31b387;
  border-radius: 50%;
}

.e2c-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(28, 36, 75, 0.18);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.e2c-footer-bottom-end {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.e2c-footer-bottom-logo {
  display: block;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.e2c-footer-bottom-logo:hover {
  opacity: 1;
}

.e2c-footer-bottom-logo img {
  width: 72px;
  max-width: 72px;
  height: auto;
  display: block;
}

.e2c-footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.e2c-footer-legal p {
  color: #5a6f85;
  font-size: 13px;
  margin: 0;
}

.e2c-footer-legal nav {
  display: flex;
  gap: 20px;
}

.e2c-footer-legal nav a {
  color: #5a6f85;
  font-size: 13px;
  text-decoration: none;
}

.e2c-footer-legal nav a:hover {
  color: #1c244b;
}

.e2c-footer-legal .e2c-footer-cookie-trigger {
  font: inherit;
  font-size: 13px;
  color: #5a6f85;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.e2c-footer-legal .e2c-footer-cookie-trigger:hover,
.e2c-footer-legal .e2c-footer-cookie-trigger:focus,
.e2c-footer-legal .e2c-footer-cookie-trigger:focus-visible {
  color: #1c244b;
  text-decoration: underline;
  background: none;
  background-color: transparent;
  border-color: transparent;
}

.e2c-footer-livro img {
  opacity: 0.72;
  transition: opacity 0.2s;
  vertical-align: middle;
}

.e2c-footer-livro:hover img {
  opacity: 1;
}

.e2c-footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.e2c-footer-social a {
  color: #324a6d;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.e2c-footer-social a:hover {
  color: #1c244b;
}

.e2c-footer-credit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 24px;
  text-align: center;
  border-top: 1px solid rgba(28, 36, 75, 0.12);
  box-sizing: border-box;
}

.e2c-footer-credit__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5a6f85;
}

.e2c-footer-credit a {
  color: #324a6d;
  font-weight: 600;
  text-decoration: none;
}

.e2c-footer-credit a:hover,
.e2c-footer-credit a:focus-visible {
  color: #1c244b;
  text-decoration: underline;
}
