* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    font-family: 'Raleway', sans-serif;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  html {
    font-size: 62.5%;
  }
  
  html,body {
    overflow-x: hidden;
  }
  
  button {
    border: none;
    cursor: pointer;
    transition: all .3s linear;
  }

  h1 {
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 146%;
    color: var(--color-gray);
  }

  h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-gray);
  }
  
  h3 {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
  }

  p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-gray-paragraph);
  } 

  
  :root {
    --color-primary:#6EC1D5;
    --color-primary-darker:#329FBA;
    --color-primary-hover:#2790AA;
    --color-secondary:#DC1D54;
    --color-secondary-darker:#C11345;
    --color-tertiary:#E8AE29;
    --color-tertiary-darker:#D99F1A;
    --color-neutral:#f9fafa;
    --color-white:#ffffff;
    --color-gray:#1B2A2E;
    --color-gray-80:#485558;
    --color-gray-60:#767F82;
    --color-gray-30: #BABFC0;
    --color-gray-5:#F4F4F5;
    --color-gray-paragraph:#78818D;
    --color-information:#0E73BA;
    --color-sucess-darker:#357E3E;
    --color-black: #000000;
}

.container {
  width: 100%;
  max-width: 128.8rem;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

/* MENU .activit  */
.current-menu-item, .current_page_item a {
  font-weight: bold;
  color: var(--color-primary-darker) !important;
}

.img-background {
  position: absolute;
  z-index: -1;
}

.menu-item-has-children::after {
  content: url("../img/icons/arrow-down.svg");
  margin-left: 7.25px;
  margin-top: 6px;
}

header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 26px;
}

header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .logo {
  width: 241px;
  height: auto;
}

header nav #menu {
  display: flex;
}

header nav #menu .menu-item {
  margin-right: 24px;
  display: flex;
  cursor: pointer;
}
header nav #menu .menu-item:last-child {
  margin-right: 0;
}

header nav #menu .menu-item .arrow-down {
  margin-left: 7.25px;
}

header nav #menu .menu-item a {
  font-size: 18px;
  line-height: 130%;
  color: var(--color-gray-60);
}

/* MENU DROP-DOWN */
header .sub-menu {
  display: none;
  width: 272px;
  height: auto;
  padding: 10px;
  position: absolute;
  margin-top: 27px;
  background: var(--color-white);
  box-shadow: 0px 6px 30px rgba(23, 108, 130, 0.1);
  border-radius: 8px;
  z-index: 99;
}

header .sub-menu li {
  width: 252px;
  height: 50px;
  display: flex;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all .4s linear;
}

header .sub-menu li::before {
  content: '';
  width: 4px;
  height: 30px;
  background-color: transparent;
  border-radius: 8px;
  margin-left: 10px;
  transition: all .4s linear;
}

header .sub-menu li:hover::before {
  background-color: var(--color-secondary-darker);
}

header .sub-menu li:hover {
  background: rgba(220, 29, 83, 0.1);
  border-radius: 8px;
}

header .sub-menu li a {
  font-size: 20px;
  line-height: 130%;
  color: var(--color-gray);
  margin-left: 15px;
  transition: all .4s linear;
}

header .sub-menu li:hover a {
  font-weight: bold;
}

/* MENU RESPONSÍVO */
#menu-mobile,
#hidde-menu-2 {
    display: none;
}

