@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html{
  scroll-behavior: smooth;

}

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #E1EBF3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

body {
  font-family: Arial, sans-serif;
  color: #1a1a1a;
  background-color: #E1EBF3;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: auto;
}

/* HEADER */
.header {
  background: #313D47;
  color: #fff;
  padding: 20px 0;
}
.header__infos{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.header__infos a{
  color: #fff;
  text-decoration: none;
}
.header__socials{
  gap:10px;
  margin-top: 5px;
  display: flex;
}
.header__socials a img{
  filter: invert(23%) sepia(43%) saturate(5954%) hue-rotate(333deg) brightness(90%) contrast(100%);
  height: auto;
  width: 22px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-info {
  font-size: 12px;
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #c97af5, #946ee6);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
  padding: 60px 0;
  height: 600px;
  max-height: 600px;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 42px;
  line-height: 46px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 40px;
  position: relative;
}

.hero .btn {
  margin-top: 20px;
}

/* SOBRE */
.sobre{
  padding: 60px 0;
}
.sobre h2 {
  color: #EC0748;
  margin-bottom: 20px;
}

.sobre h3 {
  color: #EC0748;
  text-transform: uppercase;
  font-weight: 400;
  margin: 20px 0 10px;
}

.sobre .btn{
  margin-top: 20px;
}

/* BOTÃO */
.btn {
  background-color: #EC0748;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

/* PARCEIROS */
.parceiros {
  background-color: #313D47;
  padding: 30px 0;
  text-align: center;
}

.parceiros .container{
  max-width: 100%;
}

.parceiros img {
  height: 40px;
  margin: 0 15px;
}

/* SOLUÇÕES */
.solucoes{
  padding: 60px 0 80px;
  background-color: #fff;
}
.solucoes h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #EC0748;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background-color: #313D47;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

/* PARCERIA */
.parceria {
  background: #313D47;
  color: white;
  padding: 60px 0;
}

.parceria-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.parceria-text{
  max-width: 520px;
} 

.parceria-text h2{
  color: #EC0748;
  margin-bottom: 10px;
}

.parceria-img img {
  max-width: 100%;
  height: auto;
}

.parceria .btn{
  margin-top: 30px;
}

/* CHAMADA FINAL */
.cta-final {
  background-color: #E1EBF3;
  color: #EC0748;
  text-align: center;
  padding: 60px 20px;
  font-weight: bold;
}

.cta-final h3{
  text-transform: uppercase;
  max-width: 500px;
  margin: 0 auto;
}

form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: auto;
  margin-top: 20px;
}

form .form-group {
  margin-bottom: 20px;
}

form input[type="text"],
form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #c1002c;
  box-shadow: 0 0 0 3px rgba(193, 0, 44, 0.1);
  outline: none;
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form .btn-form {
  background-color: #c1002c;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form .btn-form:hover {
  background-color: #a10024;
}

/* Responsivo */
@media (max-width: 576px) {
  form {
    padding: 20px;
  }

  form .btn-form {
    width: 100%;
  }
}


/* FOOTER */
.footer {
  background-color: #EC0748;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer ul li{
  list-style: none;
  text-align: left;
  margin-bottom: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

.footer a{
  color: #fff;
}

.footer p {
  text-align: right;
}
.rodape-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.copy {
  font-size: 14px;
  background-color: #313D47;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.copy a {
  margin-bottom: 15px;
}
.copy p {
  font-size: 14px;
  color: #fff;
}
.hero-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  margin-top: 20px;
  gap: 20px;
}
.hero-text h2{
  font-size: 36px;
  max-width: 400px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .header{
    position: relative;
    padding: 20px 120px;
  }
  .menu {
    display: none;
    flex-direction: column;
    background-color: #313D47;
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .header__infos{
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
  }
  .menu.active {
    display: flex;
    top: 200px;
    width: 100%;
    z-index: 99;
  }

  .header .container{
    flex-direction: row;
  }
  .parceria-grid,
  .rodape-grid {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }
  .menu li{
    text-align: center;
  }
  .container{
    padding: 0 20px;
  }
  .footer p{
    text-align: left;
  }
  .parceiros .container {
    max-width: 100%;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.floating-wpp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-wpp-button:hover {
  transform: scale(1.05);
}

.floating-wpp-button svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.hero {
  position: relative;
  background: linear-gradient(to right, #c97af5, #946ee6);
  background-size: cover;
  background-position: center;
  color: white;
  transition: background-image 0.5s ease-in-out;
}
.hero .container{
  width: 100%;
}

.hero .swiper-slide {
  display: flex;
  align-items: center;
}


.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #fff;
}
/* Estilização das setas Swiper */
.parceiros .swiper-button-next,
.parceiros .swiper-button-prev {
  color: #ffffff;
  width: 30px;
  height: 30px;
  top: 100%;
  transform: translateY(-50%);
}

.parceiros .swiper-button-next::after,
.parceiros .swiper-button-prev::after {
  font-size: 20px;
}
.parceiros {
  background-color: #313D47;
  padding: 40px 10px;
}

.parceiros .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}