*{
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variáveis */
:root {
  --bg: #eaf8fb;
  --accent: #ef6b57;
  --accent-dark: #d65444;
  --blue-bar: #06a0d6;
  --text: #0f1720;
  --muted: rgba(15, 23, 32, 0.6);
  --radius: 18px;
  --container: 1400px;
}

:root {
  --bg: #eaf8fb;
  --accent: #ef6b57;
  --accent-dark: #d65444;
  --blue-bar: #06a0d6;
  --text: #0f1720;
  --muted: rgba(15, 23, 32, 0.6);
}

/* Container */
.container-clientes {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(30px, 5vw, 80px); /* AJUSTE INTELIGENTE */
}

/* Sub-rodapé */
.subrodape {
  background: var(--bg);
  padding: 40px 4%; /* MAIS EQUILIBRADO */
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.subrodape-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Coluna esquerda */
.sub-left {
  flex: 1;
}

.sub-logo {
  width: 160px;
  margin-bottom: 15px;
}

.sub-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 300;
}

/* Social */
.sub-socials {
  display: flex;
  gap: 12px;
}

.social {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background: var(--accent);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 32, 0.06);
  transition: 0.3s;
}

.social img {
  width: 22px;
}

.social:hover {
  background: #373636ad;
}

/* Coluna centro */
.sub-center {
  flex: 1;
}

.sub-title {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  border-bottom: 2px solid #f4171730;
  padding-bottom: 10px;
}

.sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 4px;
  background: var(--accent);
}

/* Links */
.links-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  column-gap: 20px;
  row-gap: 12px;
}

.links-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  padding-left: 12px;
  position: relative;
  white-space: nowrap;
  transition: 0.3s;
}

.links-list a:hover {
  padding-left: 18px;
  color: var(--accent);
}

.links-list a::before {
  content: "›";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Coluna direita */
.sub-right {
  flex: 1;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 300;
}
.contact-list li a{
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 300;
  text-decoration: none;
}

.contact-list .ic {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(15, 23, 32, 0.06);
}

/* Barra inferior */
.site-footer {
  background: var(--blue-bar);
  padding: 15px 0;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  font-size: 0.9rem;
  text-align: center;
  padding: 0 10px;
}

.contact-list .ic img{
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .subrodape-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .sub-left,
  .sub-center,
  .sub-right {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .sub-logo {
    margin: 0 auto 15px;
  }

  .sub-socials {
    justify-content: center;
  }

  .sub-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-list {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .links-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@supports (-webkit-touch-callout: none) {

  *{
    font-family: 'Poppins', sans-serif !important;
  }

}