/*NAVBAR*/
#header {
  width: 100%;
  position: fixed;
  height: 80px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;

  top: 0;

  border: 0.5px solid rgb(231, 231, 231);
  box-shadow: -2px 2px 10px 0 hsla(197, 8%, 83%, .5);
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
  z-index: 2;
}

#logo {
  width: 120px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo img {
  width: 100px;
}

#menu {
  display: flex;
  gap: .5rem;
}

#menu ul li {
  position: relative;
}

#menu a {
  display: block;
  padding: 0.5rem;
  /* background: red; */
  transition: .3s;
  color: var(--color-primary);
}

#menu a:hover {
  color: var(--color-primary);
}

#menu i {
  transition: .3s;
}

#menu a:hover i {
  transform: rotate(-180deg);
}

#nav #btn-mobile {
  position: relative;
  display: none;
  bottom: 5px;
}

.nav-dropdown {
  position: fixed;
  width: 200px;
  height: auto;
  top: 79px;
  padding: 10px 15px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  border-radius: 0 0 14px 14px;
  background: #fff;

  display: none;
  flex-direction: column;
  z-index: 1000;
}

.nav-dropdown.active-dropdown {
  display: flex;
}


#menu .nav-dropdown a {
  display: block;
  padding: 0.3rem;
  /* margin-top: 10px; */
  transition: .3s;
}

#menu .nav-dropdown a:hover {
  color: var(--color-roxo);
  font-weight: bold;
}

/* HOME */

.home-container {
  position: relative;
  width: 100%;
  height: 450px;

  margin-top: 80px;

  display: flex;
  justify-content: space-between; 
}

.home-container.home {
  background: url('../img/Imagens/home_v3.jpg');
  background-size: cover;
  background-position: center;
}

.home-container.auto {
  background: url('../img/Imagens/seguro_auto.jpg');
  background-size: cover;
  background-position: center;
}

.home-container.moto {
  background: url('../img/Imagens/seguro_moto.jpg');
  background-size: cover;
  background-position: center;
}

.home-container.residencia {
  background: url('../img/Imagens/seguro_residencia.jpg');
  background-size: cover;
  background-position: center;
}


.home-container .title {
  position: relative;
  width: 420px;
  left: 100px;
  top: 25%;
  font-size: 3em;
  color: #FFF;
  font-family: 'Roboto';
  font-weight: 500;
}

.home-container .title span {
  font-weight: 700;
}

.home-container .quotation-box {
  position: relative;
  width: 350px;
  min-height: 480px;
  right: 5%;
  top: 35px;
  background: #FFF;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);
  z-index: 1;
}

.home-container .quotation-box .box-item {
  display: none;
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-item .image-box {
  width: 130px;
  height: 130px;
}

.box-item img {
  width: 100%;
}

.box-item.hidden {
  display: flex !important;
}


.home-container .quotation-box .title-box {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 1.5em;
}

.home-container .quotation-box .title-box span {
  font-weight: 700;
  color: var(--color-roxo);
}

.home-container .quotation-box i {
  position: absolute;
  cursor: pointer;
}

.home-container .quotation-box .prev {
  top: 100px;
  left: 20px;
}

.home-container .quotation-box .next {
  top: 100px;
  right: 20px;
}

.home-container .quotation-box .descrition-quotation {
  margin-top: 10px;
}

.home-container .quotation-box .descrition-quotation span {
  color: var(--color-primary);
  font-weight: 700;
}


.home-container .quotation-box fieldset {
  width: 100%;
  border: none;
  margin-top: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: left;
  padding: 0 25px;
}

.home-container .quotation-box fieldset label {
  /* width: 100%; */
  display: flex;
  font-size: 0.9rem;
  margin-top: 15px;
  flex-direction: column;
}

.home-container .quotation-box fieldset label:first-child {
  margin: 0;
}

.home-container .quotation-box fieldset label input, 
.home-container .quotation-box fieldset label textarea
{
  width: 300px;
  height: 30px;
  /* margin-top: 10px; */
  border: none;
  border-bottom: 1px solid rgb(180, 179, 179);
  font-size: 14px;
}

.home-container .quotation-box fieldset label textarea {
  height: 150px;
  padding-top: 10px;
  min-height: 150;
  resize: none;
  rows:10;
  font-family: 'Montserrat';
}

.home-container .quotation-box fieldset label input:focus,
.home-container .quotation-box fieldset label textarea:focus {
  border-bottom: 2px solid var(--color-primary);
}

.home-container .quotation-box .btn {
  margin: 30px 25px;
}


/* CHOOSE QUOTE */
.choose-quote-container {
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 20px 15px;

  display: flex;
  flex-direction: column;
  /* background: red; */
}



#choo-quote .title {
  position: relative;
  font-size: 1.6em;
  left: 40px;
}


