/* ########################################################## */
/* reset all */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, a, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;}
article, aside, figure, footer, header, hgroup, nav, section {display:block;outline:none;}
ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
del {text-decoration:line-through;}
abbr[title], dfn[title] {border-bottom:1px dotted #000; cursor:help;}
table {border-collapse:collapse; border-spacing:0; font-size:inherit; font:100%;}
th {font-weight:bold; vertical-align:bottom;}
td {font-weight:normal; vertical-align:middle;}
hr {display:block; height:1px; border:0; border-top:1px solid #CCC; margin:10px 0; padding:0;}
input, select {vertical-align:middle; -webkit-font-smoothing:antialiased;}
pre {white-space:pre; white-space:pre-wrap; white-space:pre-line; word-wrap:break-word;}
input[type="radio"] {vertical-align:text-bottom;}
input[type="checkbox"] {vertical-align:bottom; }
input:focus, textarea:focus{outline:0;}
a:hover, a:active {outline:0;}
small {font-size:85%;}
strong, th {font-weight:bold;}
td, td img {vertical-align:top;}
sub, sup {font-size:75%; line-height:0; position:relative;}
sup {top:-0.5em;}
sub {bottom:-0.25em;}
pre, code, kbd, samp {font-family: monospace, sans-serif;}
.clickable, label, input[type=button], input[type=submit], button {cursor:pointer;}
body, select, input, textarea {color:#808080; -webkit-font-smoothing:antialiased;}
button, input, select, textarea {margin:0; resize:none;}
button {width:auto; overflow:visible;} 
ins {background:#FCD700; color:#000; text-decoration:none;}
mark {background:#FCD700; color:#000; font-style:italic; font-weight:bold;}
*{-moz-box-sizing: border-box; box-sizing: border-box;  -webkit-box-sizing: border-box; box-sizing: border-box;}
object { display: none; }
/* ########################################################## */
/* common */
body {
  font-family: 'Poppins',sans-serif;
  /*background:#37B4C8;*/
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 15px;

}
.transition{
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.img_responsive {
  width: 100%;
  height: auto;
}


/* ########################################################## */
#modalbg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
}

#modalsystem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  max-width: 700px;
  height: auto;
  min-height: 330px;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  background: #fff;
  z-index: 999;
  padding: 34px;
}

#modalsystem .icon_close_modal {
  position: absolute;
  top:34px;
  right: 34px;
  cursor: pointer;
  border-radius: 4px;
  background: #fff;
}

#modalsystem .icon_close_modal {
  width: 32px;
  height: 32px;
}

#modalsystem .icon_close_modal:hover {
  background: #efefef;
}

#modalsystem .modal_title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: calc(1.2rem + 0.3vw);
  line-height: 36px;
  color: #51B7C7;
  padding-bottom: 24px;
  text-align: center;
}

#modalsystem .modal_content {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: calc(0.6rem + 0.3vw);
  line-height: 120%;
  text-align: justify;
  color: #747474;
  text-align: justify;
}

#modalsystem .programy {
  margin: 24px 0 0 0;
}

#modalsystem .bt_programar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 50%;
  max-width: 350px;
  height: 50px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin: 40px 0 0 0;
}

#modalsystem .bt_programar:hover {
  background: #a92e27;
}


/* ########################################################## */
/* animations */

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
/* ########################################################## */
#header_whitebar {
  background: #fff;
  padding: 10px 0;
}

#header_whitebar div {
  color: #1d1d1d;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#header_whitebar span {
  font-weight: 700;
  color: #37B4C8;
}

#header_whitebar a {
  text-decoration: none;
}

#header_whitebar a:hover {
  text-decoration: underline;
  color: #37B4C8;
}

.hw_submenu {
  color: #000;
  text-decoration: none;
}


.barra_topo_group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}



.hw_submenu_group {
  display: flex;
  gap:15px;
}
/* ########################################################## */


.mobnav {
  display: flex;
  position: relative;
  right: 0px;
  z-index: 999;
  width: 100%;
  margin: auto;
  height: 100px;
  justify-content: start;
  align-items: center;
}

.navmy_hr {
  display: block !important;
  height: 1px;
  width: 100%;
  background: #eee;
  margin: auto;
  z-index: 9999;
  position: relative;
}

