@charset "UTF-8";
/* Tema do cliente */

/* ------------------------------------------------------------
   Fonts
------------------------------------------------------------ */
@font-face {
  font-family: 'open_sansregular';
  src: url('../fonts/OpenSans-Regular-webfont.eot');
  src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
       url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
       url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserratregular';
  src: url('../fonts/montserrat-regular-webfont.eot');
  src: url('../fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-regular-webfont.woff') format('woff'),
       url('../fonts/montserrat-regular-webfont.ttf') format('truetype'),
       url('../fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* ------------------------------------------------------------
   Pré formatações
------------------------------------------------------------ */
.img-responsive {
  display: inline-block;
}

.container {
  max-width: 1000px;
}

a:hover {
  color: #f2ab05;
}

::-moz-selection {
  background: #f2ab05;
}

::selection {
  background: #f2ab05;
}

.pagination .active a,
.pagination .active a:hover {
  background-color: #f2ab05;
  border-color: #f2ab05;
}

.editor p {
  font-family: 'open_sansregular';
  font-size: 15px;
  color: #333;
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-family: 'montserratregular';
}


.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  img {
    transition: all .2s linear;
  }

  &:hover {
    img {
      filter: brightness(1.2);
    }
  }
}
/* ------------------------------------------------------------
   CSS do Tema
------------------------------------------------------------ */

/* ------------------------------------------------------------
   Header
------------------------------------------------------------ */
body {
  background-color: #f0f0f0;
  margin: 0px;
}

.header {
  background-image: url(../imagens/fundo-topo.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.header .conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1170px;
}

.header .row {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .tel-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.telefone-topo {
  font-family: 'montserratregular';
  font-size: 15px;
  color: #FFF;
  margin-top: 0px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* MENU */
.menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: right;
  margin-top: 65px;
}

.menu li {
  display: inline-block;
  margin-right: 15px;
  padding-right: 20px;
  background-image: url(../imagens/separador-menu.png);
  background-position: right 5px;
  background-repeat: no-repeat;
  position: relative;
}

.menu a {
  transition: all .2s linear;
  display: block;
  font-family: 'montserratregular';
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}

.menu a:hover {
  color: #631f48;
}

.menu li:last-child {
  border-right: none;
  padding-right: 0;
  background-image: none;
  margin-right: 0;
}

/* item SEGUROS */
.menu-seguros {
  position: relative;
}

.menu-seguros:hover > a {
  color: #631f48;
}

/* dropdown */
.menu .submenu {
  display: none;
  position: absolute;
  top: 100%;   /* FIX GARANTIDO */
  left: 0;
  background: #631f48;
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 9999;
}


.menu .submenu li {
  background-image: none !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.menu .submenu a {
  color: #fff;
  padding: 8px 15px;
  display: block;
  font-size: 13px;
  text-align: left;
}

.menu .submenu a:hover {
  background: #fff;
  color: #631f48;
}

/* regra principal */
.menu-seguros:hover .submenu {
  display: block;
}


/* ------------------------------------------------------------
   Banner
------------------------------------------------------------ */
.area-banner {
  position: relative;
  height: 680px!important;
  border: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.area-banner .container__nav{
  max-width: 100%;
}

.banner {
  height: 659px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  top: -2px;
}

.banner a {
  display: block;
  width: 100%;
  height: 659px;
  background-position: center top;
  background-repeat: no-repeat;
  vertical-align: top;
  background-size: cover;
}

.aba-banner {
  background-image: url(../imagens/aba-slider.png);
  height: 133px;
  width: 100%;
  position: absolute;
  z-index: 600;
  bottom: -2px;
  left: 0;
  background-position: center top;
  background-repeat: no-repeat;
}

.area-banner .container {
  position: relative;
}

#next,
#prev {
  position: absolute;
  top: 205px;
  z-index: 600;

  cursor: pointer;
}

#next {
  right: 50px;
}

#prev {
  left: 50px;
}

/* ------------------------------------------------------------
   Chamadas
------------------------------------------------------------ */
.area-chamadas {
  position: relative;
  height: auto;
  margin-top: -205px;
  z-index: 700;
  margin-bottom: 35px;
}

.chamadas {
  height: 222px;
  overflow: hidden;
  width: 970px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.chamadas a {
  display: block;
  width: 200px;
  margin-right: 39px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: top;
  text-align: center;
  border-radius: 50%;
  border: 3px solid #292929;
  font-family: 'montserratregular';
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-shadow: 15px 0px 15px rgba(0, 0, 0, 1);
  padding-top: 95px;
  text-decoration: none;
}

.setas {
  text-align: center;
  background-image: url(../imagens/fundo-setas.png);
  background-position: center center;
  background-repeat: no-repeat;
}

#next2,
#prev2 {
  display: inline-block;
}

/* ------------------------------------------------------------
   Bem-vindo
------------------------------------------------------------ */
.bem-vindo {
  width: 100%;
  background-image: url(../imagens/fundo-bem-vindo.png);
  height: 72px;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  margin-bottom: 30px;
}

.bem-vindo h2 {
  margin: 10px 0px;
  font-family: 'montserratregular';
  font-size: 30px;
  color: #FFF;
  display: inline-block;
  line-height: 1;
}

/* ------------------------------------------------------------
   Home texto
------------------------------------------------------------ */
.home-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-txt .container {
  width: 100%;
  max-width: 1170px!important;
}

.home-txt .conteudo{
  width: 100%;
  max-width: 470px;
  height: auto;
}

.home-txt .img{
  width: 100%;
  max-width: 460px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-txt .img img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.txt-home .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.txt-home h2 {
  font-family: 'montserratregular';
  font-size: 25px;
  color: #333;
  border-left: 10px solid #f2ab05;
  padding-left: 10px;
  margin-top: 0;
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer {
  background-image: url(../imagens/fundo-rodape.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #141414;
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer .menu {
  text-align: left;
  margin-top: 12px;
}

.redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 10px 0px;
}

.redes a {
  width: 100%;
  max-width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redes a img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer h4 {
  margin-top: 6px;
  font-family: 'montserratregular';
  font-size: 14px;
  color: #D6D6D6;
}

.box1 {
  width: 365px;
  float: left;
  background-image: url(../imagens/linha-rodape.png);
  background-position: right top;
  background-repeat: no-repeat;
}

.box2 {
  float: left;
  padding-left: 30px;
}

.footer p {
  font-family: 'open_sansregular';
  font-size: 13px;
  color: #FFF;
}

.footer .container {
  width: 100%;
  max-width: 1170px!important;
}

.footer2 {
  background-color: #631f48;
  padding-top: 5px;
  padding-bottom: 15px;
  font-family: 'Verdana';
  font-size: 11px;
  color: #FFF;
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer2 .container {
  width: 100%;
  max-width: 1170px!important;
}

.footer2 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer2 p {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}

.footer2 a {
  color: #FFF;
  transition: all .2s linear;
  text-decoration: none;
}

.footer2 a:hover {
  color: #f2ab05;
}

.logokryz {
  background-image: url(../imagens/logo-kryzalis.png);
  width: 50px;
  height: 31px;
  display: inline-block;
  position: relative;
  top: 7px;
}

/* ------------------------------------------------------------
   Internas
------------------------------------------------------------ */
.btn-voltar {
  background-color: #631f48;
  border: none;
  padding: 12px 20px;
  float: left;
  margin-top: 10px;
  font-family: 'montserratregular';
  color: #FFF;
  font-size: 12px;
  transition: all .2s linear;
  display: block;
  border-radius: 5px;
  line-height: 1;
  text-decoration: none;
}

.btn-voltar:hover {
  background-color: #f2ab05;
  color: #000;
}

.titulo {
  background-image: url(../imagens/fundo-titulo.jpg);
  background-position: center top;
  background-repeat: repeat;
  padding: 25px 0;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo .container {
  width: 100%;
  max-width: 1170px!important;
}

.titulo h2 {
  font-family: 'montserratregular';
  color: #f2ab05;
  font-size: 40px;
  margin-top: 0;
}

.bread {
  font-family: 'open_sansregular';
  color: #FFF;
}

.bread a {
  color: #FFF;
  font-weight: bold;
}

/* ------------------------------------------------------------
   PRS-45
------------------------------------------------------------ */
.prs-45 .produto {
  display: block;
  margin-bottom: 20px;
  font-family: 'open_sansregular';
  color: #6C5227;
  font-size: 16px;
  transition: all .2s linear;
  text-decoration: none;
}

.prs-45 .produto img {
  margin-bottom: 10px;
  transition: all .2s linear;
}

.prs-45 .produto:hover {
  color: #8A6C3B;
}

.prs-45 .produto:hover img {
  opacity: .8;
  filter: alpha(opacity=80);
  -moz-opacity: .8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha"(Opacity=80);
}

.produto span {
  display: block;
}

/* ------------------------------------------------------------
   PRS-D-25
------------------------------------------------------------ */
.prs-d-25 .img-servico-d {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.prs-d-25 h2 {
  color: #f2ab05;
  font-size: 30px;
  font-family: 'open_sansregular';
  margin-top: 0;
}

.prs-d-25 .btn-orcamento {
  background-color: #f2ab05;
  border: none;
  width: 255px;
  height: 55px;
  line-height: 55px;
  border-radius: 3px;
  font-family: 'open_sansregular';
  text-align: center;
  color: #fff;
  font-size: 22px;
  transition: all .2s linear;
  display: inline-block;
  text-decoration: none;
}

.prs-d-25 .btn-orcamento:hover {
  color: #fff;
  background-color: #631f48;
}

.prs-d-25 p {
  margin-bottom: 15px;
}

/* ------------------------------------------------------------
   Sobre / Arquivos / Contato
------------------------------------------------------------ */
.archive-seguros, 
.archive-clientes{
  padding: 10px;
}

.sobre,
.archive-seguros,
.archive-clientes,
.page-contato,
.single-seguros {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre .container,
.archive-seguros .container,
.archive-clientes .container,
.page-contato .container,
.single-seguros .container {
  width: 100%;
  max-width: 1170px!important;
}

.archive-seguros .row,
.archive-clientes .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ------------------------------------------------------------
   Contato
------------------------------------------------------------ */
/* CONTAINER DO FORM */
.pg-contato form,
.pg-contato .wpcf7 form {
  background-color: #D3D3D3;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 5px;
  font-family: 'open_sansregular';
  font-size: 12px;
  display: flex;
  flex-direction: column;
}

/* INPUTS E TEXTAREA */
.pg-contato form input,
.pg-contato form textarea,
.pg-contato .wpcf7 form input,
.pg-contato .wpcf7 form textarea,
.pg-contato .wpcf7 form .form-control {
  font-size: 12px !important;
  border: none !important;
  font-family: 'Arial' !important;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}

/* ALTURA DOS INPUTS */
.pg-contato form input,
.pg-contato .wpcf7 form input.form-control {
  margin-bottom: 5px;
  height: 40px;
}

/* TEXTAREA */
.pg-contato form textarea,
.pg-contato .wpcf7 form textarea.form-control {
  height: 206px;
  margin-bottom: 10px;
  resize: none;
}

/* REMOVER MARGENS DO <p> DO CF7 */
.pg-contato .wpcf7 form p {
  margin: 0 !important;
  padding: 0 !important;
}


.pg-contato .wpcf7 .btn-enviar-contato {
  display: block;
  background-color: #393C41;
  border: none;
  width: 108px;
  height: 30px;
  line-height: 30px;
  float: right;
  color: #FFF!important;
  font-family: 'Arial'!important;
  font-size: 12px!important;
  transition: all .2s linear;
  border-radius: 5px;
}

.pg-contato .wpcf7 .btn-enviar-contato:hover {
  background-color: #555A62;
}

.pg-contato iframe {
  width: 100%;
  height: 345px;
}

/* ------------------------------------------------------------
  PÁGINA 404
------------------------------------------------------------ */
.pg-404{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.pg-404 .container{
  width: 100%;
  max-width: 1170px!important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pg-404 h1{
  font-size: 120px;
  margin: 0px;
  color: #631f48;
}

.pg-404 h2{
  font-size: 28px;
  margin: 0px;
  color: #631f48;
}

.pg-404 a{
  color: #000000;
}


/* ------------------------------------------------------------
  PÁGINA PADRÃO
------------------------------------------------------------ */
.page-padrao{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.page-padrao .container{
  width: 100%;
  max-width: 1170px!important;
}


/* ------------------------------------------------------------
   Responsivo - Menu
------------------------------------------------------------ */
.navbar-header {
  display: none;
}

.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.navbar {
  margin-bottom: 0;
}

@media (max-width: 1025px){
  .navbar-header {
    display: block;
  }

  /*#next, #prev{
    display: none;
  }*/

  #next {
    right: 15px;
  }

  #prev {
    left: 15px;
  }

  .header{
    background-image: none;
    background-color: #631f48;
    padding: 20px 10px;
    width: auto;
    height: auto;
  }

  .header .row{
    flex-direction: column;
    justify-content: center;
  }

  .header .tel-menu{
    width: 100%;
  }

  .telefone-topo {
    display: none;
  }

  .navbar-toggle {
    display: none;
  }

  .bem-vindo{
    background-image: none;
    background-color: #631f48;
    width: auto;
    height: auto;
    padding: 20px 10px;
  }

  .txt-home .row{
    flex-direction: column;
    text-align: center;
    width: auto;
    gap: 20px;
    padding: 10px;
  }

  .btn-voltar{
    width: 100%;
    max-width: 270px;
    float: none;
  }

  .home-txt .conteudo{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .conteudo-menu{
    display: none;
  }

  .box1{
    background-image: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer2 .row{
    flex-direction: column;
    padding: 0px 10px 100px 10px;
    justify-content: center;
  }

  .footer .menu {
    display: none;
  }

  .footer {
    background-image: none;
  }

  .redes {
    margin-bottom: 15px;
    text-align: center;
    justify-content: center;
  }

  .box1 {
    width: 345px;
  }

  .titulo{
    width: auto;
    padding: 10px;
    margin: 0px;
  }

  .sobre{
    padding: 20px 10px;
    text-align: center;
  }

  .page-contato{
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .navbar {
    margin-top: 20px;
    width: 100%;
  }

  .navbar h3 {
    margin: 0;
    line-height: 48px;
    padding-left: 10px;
    color: #FFF;
  }

  .navbar-header {
    background-color: #222;
    border: 1px solid #FFF;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
  }

  .navbar-button {
    float: right;
  }

  .icon-bar {
    background-color: #fff;
  }

  .menu {
    margin-top: 0;
  }

  .menu > li {
    display: block;
    background-image: none;
  }

  .menu > li > a {
    text-align: left;
    margin-right: 0;
    padding: 5px 15px;
    color: #222;
  }

  .navbar-menu {
    background-color: #FFF;
    border: 1px solid #000;
    border-radius: 5px;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }

  .navbar-collapse.collapse {
    display: none!important;
  }

  .navbar-collapse.collapse.in {
    display: block!important;
  }

  .collapsing {
    overflow: hidden!important;
  }
}

/* ------------------------------------------------------------
   Portrait tablets and small desktops
------------------------------------------------------------ */
@media (min-width: 768px) and (max-width: 991px) {

  .telefone-topo {
    display: none;
  }

  .chamadas {
    width: 720px;
  }
}

/* ------------------------------------------------------------
   Landscape phones and portrait tablets
------------------------------------------------------------ */
@media (max-width: 767px) {

  .aba-banner {
    display: none;
  }

  .area-banner {
    margin-bottom: 15px;
  }

  .area-chamadas {
    margin-top: -420px;
  }

  .chamadas {
    width: 470px;
  }

  .bem-vindo h2 {
    margin-right: 0;
    font-size: 20px;
    margin-top: 15px;
  }

  .footer .menu {
    display: none;
  }

  .footer {
    background-image: none;
  }

  .redes {
    margin-bottom: 15px;
    text-align: left;
  }

  .box1 {
    width: 345px;
    float: none;
    background-image: none;
    margin-bottom: 15px;
    width: 100%;
  }

  .box2 {
    float: none;
    padding-left: 0;
    width: 100%;
  }

  .footer2 {
    text-align: center;
  }

  .footer2 .text-right {
    text-align: center;
  }
}

/* ------------------------------------------------------------
   Landscape phones and smaller
------------------------------------------------------------ */
@media (max-width: 480px) {

  .chamadas {
    width: 220px;
  }

  .bem-vindo h2 {
    font-size: 17px;
  }

  .col-xs-6 {
    width: 100%;
  }

  .produto {
    text-align: center;
  }

  .produto img {
    display: inline-block;
  }

  .produto img::after {
    clear: both;
  }
}

/* /responsivo */