.choose-quote-container .title {
  position: relative;
  font-size: 1.6em;
  left: 20px;
}

.choose-quote-container .title em { color: var(--color-roxo); }

.choose-quote-container .choose-content {
  width: 100%;
  height: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
  /* background: blue; */
}


.choose-quote-container a {
  width: 200px;
  height: 150px;
  display: block;
  margin-left: 10px;
  margin-top: 25px;
}

.choose-quote-container .box-choose {
  width: 100%;
  height: 100%;
  /* background: blue; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: .5s;
}


.choose-quote-container .box-choose img {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  /* height: 250px; */
  overflow: hidden;
  transition: .3s;
  
}

.choose-quote-container .box-choose:hover img {
  transform: scale(1.2);
  transition: .3s;
  cursor: pointer;
}

.choose-quote-container .box-choose .descrition-choose {
  margin-top: 15px;
}

.choose-quote-container .box-choose .descrition-choose span {
  color: var(--color-primary);
  font-weight: 700;
}


/* ABOUTS */
.aboutus {
  width: 100%;
  height: auto;
  min-height: 250px;
  padding-top: 25px;

  display: flex;
  flex-direction: column;
}

.aboutus .title {
  position: relative;
  font-size: 1.6em;
  left: 40px;
}

.aboutus .title em { color: var(--color-roxo); }