#mobile_menu ul {
  padding: 0;
  margin: 0;
  width: 100%;
}

.groupmenu  {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
    width: 100vw;
   height: 100vh;
   background: #fff;
   display: flex;
   flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 115px 0 0 25px;
}
.groupmenu  ul li {
  list-style-type: none;
  padding: 32px 0;
  font-family: 'Poppins', sans-serif;

  padding: 12px 0 !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.groupmenu  a {
  text-decoration: none;
  /* Página Inicial */
  font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 28px;
line-height: 100%;
color: #51b7c7;


}

.groupmenu a:hover {
  color: #D63E36;
}

.mobmenu_hr {
  display: block !important;
  height: 1px;
  width: 100%;
  background: #003764;
  margin: auto;
}



/* ################## BUTTON HAMBURGER START */
#menuToggle
{
    position: absolute;
    top: 40px;
    right: 20px;
}

#menuToggle a
{
  text-decoration: none;
  font-family: 'Montserrat-Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #D63E36;
}

#mobile_menu .navactive
{
  color: #D63E36;
  cursor: default;
}

.hw_submenu_group .navactive {
  text-decoration: underline !important;
  color: #37B4C8;
}

#menuToggle input
{
  display: block;
  width: 46px;
  height: 40px;
  position: absolute;
  top: -7px;
  left: -3px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 7px;
  position: relative;
  
  background: #37B4C8;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-10px, -21px);
  background: #37B4C8;
}


/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(-4px, 15px);
}


/* ################## BUTTON HAMBURGER END */


#menu_desk {
  width: 100%;
  height: 100px;
  position: sticky;
  top:0;
  border-bottom: 1px solid #eeeeee;
}

#menu_mob {
  display: none;
}



.menu_desk_group {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.menu_cian {
  background: #37B4C8;
}

.menu_white {
  background: #fff;
  -webkit-box-shadow: 0px 25px 22px -34px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 25px 22px -34px rgba(0,0,0,0.3);
  box-shadow: 0px 25px 22px -34px rgba(0,0,0,0.3);
}

.menu_white2 {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo_topo {
  background: url(../imagens/logos/logo_as.svg) no-repeat center center;
  width: 170px;
  height: 50px;
}

.ft_logo_as {
  background: url(../imagens/logos/logo_as.svg) no-repeat center center;
  width: 165px;
  height: 47px;
  background-size:contain;
}

.menu_cian .menu_desk_logo {
  background: url(../imagens/logos/logo_as_white.svg) no-repeat center center;
  width: 170px;
  height: 50px;
}

.menu_white .menu_desk_logo {
  background: url(../imagens/logos/logo_as.svg) no-repeat center center;
  width: 170px;
  height: 50px;
}

.menu_desk_links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:15px;
}

.menu_cian .menu_desk_links a {
  color:#fff;
  text-decoration: none;
}

.menu_cian .menu_desk_links a:hover, .menu_cian .menu_desk_links .navactive {
  text-decoration: underline;
}

.menu_white .menu_desk_links a {
  color:#37B4C8;
  text-decoration: none;
}

.menu_white .menu_desk_links a:hover, .menu_white .menu_desk_links .navactive {
  text-decoration: underline;
}

.menu_desk_cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:15px;
}