@media (max-width: 800px) {
  #menu, 
  #btn-entrar,
  #hidde-menu-2,
  header nav #menu {
      display: none;
  }

  #menu-mobile {
      display: block;
      cursor: pointer;
  }

  header .hidde-menu {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 0;
  }

  header .hidde-menu .btn {
      margin: 47px 0 60px 0;
      width: 100%;
  }

  header .hidde-menu ul {
      width: 100%;
      display: flex;
      flex-direction: column;
  }

  header .hidde-menu ul li {
      margin-top: 24px;
  }

  header .hidde-menu ul li:first-child {
      margin-top: 0;
  }

  header .hidde-menu ul li.sub-menu-mobile {
      display: flex;
      flex-direction: column;
  }

  header .hidde-menu ul li a {
      font-size: 24px;
      line-height: 40px;
      color: var(--color-gray-60);
  }

  /* MENU DROP-DOWN RESPOSÍVO */
  .menu-item-has-children .sub-menu {
    display: none;
  }

  header #hidde-menu-2 .menu-item-has-children {
    position: static;
  }

  header #hidde-menu-2 .menu-item-has-children::after {
    display: none;
  }

  header #hidde-menu-2 .menu-item-has-children::before {
    content: url("../img/icons/arrow-down.svg");
    left: 25%;
    top: 30px;
    position: relative;
    display: flex;
  }

  header #hidde-menu-2 .menu-item-has-children .sub-menu {
    position: static;
  }

  header #hidde-menu-2 .menu-item-has-children .sub-menu li a {
    font-size: 20px;
  }

}


/*BOTÃO*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-tertiary-darker);
  min-width: 160px;
  padding: 0 15px;
  height: 47px;
  border-radius: 10px;
  border: none;
  box-shadow: 0px 6px 10px 0px #176C823D;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .4s linear;
}

.btn:hover {
  background-color: var(--color-primary-hover);
}

.btn-rosa {
  background-color: var(--color-secondary);
}

.btn-rosa:hover {
  background-color: var(--color-secondary-darker);
}

/*CARD DE CURSOS*/
.card-cursos {
  max-width: 399px;
  background-color: var(--color-white);
  box-shadow: 0px 8px 40px 0px #1B2A2E0F;
  padding: 32px;
  border-radius: 10px;
}

.barra-and-h3 {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}

.barra-detail {
  width: 3.5px;
  height: 18px;
  background-color: var(--color-secondary);
  margin-right: 11px;
  border-radius: 10px;
}

.h3-card-cursos {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 2.4rem;
}

.btn-ver-mais {
  display: flex;
  padding-top: 24px;
}

.btn-ver-mais h3 {
  color: var(--color-primary-darker);
  font-weight: 600;
  font-size: 16px;
  margin-right: 8px;
}

.btn-ver-mais a {
  display: flex;

}