.aboutus .aboutus-content {
  width: 100%;
  height: 100%;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.aboutus .aboutus-content .item {
  width: 300px;
  height: auto;
  text-align: center;
  margin-top: 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.aboutus .aboutus-content .item img {
  width: 64px;
}



.aboutus .aboutus-content img {
  width: 120px;
}


.aboutus .aboutus-content .item .title-item {
  font-size: 1.3em;
  color: var(--color-primary);
  margin-top: 10px;
}

.aboutus-content .item .description {
  margin-top: 20px;
  font-weight: 0.5em;
}




/* PARTNERS */


.partners-container {
  width: 100%;
  height: auto;
  min-height: 250px;

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;

  /* background: linear-gradient(#2000d48c, #2000d48c), url('../img/team.jpg'); */
  background-size: cover;
}

.partners-container .title {
  position: relative;
  text-align: center;

  font-size: 1.2em;
  font-weight: 700;
  /* top: 25px; */
}

.partners-container .partners-content {
  position: relative;
  width: 95%;
  height: 100%;
  padding-top: 10px;
  /* box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%); */
  text-align: center;
}



.partners-container .partners-content {
  width: 95%;
  height: auto;
  min-height: 0px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  gap: 2.2rem;
  padding-bottom: 25px;
}

.partners-container .partners-content .img {
  width: 100px;
  height: 100px;
  /* margin: 0 25px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-container .partners-content .img img {
  width: 100%;
  /* height: 100%; */
}

/*
.partners-container {
  width: 100%;
  height: 300px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(#2000d48c, #2000d48c), url('../img/team.jpg');
  background-size: cover;
}

.partners-container .partners-content {
  position: relative;
  width: 90%;
  height: 230px;
  box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);

  text-align: center;
}

.partners-container .partners-content .title {
  position: relative;
  text-align: center;

  font-size: 1.2em;
  font-weight: 700;
  top: 25px;
}

.partners-container .partners-content .scroll {
  width: 100%;
  height: 90%;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.partners-container .partners-content .scroll .partner-box {
  width: 100px;
  height: 100px;
  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
}

.partner-box .img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-box .img img { width: 100%; }


.partners-container .partners-content .scroll .partner-box img {
  width: 100px;
}
*/


/* FOOTER */
.footer-container {
  width: 100vw;
  height: auto;
  min-height: 300px;
  background: var(--color-primary);

  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-container.contact  {
  margin-top: 200px;
}

.footer-container .footer-content {
  position: relative;
  width: 85vw;
  height: 80%;
  /* height: auto; */
  /* background: red; */

  display: flex;
  justify-content: space-around;
 
  color: #ffffff;

  padding: 10px 25px;

  /* align-items: center; */
  /* justify-content: center; */
}


.footer-container .whatsapp-button {
  position: relative;
  width: 200px;
  height: 50px;
  background: var(--color-roxo);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin: 25px;
}

.footer-container .whatsapp-button a {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container .whatsapp-button a i {
  margin-right: 5px;
}


.footer-container .footer-content .title-item {
  font-size: 1rem;
  font-weight: bold;
  color: white;
}

.footer-box {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 25px;
}
.footer-box:first-child { margin: 0; }

.footer-container .footer-content .footer-box ul {
  margin-top: 10px;
  
}

.footer-container .footer-content .footer-box ul li {
  margin-top: 5px;
}

.footer-content .footer-box ul li a {
  color: white;
}


.footer-content .footer-box ul li.produtos {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-content .footer-box ul li.produtos ul {
  position: absolute;
  width: 300px;
  height: auto;
  background: white;
  bottom: 25px;
  padding: 10px 15px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  border-radius: 14px;
  background: #fff;

  display: none;
  flex-direction: column;
  z-index: 999;
 
}

.footer-content .footer-box ul li.produtos ul li a {color: #000; }

.footer-content .footer-box ul li.produtos ul li a:hover {color: var(--color-roxo); font-weight: 700;}

.footer-content .footer-box ul li.produtos:hover ul {
  display: flex;
}

.footer-container .address {
  color: white;
  display: flex;
  flex-direction: column;
  margin: 25px;
}
/* 
.footer-container .footer-content .footer-box:last-child {
  grid-column: 1/4;
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: left;
} */

/* .footer-container {
  width: 100%;
  height: auto;
  background: var(--color-primary);
  color: #FFF;
}

.footer-container .title {
  position: relative;
  top: 10px;
  left: 25px;
  font-size: 1.6em;
}

.footer-container .footer-content {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 20px;
}

.footer-container .footer-content .footer-box {
  width: 33.33%;
  height: 100%;

  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 100px;
  
}

.footer-container .footer-content .footer-box .title-box {
  font-size: 1.3em;
  font-weight: 700;
  color: #FFF;
}

.footer-container .footer-content .footer-box a{ 
  transition: .3s; 
  margin-top: 5px;   color: #FFF; 
}

.footer-container .footer-content .footer-box .ishover:hover {
  cursor: pointer;
  color: rgb(209, 209, 209);
  font-weight: bold;
}

.footer-container .footer-bottom {
  display: flex;
  width: 100%;
  height: auto;
  padding: 25px 100px;

}

.footer-container .footer-bottom .address {
  width: 70%;
  position: relative;
  padding-left: 250px;
}

.footer-container .footer-bottom .social-media {
  display: flex;
  width: 20%;
  justify-content: flex-end;
  padding-right: 20px;
}

.footer-container .footer-bottom .social-media a {
  color: #FFF;
  cursor: pointer;
} */



/* FLOATING WHATSAPP */
.floating-whatsapp, .floating-whatsapp img {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 3%;
  z-index: 999;
}


@media screen and (max-width: 980px) {

  .home-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px !important;
    text-align: center;
    padding-top: 100px;
  }

  .home-container.pages .title {
    width: 500px;
    position: relative;
    top: 250px;
    left: 0;
    font-size: 2rem;
  }

  .home-container.pages .quotation-box {
    width: 60%;
    margin-top: 250px;
    height: 500px;
    right: 0;
    left: 0;
  }


  .home-container.contact .quotation-box {
    width: 50%;
  }

  /* 
  * HOME NORMAL
  */
  .home-container .title {
    width: 500px;
    position: relative;
    top: 130px;
    left: 0;
    font-size: 2rem;

  }

  .home-container .quotation-box {
    width: 60%;
    margin-top: 120px;
    height: 500px;
    right: 0;
    left: 0;
  }

  .choose-quote-container {
    margin-top: 250px;
  }

  .footer-container.contact  {
    margin-top: 350px;
  }

  .footer-container .footer-content {
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-box {
    width: 100%;
    text-align: center;
  }

  .footer-container .address {
    font-size: 0.8rem;
    text-align: center;
  }

  #nav #btn-mobile {
    display: block;
  }

  #menu {
    /* display: none; */
    display: block;
    position: absolute;
    width: 100vw;
    height: 0px;
    top: 77px;
    right: 0;
    z-index: 1000;
    background: #E7E7E7;
    transition: .6s;
    visibility: hidden;
    overflow-y: auto;
    background: var(--color-roxo);
  }

  #menu a {
    color: white;
  }

  #nav.active #menu {
 
    height: calc(100vh - 80px);
    visibility: visible;
    overflow-y: auto;
  }

  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
  }
  
  #nav #btn-mobile {
    display: flex;
    padding: .5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: .5rem;
  }

  #nav #btn-mobile #hamburguer {
    display: block;
    border-top: 2px solid;
    width: 20px;
    height: 2px;
    
  }

  .nav-dropdown.active-dropdown {
    position: relative;
    width: 100%;
    top: 0;
    height: auto;
    visibility: visible;
    overflow-y: auto;
  }

  .nav-dropdown.active-dropdown a {color: black !important}

  #nav #btn-mobile #hamburguer::after,  #nav #btn-mobile #hamburguer::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: .3s;
    position: relative;
  }

  #nav.active #btn-mobile #hamburguer {
    border: transparent;
  }

  #nav.active #hamburguer::before {
    transform: rotate(135deg);
  }

  #nav.active #hamburguer::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .footer-content .footer-box ul li.produtos ul {
    left: -60px;
  }
}