.menu_cian .menu_desk_cta .bt_hable {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 208px;
  height: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.menu_cian .menu_desk_cta .bt_hable:hover, .menu_cian .menu_desk_cta .navactive  {
  color: #37B4C8;
  background: #fff;
}


.menu_white .menu_desk_cta .bt_hable {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 208px;
  height: 40px;
  border: 1px solid #37B4C8;
  border-radius: 8px;
  color: #37B4C8;
  text-decoration: none;
}

.menu_white .menu_desk_cta .bt_hable:hover, .menu_white .menu_desk_cta .navactive {
  color: #fff;
  background: #37B4C8;
}


.bt_agenda {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 8px 24px;
  gap: 10px;
  width: 169px;
  height: 40px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
}

.bt_agenda:hover {
  background: #a92e27;
}






.bt_agenda_mob {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  gap: 10px;
  height: 40px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 24px !important;
  line-height: 24px;
  color: #FFFFFF !important;
  text-decoration: none;
  width: calc(100% - 25px);
  margin: 15px 0;
}

.bt_agenda_mob:hover {
  background: #a92e27;
}

.menu_cian .menu_desk_cta .bt_hable:hover {
  color: #37B4C8;
  background: #fff;
}


.bt_hable_mob {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  height: 40px;
  border: 1px solid #37B4C8;
  border-radius: 8px;
  color: #37B4C8;
  text-decoration: none;
  width: calc(100% - 25px);
  margin: 50px 0 15px 0;
  font-weight: 700;
  font-size: 24px !important;
}

.bt_hable_mob:hover, .bt_hable_mob .navactive  {
  color: #fff;
  background: #37B4C8;
  cursor: pointer;
}

/* ------------------------------------------------------------------- */

#myfooter .zap {
  display: block;
  position: fixed;
  bottom: 250px;
  right: 20px;
  z-index: 5;
}

.zapicon {
  width: 64px;
  height: 64px;
}

#myfooter {
  background: #fff;
  width: 100%;
  height: auto;
  padding: 20px 0;
}

#myfooter .navactive {
  text-decoration: underline !important;
}

.ft_group_1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}
.ft_group_2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:15px;
}

.ft_group_3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:4px;
  color: #eee ;
}

.ft_group_4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:4px;
  padding:0 0 20px 0;
}
.ft_group_5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 0 0;
  width: calc(100% - 25px);
}

.ft_group_5 .rs_instagram, .ft_group_5 .rs_facebook, .ft_group_5 .rs_linkedin {
  width: 50px !important;
  height: 50px !important;
}

.gotcha {
  width: 95px;
  height: auto;
  margin:auto;
  padding-top:40px;
}



.ft_txt_titulo {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  color: #1D1D1D;
}

.ft_txt_subtitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #1D1D1D;
}

.ft_txt_cinza {
  color: #7E8691;
}

.ft_bt_telefono {
  font-family: 'Poppins',sans-serif;
  font-size: 100% !important;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 208px;
  height: 40px;
  border: 1px solid #37B4C8;
  border-radius: 8px;
  color: #37B4C8;
  text-decoration: none !important;
}

.ft_bt_telefono:hover {
  color: #FFF !important;
  background: #37B4C8;
}

.ft_icon_cartoes {
  background: url(../imagens/icones/cartoes_master_visa_american.svg) no-repeat center center;
  width: 160px;
  height: 28px;
  background-size:contain;
}

.ftmy_hr {
  display: block !important;
  height: 1px;
  width: 100%;
  background: #eee;
  margin: 20px auto;
}

#myfooter a {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 13px;
line-height: 20px;
display: flex;
align-items: center;
color: #51B7C7;
text-decoration: none;
}

#myfooter a:hover {
  text-decoration: underline;
}

.rs_instagram {
  background: url(../imagens/icones/rs_instagram.svg) no-repeat center center;
  width: 32px;
  height: 32px;
  background-size:contain;
}

.rs_facebook {
  background: url(../imagens/icones/rs_facebook.svg) no-repeat center center;
  width: 32px;
  height: 32px;
  background-size:contain;
}

.rs_linkedin {
  background: url(../imagens/icones/rs_linkedin.svg) no-repeat center center;
  width: 32px;
  height: 32px;
  background-size:contain;
}

.ft_bt_rs {
  filter: grayscale(1);
}

.ft_bt_rs:hover {
  filter: grayscale(0);
  scale:1.05;
}
/* ------------------------------------------------------------------- */
/* HOME */

#home_banner {
  padding: 60px 0 0 0;
  background:#37B4C8;

}

.home_banner_group {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: start;
  gap:40px;
}




.home_banner_text_group {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  gap: 20px;

}

.home_banner_titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #FFFFFF;
}

.home_banner_subtitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
}

.home_banner_img {
  max-width: 695px;
  min-width: 320px;
}

.home_banner_preco_widget_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap:14px;
}

.hb_main {
  padding-top: 0 !important;
}

.home_banner_preco_group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap:14px;
  padding-top: 40px;
}

.home_banner_preco_group .widget {
  box-sizing: border-box;
  width: 100%;
  max-width: 210px;
  height: 102px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding:10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.home_banner_preco_group .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}

