/* --- SEÇÃO DE CTA UNIVERSAL (ACIMA DO FOOTER) --- */

.cta {
  background: url(/img/cta-circles-bg.png) fixed;
  background-color: var(--light-purple-color);
  z-index: 1;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-l-column {
  min-width: 35%;
}

.cta-r-column {
  min-width: 55%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 36px;
  padding: 36px;
  background: var(--white-color);
  border: 6px solid var(--black-color);
  box-shadow: var(--small-box-shadow);
  z-index: 10;
  margin-top: -150px;
}

.cta-img-notebook {
  height: 500px;
}

.cta-img-notebook:hover {
  transform: scale(1.02);
}

/* Faz o body ocupar no mínimo a altura da tela inteira */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Faz o conteúdo principal (main) crescer e empurrar o footer para baixo */
main {
  flex: 1;
}

.main-footer {
  width: 100%;
  background: var(--black-color);
  border-right: 4px solid;
  border-left: 4px solid;
  border-bottom: 4px solid;
  border-color: var(--black-color);
}

.main-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.left-footer-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.footer-logo-img {
  height: 40px;
}

.footer-logo-img:hover {
  transform: scale(1.08);
}

.right-footer-column {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
}

.right-footer-column a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-social-wrapper {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}

/* Força as duas imagens a ficarem no mesmo espaço */
.link-social-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Esconde a vermelha por padrão */
.link-social-wrapper .img-hover {
  opacity: 0;
}

/* Quando passa o mouse: esconde a roxa e mostra a vermelha */
.link-social-wrapper:hover .img-default {
  opacity: 0;
}

.link-social-wrapper:hover .img-hover {
  opacity: 1;
}













/* ========== RESPONSIVO - TABLET 768+ ==========*/

@media screen and (min-width:768px) {
  .main-footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-wrap {
    flex-direction: row;
  }

  .cta-r-column {
    min-width: 65%;
    margin-top: 0;
    padding: 60px;
    box-shadow: var(--medium-box-shadow);
  }

  .cta-l-column {
    min-width: 25%;
  }

  .cta-img-notebook {
    height: 400px;
  }
}















/* ========== RESPONSIVO - LAPTOP 1024+ ==========*/

@media screen and (min-width:1024px) {
  .cta-r-column {
    min-width: 50%;
    box-shadow: var(--large-box-shadow);
  }

  .cta-l-column {
    min-width: 40%;
  }

  .cta-img-notebook {
    height: 500px;
  }
}















/* ========== RESPONSIVO - DESKTOP 1440+ ==========*/

@media screen and (min-width:1440px) {
  .cta-r-column {
    min-width: 45%;
  }

  .cta-l-column {
    min-width: 45%;
  }
}