/* style.css */
footer {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
}

.footer-full {
  background-color: var(--branco);
  color: var(--verde-esc);
  width: 100%;
  height: 100%;
  font-family: 'outfit';
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}

.footer-grid {
  padding: 80px 80px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col.left {
  width: 100%;
}

.footer-col.center {
  width: 100%;
}

.footer-col.right {
  width: 100%;
}

.footer-col.left img {
  width: 20%;
}

.footer-lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer-lead span {
  font-family: 'harmond';
  font-size: 1.5rem;
  color: var(--ouro);
}

.calendly {
  display: inline-block;
  background-color: var(--ouro);
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.calendly:hover {
  background-color: var(--bege);
}

.calendly a {
  text-decoration: none;
  color: var(--branco);
  font-family: 'harmond';
  font-weight: 300;
  font-size: 1.5vw;
}


.footer-social,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li,
.footer-nav li {
  margin-bottom: 10px;
}

.footer-social a {
  font-size: 1.5rem;
  color: var(--ouro);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a {
  color: var(--ouro);
  text-decoration: none;
  font-size: 3rem;
  transition: 0.3s ease;
}

.footer-social a:hover,
.footer-nav a:hover {
  color: var(--bege);
  transform: scale(1.5);
  transform: translateX(-15px);
}

.footer-email {
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--verde-esc);
  display: inline-block;
}

.footer-address {
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
}

.footer-bottom {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--verde-esc);
  border-top: 1px solid var(--verde-esc);
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-footer h1 {
    font-family: 'harmond';
    font-size: 18vw;
    text-align: center;
    color: var(--ouro);
    opacity: 0.5;
}

.logo-footer {
  height: fit-content;
  width: 100%;
  background-color: var(--branco);
}

.footer-tag {
  font-weight: 500;
  color: #999;
}

.divider-footer {
  width: 100%;
  height: 1px;
  background: var(--ouro);
}





@media (max-width: 768px) {
  footer,
  .footer-full {
    height: auto;
    min-height: 60vh;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
    padding: 32px 12px 32px 12px;
    max-width: 100vw;
    width: 100vw;
    align-items: stretch;
    justify-content: center;
  }

  .footer-col {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
  }

  .footer-col.left img {
    display: none;
  }

  .footer-lead {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .footer-lead span {
    font-size: 1.2rem;
  }

  .calendly {
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 32px;
  }

  .calendly a {
    font-size: 1.1rem;
  }

  .footer-nav {
    text-align: center;
  }

  .footer-social a,
  .footer-nav a {
    font-size: 1.2rem;
  }

  .footer-nav a {
    font-size: 2rem;
  }

  .footer-email {
    font-size: 1.1rem;
  }

  .footer-address {
    font-size: 0.95rem;
  }

  .footer-bottom {
    margin: 18px auto 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.95rem;
  }

  .logo-footer h1 {
    font-size: 12vw;
    margin: 0.5em 0;
    text-align: center;
  }
}