@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300&display=swap');
:root {
  --primary: #f15a24;
  --secondary: #ff9f00;
  --tertiary: #ffed00;
  --quaternary: #ffa000;
  --hover: #c27900;
  --custom: #b93706;
}

*,
*:before,
*:after{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
*:hover{
  transition: .5s ease all;
}
body{
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-margin: 0;
  scroll-padding: 0;
}
li{
  list-style: none;
}
ul.list-checked li {
  margin-bottom: .5rem;
}
ul.list-checked li:before {
  content: '✓';
  margin-right: .4rem;
}
a{
  text-decoration: none;
}
a.animated-hover{
  display: inline-block;
  position: relative;
}
a.animated-hover::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #FFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
a.animated-hover:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
ul.nav-main a.animated-hover::after {
  bottom: 35%;
}
ul.nav-main li.nav-active a.animated-hover::after{
  background-color: var(--tertiary);
}
h1,h2,h3,h4,h5,h6{
  font-weight: 600;
}

h2{
  font-size: 2rem;
}

p{
  line-height: 1.6rem;
  font-size: .932rem;
}
.nowrap{
  white-space: nowrap;
}
.text-primary{
  color: var(--primary) !important;
}
.text-secondary{
  color: var(--secondary) !important;
}
.text-tertiary{
  color: var(--tertiary) !important;
}
.bg-primary{
  background-color: var(--primary) !important;
}
.bg-secondary{
  background-color: var(--secondary) !important;
}
.bg-tertiary{
  background-color: var(--tertiary) !important;
}
.bg-gray{
  background-color: #eaeaea;
}
.border-primary{
  border:1px solid var(--primary) !important;
  opacity: .5;
}
.border-secondary{
  border:1px solid var(--secondary) !important;
  opacity: .5;
}
.border-tertiary{
  border:1px solid var(--tertiary) !important;
  opacity: .5;
}
.btn-primary,
.btn-secondary,
.btn-tertiary
{
  border-radius: 0.1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5rem;
  padding: .2rem 1rem;
  border: none;
}
.btn-primary{
  background-color: var(--primary);
}
.btn-secondary{
  background-color: var(--secondary);
}
.btn-tertiary{
  background-color: var(--tertiary);
}
.btn-submit:hover{
  background-color: var(--hover) !important;
}
.btn-white{
  background-color: #fff;
  border-radius: 1rem;
  color: var(--primary);
  box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  padding: 0.4rem 1.9rem;
  margin: -.2rem 0 0 .7rem;
}
.btn-white:hover{
  background-color: var(--secondary);
  color: #FFF;
}
.btn-burger{
  border: none;
  appearance: none;
  position: relative;
  width: 40px;
  background: none;
  margin-right: 0.5rem;
}
.btn-burger::before,
.btn-burger::after{
  content: '';
  display: block;
  height: 5px;
  width: 25px;
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 4px;
}
.btn-burger:hover::before,
.btn-burger:hover::after{
  transform: scale(1.2);
  transition: .2s ease all;
}
.text-normal{
  text-transform: none;
}
.text-shadow{
  text-shadow: 3px 2px 5px rgba(0,0,0,.3);
}
.rounded-full{
  border-radius: 5rem;
}
.rounded-md{
  border-radius: 1rem;
}
.rounded-top-md{
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-bottom-md{
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.box-info-footer{
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.nav-main li{
  padding: 0 1rem;
  height: 100%;
  align-self: center;
}
.nav-main a{
  color: #FFF;
  text-transform: uppercase;
  font-size: 13px;
  height: 100%;
  padding-top: 2.3rem;
}
#planos{
  overflow: hidden;
  width: 100%;
}
#planos .carousel{
  padding-bottom: 3rem;
}
#planos .carousel-control-prev{
  left: -8rem;
}
#planos .carousel-control-next{
  right: -8rem;
}
.plan{
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
.plan,
.plan-body{
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.plan-description{
  min-height: 415px;
}
.plan-name{
  min-height: 75px;
}
.plan-description p{
  line-height: 2.5rem;
}
.location{
  position: absolute;
  top: -10px;
  right: 10%;
  width: 200px;
  z-index: 2;
}
.location button{
  background-color: var(--tertiary);
  color: var(--primary);
  border: none;
  text-transform: uppercase;
  padding: .4rem 3.5rem .4rem 1rem;
  white-space: nowrap;
  display: flex;
  text-align: center;
  box-shadow: 3px 4px 3px rgba(0,0,0,.02);
}
.location button span{
  font-weight: 600;
  font-size: 13px;
}
.location button:hover{
  background-color: #FFF;
}
i.icon-location{
  background: url('images/icons/location.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 20px;
  margin-right: 1.5rem;
}
i.icon-search{
  background: url('images/icons/search.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 20px;
}
i.icon-search-white{
  background: url('images/icons/search-white.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 30px;
}
i.icon-filter{
  background: url('images/icons/filter.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 30px;
}
i.icon-instagram,
i.icon-facebook{
  background-size: contain;
  display: inline-block;
  width: 40px;
  height: 40px;
}
i.icon-phone{
  background: url('images/icons/phone.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 30px;
}
i.icon-calendar{
  background: url('images/icons/calendar.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 90px;
  height: 30px;
  margin-right: 1.1rem;
}
i.icon-location-orange{
  background: url('images/icons/location-orange.png') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 30px;
}
i.icon-app{
  background: url('images/icons/app.jpg') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 90px;
  height: 30px;
}
i.icon-loading{
  background: url('images/icons/loading.jpg') no-repeat left top;
  background-size: contain;
  display: inline-block;
  width: 90px;
  height: 30px;
}
i.icon-facebook{
  width: 20px;
}
i.icon-instagram.icon-yellow{
  background: url('images/icons/instagram-yellow.png') no-repeat left top;
}
i.icon-facebook.icon-yellow{
  background: url('images/icons/facebook-yellow.png') no-repeat left top;
}
.border-r{
  border-right: 1px solid #AAA;
}
.btn-whatsapp{
  background: url('images/icons/whatsapp.png') no-repeat left top;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  text-indent: -9999px;
}
.icon-whatsapp-orange{
  display: inline-block;
  background: url('images/icons/whatsapp2.png') no-repeat left top;
  width: 60px;
  height: 60px;
}
ul.nav-main li.nav-active a{
  background-color: var(--tertiary);
  color: var(--primary);
  padding-left: .6rem;
  padding-right: .6rem;
}
#mainBanners,
#mainBanner{
  border-top: 10px solid var(--secondary);
  position: relative;
}
#mainBanners::before,
#mainBanner::before{
  content: '';
  position: absolute;
  z-index: 2;
  background: url('images/shadow-banner.png') repeat-x top center;
  height: 50px;
  background-size: auto;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: .8;
}
#mainBanner .caption{
  position: absolute;
  left: 15%;
  top: 20%;
  width: 400px;
}
#mainBanner .caption h2{
  font-weight: 700;
}

section#conheca{
  background: url('images/bg-1.jpg') no-repeat 20% center;
  background-size: contain;
  min-height: 600px;
}
section#porque{
  background: url('images/bg-2.jpg') no-repeat right center;
  background-size: contain;
  min-height: 600px;
}
section#vantagens{
  background: url('images/bg-3.jpg') no-repeat center bottom;
  min-height: 600px;
}
section#vantagens li{
  margin-bottom: 1rem;
  font-weight: 700;
}
section#familia-pethealth{
  background: url('images/bg-5.png') no-repeat 80% bottom;
  background-size: contain;
  min-height: 550px;
}
.intro{
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
}
.intro .bg-intro{
  position: relative;
  top: -2rem;
  z-index: 2;
}
.intro section#content-intro{
  position: relative;
  top: -8rem;
}
.city-intro-component{
  margin-top: -1rem;
  margin-left: 1rem;
}
input#input-intro,
.input-line input,
.select-line select{
  background: none;
  border: none;
  color: #FFF;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  display: block;
  width: 100%;
  padding: 0.7rem;
  font-size: 20px;
  margin-bottom: 10px;
}
input#input-intro::placeholder,
.input-line input::placeholder{
  color: rgba(255,255,255,.6);
}
.select-line select{
  padding: 0.85rem;
  min-width: 350px;
}
.input-line input:active,
.input-line input:focus{
  border-bottom-width: 2px !important;
}
.input-line input::placeholder{
  font-size: 20px;
}
.city-intro-component ul li{
  color: #FFF;
  font-size: 1.2rem;
  padding: 1rem;
  background-color: transparent;
  cursor: pointer;
}
.city-intro-component ul li:hover{
  background-color: var(--secondary);
  padding-left: 1.5rem;
}