.home_banner_preco_group .widget_titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #37B4C8;
  padding-bottom: 7px;
}

.home_banner_preco_group .widget_din {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #37B4C8;
}

.home_banner_preco_group .widget_din span {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #37B4C8;
  padding-left:5px;
}

.home_banner_preco_group .apartir {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #37B4C8;
}

.home_banner_preco_group .apartir span {
    visibility: hidden;
}

.home_banner_preco_group .bt_agenda {
  max-width: 434px;
  width: 100%;
  justify-content: center;
}

.home_banner_preco_group .todostop {
  padding-top: 24px;
}

.home_banner_preco_group .todos {
  background: url(../imagens/logos/ips_todos.svg) no-repeat center center;
  width: 121px;
  height: 51px;
}

.home_banner_preco_group .todostop .titulo,
.home_banner_preco_group .todostop .widget_titulo,
.home_banner_preco_group .todostop .widget_din,
.home_banner_preco_group .todostop .widget_din span,
.home_banner_preco_group.todostop .apartir,
.home_banner_preco_group.todostop .apartir span {
  color: #00A988 !important;
}

.home_banner_preco_group .todostop .bt_agenda {
  background: #00A988 !important;
}
.home_banner_preco_group .todostop .bt_agenda:hover {
  color: #00A988 !important;
  background: #fff !important;
}

#home_banner .masterbar {
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #2F8F9F 50%, #1E5B66 50%);
  margin:60px 0 0 0;
}

#home_banner .barra {
  display: flex;
  flex-direction: row;
  color:#fff;
  max-width: 1280px;
  margin: auto;
}
#home_banner .barra .slick-prev {
  left: 10px;
  z-index: 999;
}
#home_banner .barra .slick-next {
  right: 10px;
  z-index: 999;
}

#home_banner .barra .bar1 {
  background: #2F8F9F;
  flex:2;
  padding:20px 0;
  justify-content: left;
  align-items: start;
}

#home_banner .barra .bar2 {
  background: #26727F;
  flex:2;
  padding:20px 0;
  justify-content: center;
  align-items: start;
}
#home_banner .barra .bar3 {
  background: #1E5B66;
  flex:2;
  padding:20px 0;
  justify-content: right;
  align-items: start;
}

#home_banner .barra .barra_item {
  display: flex;
  flex-direction: row;
}

#home_banner .barra .group {
  max-width: 400px;
  padding: 0 10px;
}


#home_banner .barra .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 5px 0;
}

#home_banner .barra .subtitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 5px 0;
}

#home_especialidades {
  background: #F8F8F8;
  height: auto;
  width: 100%;
  padding: 60px 0;
}

#home_especialidades .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  text-align: center;
}

#home_especialidades .group_master {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap:30px;
  margin: auto;
  padding: 60px 0;
}
#home_especialidades .group_item {
  width: 100%;
  max-width: 290px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}

#home_especialidades .group_item .item_img {
  width: 100%;
  max-width: 290px;
  height: auto;
  border-radius: 10px;
}

#home_especialidades .group_item .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #37B4C8;
  text-align: center;
  padding: 5px 0 20px 0;
}

#home_especialidades .group_item .bt_agenda {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  gap: 10px;
  width: 90%;
  height: 40px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
  margin: auto;
  color: #D53E36;
  border: 1px solid #D53E36;
  background: #fff;
}

#home_especialidades .group_item .bt_agenda:hover {
  background: #D53E36;
  color:#fff;
}


.bt_espec {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  gap: 10px;
  width: 300px;
  height: 40px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin: auto;
}

.bt_espec:hover {
  background: #a92e27;
}

/* ------------------------------------------------------------------- */

#home_quienes {
  background: #fff;
  padding: 60px 0 100px 0;
}

#home_quienes .groupme {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  width: 100%;
  gap:40px;
}
#home_quienes .group_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 510px;
  gap:35px;
  padding: 12px 0 0 0;
}

#home_quienes .groupme .img_quienes {
  max-width: 654px;
}

#home_quienes .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #37B4C8;
}

