@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --custom-primary: #F47920;
  --white: #fff;
  --black: #1a1a1a;
  --gray: #f2f2f2;
  --font-family: 'Nunito Sans', var(--bs-font-sans-serif);
}

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

.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: #fff !important;
  filter: brightness(0.9) !important;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  color: var(--white);
  font-size: 42px;
  font-weight: 500;
}

h1>span {
  display: block;
  color: var(--custom-primary);
  font-size: 48px;
  font-weight: 700;
}

h2 {
  color: var(--black);
  font-size: 38px;
  font-weight: 700;
}

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

p {
  color: var(--black);
  font-size: 16px;
}

section {
  padding: 100px 0px;
}

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

.bt a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 8px;
  background-color: var(--custom-primary);
  padding: 16px 72px;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}

.bt a:hover {
  transform: translateY(-6px);
}

#mobile {
  display: none;
}

#desktop {
  display: block;
}

@media (max-width: 1024px) {
  #mobile {
    display: block;
  }

  #desktop {
    display: none;
  }
}

/* nav */
.logo {
  width: 220px;
}

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

.nav-link {
  color: var(--black);
  font-size: 18px;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease-out;
}

.nav-link:hover {
  color: var(--black);
  border-bottom: 4px solid var(--custom-primary);
}

/* end nav */

/* hero */
#hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-secoli-principal.png');
  background-position: center;
  background-size: cover;
  padding: 120px 10px;
}

#hero .content p {
  color: var(--white);
}

/* end hero */

/* secoli */
.conectando {
  background-color: var(--gray);
}

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

.conectando .content h2>span {
  color: var(--custom-primary);
}

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

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

/* end secoli */

/* por que escolher */
.escolher .box img {
  max-width: 100%;
  width: 140px;
}

/* end por que escolher */

/* produtos */
.Produtos .slide-content img {
  max-width: 100%;
  width: 450px;
}

/* end produtos */

/* cta */
.cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/banner-secoli-cta.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 10px;
}

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

.cta .bt a {
  border: 2px solid var(--white);
  background-color: transparent;
}

.cta .bt a:hover {
  border: 2px solid var(--custom-primary);
  background-color: var(--custom-primary);
}

/* end cta */

/* clientes */
.clientes .box {
  display: grid;
  place-items: center;
  padding: 12px;
}

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

/* end clientes */

/* about */
.about {
  background-color: var(--gray);
}

.about .content h2 {
  font-size: 44px;
}

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

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

/* end about */

/* footer */
footer {
  color: var(--white);
  background-color: var(--custom-primary);
  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: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  transition: all 0.4s;
}

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

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

#instagram,
#facebook,
#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);
  border-left: 4px solid var(--black);
  padding-left: 4px;
  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;
}


.footer_iso {
  display: flex;
  align-items: right;
  justify-content: right;
  flex-direction: row;
  gap: 12px;
}

.footer_iso>li {
  list-style: none;
}

.footer_iso img {
  max-width: 100%;
  width: 200px;
}


@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: 32px 10px;
  }
}

/* end footer */

/* responsivo */
@media screen and (max-width: 768px) {
  h1 {
    text-align: center;
  }

  section {
    padding: 52px 10px;
  }

  #hero {
    padding: 72px 10px;
  }

  #hero .content {
    margin-bottom: 32px;
  }

  #hero .content p {
    text-align: center;
  }

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

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

  .escolher .col {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }

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

  .clientes .box img {
    width: 140px;
  }

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

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

  .footer_iso {
    justify-content: center;
    align-items: center;
  }
}

/* end responsivo */