.planos .plan-header h3{
  text-indent: -9999px;
  display: none;
}
.planos .plan-orange .btn:hover{
  background-color: var(--hover) !important;
}
.planos .plan-black .btn:hover{
  background-color: #333 !important;
}

.planos .plan-header{
  height:160px;
}
.planos .plan-header img{
  object-fit: contain;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.btn-toggle{
  appearance: none;
  background-color: transparent;
  border: none;
  color: var(--primary);
  font-size: 12px;
  float: right;
  margin: 0 1rem 1rem 0;
}
.btn-toggle strong{
  border: 1px solid var(--primary);
  padding: .5rem .7rem;
  margin-left: .5rem;
  font-weight: 400;
  font-size: 16px;
}
.btn-orange{
  background-color: var(--primary);
  border-radius: 1rem;
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  padding: .1rem 1rem;
  border: none;
}
.rounded-input{
  border-radius: 1rem;
  border: none;
  padding: .4rem 1rem;
  box-shadow: 5px 4px 5px rgba(0, 0, 0, 0.04);
  width: 100%;
  display: inline-block;
  color: var(--primary);
}
.rounded-input::placeholder{
  color: #666;
  font-size: 15px;
}
.input-with-arrow{
  display: block;
  width: 0; 
  height: 0; 
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 15px solid #FFF;
  position: absolute;
  bottom: -12px;
  right: 9px;
  z-index: 2;
}
.city-search .form-group{
  position: relative;
}
.city-search .form-group i{
  position: absolute;
  top: 8px;
  left: 9px;
}
.city-search .form-group input{
  padding-left: 2.2rem;
}
.city-search .result-box{
  border: 1px solid var(--primary);
}
.city-search .result-box i{
  margin-right: 0;
  position: relative;
  top: 3px;
  left: 4px;
}
.city-search .result-box p{
  font-weight: 500;
}
.city-search .result-box button:hover{
  background-color: var(--hover);
}
footer .header-bottom{
  border-top: 2px solid var(--tertiary);
  padding: 1rem 0;
}
footer .header-bottom p{
  font-size: 11px;
  font-weight: 600;
  line-height: .9rem;
  margin: 0;
}
footer .nav-footer a{
  color: #000;
  margin-bottom: .8rem;
  display: inline-block;
}
footer .nav-footer a.animated-hover::after {
  background-color: #000;
}
.btn-close{
  border: none;
  background-color: none;
  appearance: none;
  position: absolute;
  top: 3%;
  right: 7%;
}
.nav-mobile{
  position: fixed;
  background-color: var(--quaternary);
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.nav-mobile ul{
  padding: 2rem;
}
.nav-mobile button{
  margin-left: 2rem;
}
.nav-mobile ul.nav{
  display: block;
}
.nav-mobile li a{
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
img.img-fluid{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.whatsapp-box{
  border: 1px solid #FFF;
  border-radius: 1rem;
  padding: 1.3rem;
}
.btn-franquia{
  color: var(--primary);
  font-size: 20px;
  line-height: 1.5rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  width: 90%;
  letter-spacing: 2px;
  white-space: nowrap;
}
.btn-franquia i{
  width: 55px !important;
  height: 30px !important;
  background-size: 100%;
  margin: .2rem 0;
}
.bg-cute-dog{
  position: relative;
  z-index: 2;
}
.bg-cute-dog img{
  position: absolute;
  right: 0;
}
.box-precos{
  border: 2px solid #FFF;
  border-radius: 1rem;
  padding: .7rem 1.3rem;
  text-align: center;
  position: relative;
  left: -6%;
  z-index: 1;
}
.product.bg-secondary{
  width: 118%;
  margin-left: -9%;
}
.form{
  width: 80%;
}
.form-input{
  display: block;
  width: 100%;
  border: 1px solid var(--primary);
  margin-bottom: .5rem;
  padding: .7rem;
}
.form-input::placeholder{
  color: #888;
}
.form-submit{
  border: none;
  float: right;
  margin-top: 1rem;
  text-transform: capitalize;
  padding: .4rem 2.5rem;
}
.box-white{
  background-color: #fff;
}
section#redes h3.tit-main{
  border-bottom: 1px solid #CCC;
}
.clinica .row-toggle{
  display:none !important;
}
.clinica.active .row-toggle{
  display:flex !important;
}
.clinica .flex-grow-1{
  width: 80%;
}

section#redes .result{
  position: relative;
  max-height: 700px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  scrollbar-gutter: stable;
}
section#redes .shadow-gradient{
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45px;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(to bottom, rgba(255,159,0,0), rgb(255, 159, 0));
}
.result-text{
  align-items: self-end;
}
.result-text .print{
  border-bottom: 1px solid #333;
}
.result-text .btn-print:hover{
  background-color: var(--hover);
}
label.input-label{
  font-size: 10px;
  letter-spacing: 1px;
  margin-left: 1.8rem;
}

.disclaimer{
  position: fixed;
  top: 15%;
  left: 50%;
  margin-left: -35%;
  width: 70%;
  height: 70%;
  text-align: center;
  z-index: 999;
}
.disclaimer img{
  height: 100%;
  width: auto;
  object-fit: contain;
  box-shadow: 5px 4px 6px rgba(0,0,0,0.5);
  border-radius: 2rem;
  border: 2px solid var(--tertiary);
}
.disclaimer button{
  position: absolute;
  z-index: 99999;
  right: 18%;
  top: 2%;
  z-index: 999999;
}
.input-yellow{
  background-color: var(--tertiary);
  border: 1px solid var(--primary);
  padding: .5rem .7rem;
  width: 100%;
}
.input-yellow::placeholder{
  color: var(--primary);
}
select.input-yellow{
  padding: .62rem !important;
}
.form-row{
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.form-row .form-group,
.form-col{
  flex: 1;
}
.form-row .form-group label{
  white-space: nowrap;
}
.form-row .form-group.form-col-md{
  width: 66%;
  flex: 1 content;
}
.form-row .form-group.form-col-sm{
  width: 20%;
  flex: unset;
}
.form-row .form-group.form-col-xs{
  width: 13%;
  flex: unset;
}
.alert-success{
  background-color: #fff;
  color: var(--primary);
  border:2px solid var(--primary);
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1.5rem;
  margin-bottom: 2.3rem;
}
.seja-credenciado-form .caption{
  width: 430px !important;
}
.form-checkbox{
  display: flex;
  margin-bottom: 1rem;
}
input[type=checkbox]{
  appearance: none;
  background-color: var(--tertiary);
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  margin-right: .75rem;
}
input[type=checkbox]:checked {
  border: 1px solid #41B883;
  background-color: #32CD32;
  position: relative;
}
input[type=checkbox]:checked::before {
  content: '\2713';
  font-size: 30px;
  display: block;
  text-align: center;
  color: #FFF;
  position: absolute;
  left: 4px;
  top: -10px;
}
.box-warning{
  background-color: var(--tertiary);
  border: 1px solid var(--primary);
  padding: 1.6rem;
}
.box-warning-absolute{
  position: absolute;
  bottom: 5%;
  left: 50%;
  margin-left: -35%;
  right: 0;
  width: 70%;
}
.box-price{
  background: url('images/desconto.png') no-repeat right bottom;
  background-size: auto;
}
.box-price .text{
  width: 50%;
}
.box-price h2,
.box-price h3,
.box-price p,
.box-price span.new-price{
  color: #FFF;
}
.box-price h2{
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 0.3rem;
}
.box-price h3{
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
}
.box-price span.old-price{
  color: var(--custom);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
}
.box-price span.new-price{
  font-weight: 700;
  font-size: 1.7rem;
  display: block;
}
.box-price p{
  line-height: 1.3rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.box-oferta{
  background-color: #f15a24;
  max-width: 350px;
  flex: 1;
  margin-left: 1rem;
  padding: 2rem 0;
}
.box-oferta strong{
  display: block;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.box-oferta .time{
  display: block;
  text-align: center;
  background-color: var(--custom);
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  padding: .5rem 0;
}
.box-oferta button{
  background-color: #FFF;
  border-radius: 0;
  color: var(--custom);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 2rem auto 0 auto;
  display: block;
  padding: .4rem 2rem;
}
p.text-ad{
  font-size: 12px;
  color: #898989;
  line-height: 1rem;
  font-weight: 500;
}
section#plano-tabela h2{
  background-color: var(--secondary);
  color: var(--custom);
  border-radius:1rem;
  padding: .5rem 2rem;
  font-size: 16px;
  letter-spacing: 16px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
}
section#plano-tabela h3{
  color: var(--primary);
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
}
section#plano-tabela span.date{
  font-weight: 500;
}
section#plano-tabela .image{
  background: url('images/table-plano.png') no-repeat right bottom;
  width: 558px;
  height: 150px;
  flex: 1 1 auto;
  margin-top: 3rem;
}
table.custom-table{
  margin: -0.75rem 0 2rem 0;
  width: 100%;
  border-collapse:separate; 
  border-spacing: 0 .72rem;
}

table.custom-table th{
  background-color: var(--secondary);
  font-weight: 700;
  color: #000;
  padding: .5rem 2rem;
  font-size: 1rem;
}
table.custom-table th:first-child,
table.custom-table tr td:first-child{
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  border-right: 1px solid #000;
}
table.custom-table th:last-child,
table.custom-table tr td:last-child{
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-left: 1px solid #000;
}
table.custom-table td{
  font-weight: 500;
  color: #000;
  padding: .5rem 2rem;
  font-size: 1rem;
}
table.custom-table tr td{
  padding: 0.2rem 1rem;
}
table.custom-table tr:nth-child(odd) td{
  background-color: #dcdcdc;
}
table.custom-table tr.table-tr-title td{
  background-color: var(--custom);
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 14px;
  padding: 0.3rem 1rem;
}