#home_quienes .group_text .text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1D;
}
#home_quienes .group_text .text p:not(:last-child) {
  padding-bottom: 20px;
}
#home_quienes .group_text .text span {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1D;
}

.bt_masinfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  gap: 10px;
  width: 100%;
  height: 45px;
  background: #fff;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #D53E36;
  border: 1px solid #D53E36;
  text-decoration: none;
  margin: auto;
  margin-top:17px;
}

.bt_masinfo:hover {
  background: #D53E36;
  color: #fff;
}

/* ------------------------------------------------------------------- */
#med_odonto_exam {
  background: #fff;
  padding: 60px 0;
}

#med_odonto_exam .groupme {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap:27px;
}

#med_odonto_exam .group_master {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap:30px;
  margin: auto;
  padding: 60px 0;
  flex-wrap: wrap;
}

#med_odonto_exam .group_item {
  width: 100%;
  /*max-width: 290px;*/
  max-width: 396px;
  height: 463px;
  background: #51B7C7;
  border-radius: 10px;
  padding:22px;
  /*flex: 25%;*/
}

#med_odonto_exam .group_item .icon_img {
  width: 44px;
  height: 44px;
}

#med_odonto_exam .group_item .titulo_item {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 14px 0 0 0;
}

#med_odonto_exam .group_item .txt_precios {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 24px 0 0 0;
}


#med_odonto_exam .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #37B4C8;
  margin: auto;
  padding-bottom: 10px;
}

#med_odonto_exam .sutitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1D1D1D;
  margin: auto;
  /*padding: 0 0 60px 0;*/
}

#med_odonto_exam .sutitulo span {
  visibility: hidden;
}

#med_odonto_exam .hideme {
  visibility: hidden;
}

#med_odonto_exam .group_item .widget_ipstodos {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 256px;
  height: 57px;
  background: #0CABBE;
  border-radius: 10px;
  margin: 24px 0;
  padding:14px;
}

#med_odonto_exam .group_item .widget_ipstodos .valor {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 24px;
  text-align: right;
  color: #FFFFFF;
}

#med_odonto_exam .group_item .widget_ipstodos .valor span {
  font-size: 16px;
}

#med_odonto_exam .group_item .icon_ipstodos {
  width: 89px;
  height: 29px;
}

#med_odonto_exam .group_item .valorparticular {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 0 0 24px 0;
}

#med_odonto_exam .group_item .valorparticular span {
  visibility: hidden;
}
#med_odonto_exam .group_item .txt_link {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-decoration-line: underline;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  cursor:pointer;
  width: 142px;
  text-decoration: none;
}

#med_odonto_exam .group_item .txt_link:hover {
  text-decoration: underline;
}

#med_odonto_exam .group_item .bt_agenda_cita {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  gap: 10px;
  width: 100%;
  height: 40px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 0 24px 0;
}

#med_odonto_exam .group_item .bt_agenda_cita:hover {
  background: #a92e27;
}

/* ------------------------------------------------------------------- */
#institucional_topo {
  background: #37B4C8;
  padding: 60px 0;
}

#institucional_topo .group_master {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:40px;
}
#institucional_topo .group_text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-width: 620px;
  width: 100%;
}

#institucional_topo .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 0 0 60px 0;
}

#institucional_topo .group_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  padding: 0 0 30px 0;
}

#institucional_topo .group_text p span {
  font-weight: 700;
}

#institucional_topo .img_topo {
  max-width: 620px;
  min-width: 320px;
}

/* ------------------------------------------------------------------- */
#institucional_amorcuidado {
  background: #fff;
  padding: 60px 0;
}
#institucional_amorcuidado .group_master {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#institucional_amorcuidado .group_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 600px;
  width: 100%;
}

#institucional_amorcuidado .titulo1 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  text-align: center;
  padding-bottom: 60px;
}

#institucional_amorcuidado .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  padding-bottom: 20px;
}

#institucional_amorcuidado .img_armorcuidado {
  max-width: 620px;
  min-width: 320px;
  border-radius: 30px;
}

#institucional_amorcuidado .group_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
  padding: 0 0 30px 0;
}

#institucional_amorcuidado .group_text p span {
  font-weight: 700;
}
/* ------------------------------------------------------------------- */

#institucional_proposito {
  background: #fff;
}