@media screen and (max-width: 740px) {

  .home-container  {
    padding-top: 100px;
  }

  .home-container.pages .title {
    width: 500px;
    position: relative;
    top: 250px;
    left: 0;
    font-size: 2rem;
  }

  

  .home-container.pages .quotation-box {
    width: 80%;
    margin-top: 250px;
    height: 500px;
    right: 0;
    left: 0;
  }
  

  .home-container.contact .quotation-box {
    width: 60%;
  }

  .choose-quote-container {
    margin-top: 270px;
  }

  .footer-container.contact  {
    margin-top: 350px;
  }


  .choose-quote-container .title {
    font-size: 1.5rem;
    left: 0;
  }
  .aboutus .title {
    font-size: 1.5rem;
    left: 15px;
  }

  .floating-whatsapp, .floating-whatsapp img {
    width: 54px;
    height: 54px;
  }
}

@media screen and (max-width: 560px)  {
  .partners-container .partners-content .img {
    width: 80px;
    height: 80px;
  }

  .home-container .quotation-box {
    width: 80% !important;
    margin-top: 120px;
    height: 500px;
  }

}

@media screen and (max-width: 470px)  {
  .home-container {
    padding-top: 100px;
    padding: 0;
  }


  .home-container .title {
    width: 300px !important;
    font-size: 1.5rem !important;
  }

  .home-container .quotation-box {
    width: 95% !important;
    margin-top: 120px;
    height: 500px;
  }

  /* .home-container .title {
    font-size: 1.5rem;
  } */


  .home-container .quotation-box {
    width: 95%;
  }
  /* .choose-quote-container {
    margin-top: 255px;
  } */
}

/* @media screen and (max-width: 350px) {
  .home-container .quotation-box .box-item {
    padding: 25px !important;
    width: 100% !important;
  }
} */

@media screen and (max-device-aspect-ratio: 1/1) and (orientation: portrait) {

  .home-container  {
    height: 300px;
    padding-top: 120px;
  }
  /* .choose-quote-container {
    margin-top: 150px;
  } */
}
