@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --accent-color: #34A825;
  --white: #fff;
  --black: #363839;
  --text-color: #000;
  --font-family: 'Poppins', var(--bs-font-sans-serif);
}

.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: var(--white);
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: var(--white) !important;
  filter: brightness(0.9) !important;
}

body {
  font-family: var(--font-family);
}

h1 {
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
}

h2 {
  color: var(--text-color);
  font-size: 38px;
  font-weight: 600;
}

h3 {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 500;
}

p {
  color: var(--text-color);
}

section {
  padding: 100px 0px;
}

a {
  text-decoration: none;
}

.bt a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 12px;
  background-color: var(--accent-color);
  padding: 12px 62px;
}

/* nav */
.navbar {
  background-color: var(--white);
}

.nav-link {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: var(--text-color);
  border-bottom: 2px solid var(--accent-color);
}

.logo {
  width: 200px;
}

/* end nav */

/* hero section */
.hero-section {
  background-image: url('https://agenciagoatdigital.com.br/lp/atesa/assets/images/banner-atesa-principal.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#hero {
  padding: 170px 0px;
}

.formulario {
  display: grid;
  place-items: center;
}

.formulario h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

form {
  width: 75%;
  background-color: var(--white);
  padding: 42px 12px;
  border-radius: 12px;
}

form button {
  color: var(--white) !important;
  background-color: var(--accent-color) !important;
  border: none !important;
  transition: all 0.3s ease-in-out !important;
}

form button:hover {
  transform: translateY(-5px);
}

.btn-custom-primary:hover {
  background-color: var(--accent-color) !important;
}
/* end hero section */

/* cooperativa */
.cooperativa {
  background-color: #F4F4F4;
}

.cooperativa .content h2 {
  border-left: 4px solid var(--accent-color);
  padding-left: 6px;
}

.img-coop {
  display: grid;
  place-items: center;
}

.img-coop img {
  max-width: 100%;
  width: 90%;
}

/* end cooperativa */

/* servicos */
.servicos {
  background-image: url('/assets/images/banner-atesa-cor.jpg');
  background-repeat: no-repeat;
}

.servicos .title h2 {
  font-size: 42px;
}

.servicos .title h2>span {
  color: var(--accent-color);
}

.servicos .box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  text-align: center;
}

.servicos .box img {
  max-width: 100%;
  width: 100%;
}

.servicos .bt {
  display: grid;
  place-items: center;
}

/* end servicos */

/* por que escolher */
.por-que-atesa .title h2>span {
  color: var(--accent-color);
}

.por-que-atesa .slide-content {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}

.por-que-atesa i {
  color: var(--accent-color);
  font-size: 44px;
  margin-bottom: 1rem;
}

.por-que-atesa h3 {
  margin-bottom: 1rem;
}

.por-que-atesa p {
  color: #666;
  line-height: 1.6;
}

.por-que-atesa .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* end por que escolher */

/* beneficios */
.beneficios {
  background-color: #F4F4F4;
}

.beneficios .title h2>span {
  display: block;
  color: var(--accent-color);
}

.beneficios .box {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.beneficios .box img {
  max-width: 100%;
  width: 140px;
}

.beneficios .bt {
  display: grid;
  place-items: center;
}

/* end beneficios */

/* rergulaçao */
.img-regulacao {
  display: grid;
  place-items: center;
}

.img-regulacao img {
  max-width: 100%;
  width: 90%;
}

.regulacao .content h2 {
  border-left: 4px solid var(--accent-color);
  padding-left: 6px;
}

/* end rergulaçao */

/* como funciona */
.como-funciona h2>span {
  border-bottom: 4px solid var(--accent-color);
}

.como-funciona .col {
  flex: 0 0 50%;
}

.como-funciona .box {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.como-funciona .box img {
  max-width: 100%;
  width: 130px;
}

.como-funciona .bt {
  display: grid;
  place-items: center;
}

/* end como funciona */

/* cta */
.cta {
  background-image: url('https://agenciagoatdigital.com.br/lp/atesa/assets/images/banner-atesa-cta.jpg');
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 10px;
}

.cta-content h2 {
  font-size: 42px;
}

.cta-content .bt {
  display: grid;
  place-items: center;
}

/* end cta */

/* footer */
footer {
  color: var(--text-color);
  background-color: var(--accent-color);
  width: 100%;
}

footer ul li {
  padding-left: 0px !important;
}

footer span {
  color: var(--white);
  padding-left: 14px;
}

.footer-link {
  text-decoration: none;
}

#footer_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 20px 0px 50px;
}

.footer-logo img {
  max-width: 100%;
  width: 220px;
}

#footer_social_media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  #footer_social_media {
      align-items: left;
      justify-content: left;
  }
}

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  transition: all 0.4s;
}

#footer_social_media .footer-link:hover {
  color: var(--accent-color);
  background-color: var(--white);
  border: 2px solid var(--white);
}

#footer_social_media .footer-link i {
  font-size: 1.25rem;
}

#instagram {
  background-color: transparent;
}

#facebook {
  background-color: transparent;
}

#whatsapp-footer {
  background-color: transparent;
}

#contacts li i {
  color: var(--white);
  font-size: 16px;
  padding-right: 4px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-list h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 24px;
  gap: 100px;
}

.footer-list .footer-link {
  color: var(--white);
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.footer-list .footer-link:hover {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}

#footer_copyright {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  #footer_content {
      text-align: left;
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
  }
}

@media screen and (max-width: 450px) {
  #footer_content {
      grid-template-columns: repeat(1, 1fr);
      padding: 10px;
  }
}

/** Fim Footer **/

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}

/* media queries */
@media screen and (max-width: 768px) {
  h1 {
      font-size: 42px;
      text-align: center;
      margin-bottom: 72px;
  }

  section {
      padding: 72px 10px;
  }

  .bt a {
      display: block;
      width: 100%;
  }

  form {
      width: 100%;
  }

  .img-coop {
      margin-bottom: 32px;
  }

  .img-coop img {
      width: 100%;
  }

  .servicos .col {
      flex: 0 0 100%;
  }

  .beneficios .col {
      flex: 0 0 100%;
  }

  .img-regulacao {
      margin-bottom: 32px;
  }

  .img-regulacao img {
      width: 100%;
  }

  .como-funciona .col {
      flex: 0 0 100%;
  }

  .cta-content h2 {
      font-size: 36px;
  }

}

/* end media queries */