#institucional_proposito .group_master {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap:60px;
}

#institucional_proposito .group_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 575px;
  width: 100%;
}

#institucional_proposito .list_itens ul {
  padding:0;
}
#institucional_proposito .list_itens li {
  padding: 0 0 0.5em 1.5em;
  text-indent:0.4em;
  font-weight:bold;
  list-style:none;
  background-repeat:no-repeat;
  background-image:url('/imagens/icones/institucional_proposito_item_tick.svg');
  margin-bottom: 16px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #1C1C1C;
}

#institucional_proposito .img_armorcuidado {
  max-width: 620px;
  min-width: 320px;
  border-radius: 30px;
}

#institucional_proposito .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  padding-bottom: 20px;
}

#institucional_proposito .group_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
  padding: 0 0 30px 0;
}

#institucional_proposito .group_text p span {
  font-weight: 700;
}
/* ------------------------------------------------------------------- */
#institucional_ipstodos {
  background: #fff;
  padding: 60px 0;
}

#institucional_ipstodos .group_master {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap:80px;
}

#institucional_ipstodos .group_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 600px;
  width: 100%;
}

#institucional_ipstodos .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  padding-bottom: 20px;
}

#institucional_ipstodos .img_armorcuidado {
  max-width: 620px;
  min-width: 320px;
  border-radius: 30px;
}

#institucional_ipstodos .group_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
  padding: 0 0 30px 0;
}

#institucional_ipstodos .group_text p span {
  font-weight: 700;
}


.bt_ipstodos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  gap: 10px;
  width: 100%;
  height: 48px;
  border: 1px solid #D53E36;
  border-radius: 10px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #D73834;
  text-decoration: none !important;
}

.bt_ipstodos:hover {
  color: #FFF !important;
  background: #D53E36;
}

/* ------------------------------------------------------------------- */
#politica {
  padding:60px 0;
  background: #fff;
}

#politica .group_master {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: start;
  width: 100%;
  gap:40px;
}

/*MENU ESQ*/
#politica .group_master .menu {
  min-width: 400px;
}
#politica .group_master .menu a, #politica .group_master .menu li {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-decoration-line: none;
  color: #1C1D22;
  text-align: justify;
}
#politica .group_master .menu li {
  padding: 5px 0 5px 10px;
}
#politica .group_master .menu a:hover {
  text-decoration: underline;
}
/*MENU ESQ*/

#politica .toptitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #37B4C8;
  padding-bottom: 60px;
}

#politica .itens p, #politica .itens a, #politica .group_master li {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #1C1D22;
  text-decoration: none;
}

#politica .itens a:hover {
  text-decoration: underline;
}

#politica .itens .one {
  margin-bottom:  50px;
}

#politica .itens p ~ .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1C1D22;
  padding:20px 0;
}

#politica .itens p {
  text-align: justify;
}
#politica .group_master li {
  padding:5px 0;
  text-align: justify;
}
#politica .group_master li span {
  font-weight: 700;
}

#politica .itens ul {
  list-style:disc;
  margin-left: 30px;
  padding: 8px 0;
}
/* ------------------------------------------------------------------- */

#documentos_legales {
  padding:60px 0;
  background: #fff;
}

#documentos_legales .mastertitulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin: auto;
  text-align: center;
  color: #37B4C8;
}

#documentos_legales .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 120%;
  text-align: left;
  color: #D63E36;
  padding:60px 0 0 0;
}

#documentos_legales .titulo_ano {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  background: #37B4C8;
  color:#fff;
  border-radius: 16px;
  width: 90px;
  padding:5px;
  margin: 60px 0;
}

#documentos_legales .titulo_item {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #37B4C8;
  padding:30px 0 15px 15px;
}

#documentos_legales .subtitulo_item {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #1C1D22;
  margin:30px 0 0 15px;
}

#documentos_legales .link_itens {
  width: 210px;
  height: 170px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding:12px;
  border-radius: 16px;
  border: 1px solid #1C1D22;
  margin:20px;
  color: #929292;
  text-decoration: none;
  text-align: center;
}

#documentos_legales .link_itens:hover  {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #37B4C8;
  color: #37B4C8;
}

#documentos_legales .group_master {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