/*CARD DE DEPOIMENTOS*/
.card-depoimentos {
  max-width: 395px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 6px 30px 0px #176C821A;
  display: flex;
  padding: 26px 27px 27px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-depoimentos img {
  width: 91.15px;
  height: 91.15px;
  margin-right: 32px;
}

.box-depoimento {
  display: flex;
  flex-direction: column;
}

.box-depoimento h3 {
  color: var(--color-gray);
  font-weight: 600;
}

.box-depoimento p {
  font-size: 14px;
  margin-top: 10px;
}

/*CARD AZUL DA PÁGINA QUEM SOMOS*/
.box-cards-azul {
  width: 296px;
  height: 301px;
  padding: 35px 26px 0 26px;
  background-color: var(--color-primary-darker);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.icon-e-title-card-azul {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.icon-e-title-card-azul img {
  margin-right: 14px;
}

.icon-e-title-card-azul h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 48px;
  color: var(--color-white);
}

.text-card-azul {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-gray-5);
}

/*CONTATO*/
.contato {
  display: flex;
  justify-content: space-between;
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.text-contato {
  max-width: 672px;
}

.text-contato h2 {
  max-width: 585px;
  margin-bottom: 2.7rem;
}

.text-contato p {
  max-width: 471px;
  margin-bottom: 3.2rem;
}

.text-contato img {
  margin-left: -30px;
}

/*FORM*/
.form {
  display: flex;
  flex-direction: column;
  position: relative;
}

form {
  width: 50.4rem;
  height: 54.1rem;
  padding: 5.5rem 7.4rem 5.5rem 7.5rem;
  background: linear-gradient(92.59deg, #DC1D54 1.17%, #C11345 98.97%);
  border-radius: 14px;
}

label {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: var(--color-white);
  margin-bottom: 4px;
}

input {
  width: 100%;
  min-height: 44px;
  padding: 8px 0 8px 15px;
  border-radius: 5px;
  border: 1px solid #D1D4D5
}

textarea {
  width: 100%;
  min-height: 44px;
  padding: 8px 0 8px 15px;
  border-radius: 5px;
  border: 1px solid #D1D4D5
}

.form button {
  width: 160px;
  position: absolute;
  right: 0%;
}

/*FOOTER*/

footer {
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid #EFF0F0;
  padding-bottom: 50px;
  bottom: 0;
  position: static;
}

.copy-and-social {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-text p {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gray-80);
}

.social-icons {
  width: 118px;
  display: flex;
  justify-content: space-between;
  margin-left: 16px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: var(--color-secondary);
  border-radius: 100%;
  transition: all .4s linear;
}

.social-icons a:hover {
  background-color: var(--color-secondary-darker);
} 

/* MENU DO FOOTER */
footer .menu-footer {
  margin-top: 33px;
  margin-bottom: 38px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

footer .menu-footer nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .menu-footer nav .logo {
  width: 241px;
  height: auto;
}

footer .menu-footer nav ul {
  display: flex;
}

footer .menu-footer nav ul li {
  margin-right: 24px;
  display: flex;
  cursor: pointer;
}
footer .menu-footer nav ul li:last-child {
  margin-right: 0;
}

footer .menu-footer nav ul li .arrow-down {
  margin-left: 7.25px;
}

footer .menu-footer nav ul li a {
  font-size: 18px;
  line-height: 130%;
  color: var(--color-gray-60);
}

/* MENU DROP-DOWN */
footer .menu-footer .sub-menu-footer {
  display: flex;
  flex-direction: column;
  width: 272px;
  height: 127px;
  padding: 10px;
  position: absolute;
  margin-top: 30px;
  left: 40%;
  background: var(--color-white);
  box-shadow: 0px 6px 30px rgba(23, 108, 130, 0.1);
  border-radius: 8px;
  z-index: 99;
}

footer .menu-footer .sub-menu-footer .submeni-item {
  width: 252px;
  height: 50px;
  display: flex;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all .4s linear;
}

footer .menu-footer .sub-menu-footer .submeni-item .detail {
  width: 4px;
  height: 30px;
  background-color:transparent;
  border-radius: 8px;
  margin-left: 10px;
  transition: all .4s linear;
}

footer .menu-footer .sub-menu-footer .submeni-item a {
  font-size: 20px;
  line-height: 130%;
  color: var(--color-gray);
  margin-left: 15px;
  transition: all .4s linear;
}

footer .menu-footer .sub-menu-footer .submeni-item:hover a {
  font-weight: bold;
}

footer .menu-footer .sub-menu-footer .submeni-item:hover {
  background: rgba(220, 29, 83, 0.1);
  border-radius: 8px;
}

footer .menu-footer .sub-menu-footer .submeni-item:hover .detail {
  background-color: #C11345;
}

.differentials-slider {
    display: none;
}

@media (max-width: 740px) {

  h1 {
      font-size: 32px;
  }

  h2 {
      font-size: 24px;
  }

  p {
      font-size: 16px;
  }

  .container {
    padding: 0 24PX;
  }

  /*CONTATO*/
  .contato {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
  }

  .contato h2 {
    font-size: 32px;
  }

  .contato p {
    font-size: 16px;
  }

  .contato img {
    margin: auto;
  }

  form {
    margin-top: 32px;
    width: 100%;
    height: 507px;
    padding: 40px 30px;
  }

  .copy-and-social, .social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social p {
    margin-bottom: 16px;
  }

  .copy-and-social h3 {
    text-align: center;
    margin-bottom: 16px;
  }

  /*FOOTER*/
  footer .menu-footer nav {
    flex-direction: column;
  }

  footer .menu-footer nav ul {
      margin-top: 50px;
      margin-bottom: 25px;
  }

  footer .menu-footer nav a.btn {
      width: 100%;
  }
}