#documentos_legales .group_itens {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
}

#documentos_legales .titulo_file {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

#documentos_legales .filetype {
  width: 45px;
  height: auto;
}

/* ------------------------------------------------------------------- */



/* ------------------------------------------------------------------- */
#trabaja-con-nosotros {
  background: #fff;
  padding: 60px 0;
}
#trabaja-con-nosotros .group_master {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: start;
}

#trabaja-con-nosotros .group_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 600px;
  width: 100%;
}

#trabaja-con-nosotros .titulo1 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #37B4C8;
  text-align: center;
  padding-bottom: 60px;
}

#trabaja-con-nosotros .group_text .titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #37B4C8;
  padding-bottom: 20px;
}

#trabaja-con-nosotros .formulario {
  box-sizing: border-box;
  min-width: 510px;
  height: auto;
  padding:40px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

#trabaja-con-nosotros .group_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #1D1D1D;
}

#trabaja-con-nosotros .group_text .titulo_low {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #1D1D1D;
  margin-top: 40px;
}

#trabaja-con-nosotros .group_text .titulo_low_nobold, #trabaja-con-nosotros .group_text .titulo_low_nobold a  {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #1D1D1D;
  text-decoration: none;
}

#trabaja-con-nosotros .group_text .titulo_low_nobold a:hover {
  text-decoration: underline;
}

#trabaja-con-nosotros .topp {
  padding-top: 20px;
}

#trabaja-con-nosotros .ft_bt_telefono {
  font-family: 'Poppins',sans-serif;
  font-size: 100% !important;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 208px;
  height: 40px;
  background: #37B4C8;
  border-radius: 8px;
  color:#fff;
  text-decoration: none !important;
  margin: 10px 0 30px 0;
}

#trabaja-con-nosotros .ft_bt_telefono:hover {
  color: #37B4C8 !important;
  background: #fff;
  border: 1px solid #37B4C8;
}

#trabaja-con-nosotros .formulario .form_titulo {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #1D1D1D;
  padding-bottom: 4px;
}

#trabaja-con-nosotros .formulario .inptext {
  background: #FCF8EF;
  border-radius: 10px;
  height: 52px;
  width: 100%;
  padding:20px;
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #929292;
  margin-bottom: 20px;
  border-color: transparent;

}
#todos_us_eu_aceito_receber_notificacoes_e_contato_via_e_mail_ou_telefone, #todos_us_eu_aceito_a_politica_de_privacidade {
  accent-color: #37B4C8;
}
#trabaja-con-nosotros .formulario .mycheckbox {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #1D1D1D;
  margin-left: 10px;
  padding: 5px 0;
}

#trabaja-con-nosotros .formulario .groupcheck {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

#trabaja-con-nosotros .formulario textarea {
  background: #FCF8EF;
  border-radius: 10px;
  height: auto;
  width: 100%;
  padding:20px;
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #929292;
  margin-bottom: 20px;
  border-color: transparent;
}

#trabaja-con-nosotros .formulario .bt_enviar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: 100%;
  height: 40px;
  background: #D53E36;
  border-radius: 8px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin-top:25px auto;
  border-color: transparent;
  text-align: center;
  margin-top: 20px;
}

#trabaja-con-nosotros .formulario .bt_enviar:hover {
  background: #a92e27;
}

#trabaja-con-nosotros #form {
  width: 100%;
  max-width: 600px;
}
/* ------------------------------------------------------------------- */
/* media */

@media only screen and (max-width: 1280px) {
  #home_banner .barra .bar1, #home_banner .barra .bar2, #home_banner .barra .bar3 {
    justify-content: center;
  }
  #med_odonto_exam .group_master {
    flex-basis: 100%;
  }
  #med_odonto_exam .group_item {
    max-width: 396px;
  }
}
@media only screen and (max-width: 1278px) {
  #med_odonto_exam .group_master {
    justify-content: center;
  }
}
@media only screen and (max-width: 1070px) {
  .barra_topo_group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media only screen and (max-width: 1050px) {
  .home_banner_group {
    flex-direction: column-reverse;
    justify-content: center !important;
    align-items: center !important;
  }
  .home_banner_img {
    max-width: 60% !important;
  }
  .home_banner_preco_group {
    width: 100%;
  }
  .home_banner_preco_group .todostop {
    padding-top: 45px !important;
  }
  .home_banner_preco_group .bt_agenda {
    max-width: 100% !important;
  }
  .home_banner_preco_group .widget {
    min-width: 210px;
    max-width: 100% !important;
  }
  #institucional_topo .group_master {
    flex-direction: column-reverse;
  }
  #institucional_topo .group_text {
    min-width: unset !important;
    max-width: 620px;
  }
  #institucional_amorcuidado .group_master {
    flex-direction: column-reverse;
  }
  #institucional_proposito .group_master {
    flex-direction: column;
    align-items: center;
  }
  #institucional_ipstodos .group_master {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
@media only screen and (max-width: 959px) {
  #home_especialidades .group_master {
    flex-wrap: wrap;
  }
  #home_especialidades .group_item {
    max-width: 350px;
  }
  #home_especialidades .group_item .item_img {
    max-width: 100%;
  }
  #home_quienes .groupme {
    flex-direction: column;
    align-items: center;
  }
  #home_quienes .group_text {
    max-width: 535px !important;
  }
  #home_quienes .group_text .titulo {
    margin: auto;
  }

  #modalsystem {
    width: 95%;
  }
  #institucional_amorcuidado {
    padding: 60px 0 0 0;
  }
  #institucional_amorcuidado .img_armorcuidado {
    padding-bottom: 60px;
  }

  #trabaja-con-nosotros .group_master {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  #trabaja-con-nosotros .formulario {
    min-width: unset;
  }

}
@media only screen and (max-width: 930px) {

  #menu_desk {
    height: 150px;
    display: flex;

  }
  .menu_desk_cta {
    flex-direction: column-reverse;
  }

  #home_banner .barra {
    flex-direction: column;
  }
  #home_banner .barra .group {
    width: 400px;
  }

  #home_banner .masterbar {
    background: transparent;
  }
  #home_banner .barra .barra_item {
    min-height: 120px;
    height: auto;
  }
}

@media only screen and (max-width: 860px) {
  .ft_group_1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap:30px;
  }
  .ft_group_4 {
    gap: 12px;
  }
  .ft_gap12 {
    gap:12px !important;
  }

  .ft_center {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .ft_go100 {
    width: 100% !important;
  }

  .ft_bt_telefono {
    width: 100% !important;
    padding: 24px 24px !important;
  }

  .rs_instagram, .rs_facebook, .rs_linkedin {
    width: 50px !important;
    height: 50px !important;
  }

}

@media only screen and (max-width: 768px) {
  #menu_desk { display:none !important; }
  
  #menu_mob {
    display: block !important;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  #home_especialidades .group_item{
    max-width: 80%;
  }
  .bt_espec {
    width: 80%;
    height: 60px;
  }
  #documentos_legales .group_master {
    justify-content: center;
  }
  #modalsystem .bt_programar {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 660px) {
  #med_odonto_exam .group_item {
    max-width: 485px;
  }
}
@media only screen and (max-width: 480px) {
  .ft_group_1 {
    align-items: center;
  }
  .ft_group_2 {
    flex-direction: column;
    align-items: center;
  }
  .home_banner_text_group {
    max-width: 100% !important;
  }
  .home_banner_titulo {
    font-size: 28px;
  }
  .home_banner_subtitulo {
    font-size: 18px;
  }
  .home_banner_preco_widget_group {
    flex-direction: column;
  }
  #institucional_topo .group_text .titulo {
    font-size: 28px;
  }
    
  #institucional_topo .group_text p {
    font-size: 18px;
  }
  #institucional_amorcuidado .titulo1,
  #institucional_amorcuidado .group_text .titulo,
  #institucional_proposito .group_text .titulo,
  #institucional_ipstodos .group_text .titulo {
    font-size: 28px;
    text-align: center;
    margin: auto;
  }
}
/* ------------------------------------------------------------------- */
.new_price {
  width: 100%;
  background: #37B4C8;
  padding-top: 30px;
}
/* ------------------------------------------------------------------- */
.group_fonemaps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .group_fonemaps {
    flex-direction: column;
  }
}
/* ------------------------------------------------------------------- */