/*2a9d8f*/
:root {
  --bg-light: #0181b0;
  --bg-dark: #264653;
  --color-white: #fff;
  --orange-secondary: #e9c46a;
  --brown-secondary: #f4a261;
  --font-color: #3e464f;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

ul {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.container {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  flex-direction: column;
}

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

.text-center {
  text-align: center;
}

.section-padding {
  padding: 40px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.section_intro__title {
  font-size: 2.8rem;
  color: var(--color-white);
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.f-left {
  float: left;
}

/*TOP INFO*/
.top-info {
  padding: 9px 0;
  color: var(--color-white);
  background-color: var(--bg-light);
}

.top-info__list {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.top-info__item {
  margin-bottom: 10px;
}

.top-info__social {
  display: flex;
  margin-bottom: 0;
}

.top-info__social i {
  margin-left: 10px;
  font-size: 1.6rem;
  color: var(--color-white);
}

/*HEADER*/
.header .container {
  align-items: center;
}

.header__logo {
  margin: 20px 0;
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
  text-align: center;
}

.header__logo img {
  width: 204px;
  object-fit: cover;
}

.header__nav {
  padding: 20px 0;
}

.header__menu {
  display: none;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
  margin-bottom: 0;
  opacity: 0;
  transition: all ease 1s;
}

.header__menu.active {
  display: flex;
  opacity: 1;

  background-color: var(--bg-dark);
}

.header__link {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
  border: 2px solid var(--color-white);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
}

.header__submenu {
  z-index: 9;
  position: relative;
  padding: 10px 0;
  background-color: var(--color-white);
}

.header__submenu::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  right: 0;
  vertical-align: middle;
  margin-right: 10px;
  width: 0;
  height: 0;

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--bg-light);
}

.header__link--has-submenu {
  align-self: center;
}

.header__submenu__link {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px 0;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--bg-dark);
}

.header__submenu {
  display: none;
  opacity: 0;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: flex-end;
  transition: all ease 0.3s;
  transform: translate3d(-30px, 0);
}

.header__submenu.active {
  display: flex;
  opacity: 1;
  transform: translate3d(0, 0);
  z-index: 9999;
}

.header__menu--btn-mobile {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-top: 3px solid var(--bg-light);
  cursor: pointer;
}

.header__menu--btn-mobile::after,
.header__menu--btn-mobile::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin: 10px 0;
  border-top: 3px solid var(--bg-light);
  transition: all ease-in-out 0.3s;
}

.header__menu--btn-mobile.active {
  border: none;
}

.header__menu--btn-mobile.active.header__menu--btn-mobile::before {
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
}

.header__menu--btn-mobile.active.header__menu--btn-mobile::after {
  position: absolute;
  top: 0;
  transform: rotate(135deg);
}

/*OWL CAROUSEL BANNER*/
.banner-home img{
	height: 250px!important;
	object-fit: cover;
	max-width: 100%;
}

/* ABOUT */
.about {
}

.about video {
  order: 2;
}

.about__content {
  order: 1;
  padding: 20px;
}

.about__title {
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: var(--font-color);
}

.about__content p {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 1.8rem;
  color: var(--font-color);
}

.about__btn {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 20px;
  background-color: var(--orange-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
}

.about__btn:hover {
  background-color: var(--brown-secondary);
}

/*MORE ABOUT*/
.more-about {
  background-color: var(--bg-light);
  color: var(--color-white);
}

.more-about article {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
  font-size: 1.6rem;
}

.more-about i {
  margin-bottom: 10px;
  font-size: 4rem;
}

.more-about__title {
  margin-bottom: 10px;
  font-size: 2rem;
}

.more-about__text {
  margin-bottom: 10px;
  line-height: 1.5;
}

.more-about__btn {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--orange-secondary);
  transition: all ease 0.3s;
}

.more-about__btn:hover {
  background-color: var(--brown-secondary);
}

/* NEWS */
.news__title {
  font-size: 2.2rem;
  text-align: center;
}

.news__article {
  padding: 20px;
  margin-bottom: 20px;
}

.news__article__img {
  margin-bottom: 10px;
  height: 165px;
  width: 100%;
  object-fit: cover;
}

.news__article__title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.news__article__content {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news__article__btn {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--orange-secondary);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
  transition: all ease 0.3s;
}

.news__article__btn:hover {
  background-color: var(--brown-secondary);
}

/* FOOTER */
.footer {
  background-color: var(--bg-dark);
}

.footer__list {
  flex: 1 1 100%;
  padding: 20px;
  font-size: 1rem;
}

.footer__list__title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--color-white);
}

.footer__list__link {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--color-white);
}

.footer__list__social {
  display: flex;
}

.footer__list__social i {
  margin-right: 10px;
  font-size: 1.6rem;
}

.main-footer {
  padding: 10px;
  color: var(--color-white);
  background-color: #1e3842;
}

/*PAGE ABOUT*/
/*ABOUT IS*/
.about-is__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.5rem;
}

.about-is img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.about-is p {
  margin-bottom: 20px;
  padding: 0 20px;
  line-height: 1.5;
  font-size: 1.6rem;
}

.about-is a:visited {
  color: #1da1f2;
}

.aside-nav {
  padding: 20px 0;
  text-align: center;
}

.aside-nav a:visited {
  color: var(--bg-light);
}

.aside-nav ul {
  padding: 20px 0;
  border: 2px solid var(--bg-light);
  border-top-left-radius: 20px;
}

.asidenav-social__box {
  display: flex;
  justify-content: center;
}

.aside-nav__title,
.asidenav-social__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.2rem;
  color: var(--bg-light);
}

.aside-nav__item,
.asidenav-social__item {
  margin-bottom: 10px;
}

.asidenav-social__item {
  margin: 0 10px;
}

.aside-nav__link,
.asidenav-social__link {
  text-decoration: none;
  color: var(--bg-light);
}

.asidenav-social__link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 3rem;
}

/* PAGE CIURGIA DE HIPERIDROSE */
.about-is__subtitle {
  margin: 40px 0 20px;
  font-size: 2rem;
}

.form-question__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  text-align: center;
}

.form-question__label {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.6rem;
}

.form-question__input, .form-question__textarea {
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.6rem;
  border: 2px solid var(--bg-light);
}

.form-question__btn {
  display: block;
  margin: 0 auto;
  padding: 10px 15px;
  background-color: var(--bg-light);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: 0.3s ease all;
  font-weight: bold;
}

.form-question__btn:hover {
  background-color: var(--bg-dark);
}

/* PAGE CONTACT */
.form-question-contact ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.form-question-contact li a {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 10px;
  color: var(--bg-light);
}


/*TRATAMENTOS FIM HOME*/
.treatments {
	background-color: var(--bg-light);
}

.treatments__title {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: var(--color-white);
}

.treatments__item {
  flex: 0 1 calc(100% - 40px);
  margin: 0 20px 20px;
}

.treatments__item figure {
  position: relative;
}

.treatments__item img {
	height: 310px;
	width: 300px;
	object-fit: cover;
}

.treatments__item p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1.6rem;
  color: var(--color-white);
  text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
}


/*PAGE SOBRE*/

.section_about i {
  margin-bottom: 20px;
  font-size: 2.6rem;
  color: var(--bg-light);
}

.section_about__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.section_about__content {
  margin-bottom: 40px;
  font-size: 1.6rem;

}

.section_about_content__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: var(--color-white);
}

.section_about_content p {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 1.6rem;
  color: var(--color-white);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .container {
    max-width: 748px;
    flex-direction: row;
  }

  .top-info .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .top-info__list {
    display: flex;
    margin-bottom: 0;
  }

  .top-info__item {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header__nav {
    padding: 0;
    background-color: transparent;
  }

  .header__menu--btn-mobile {
    display: none;
  }

  .header__menu {
    display: flex;
    opacity: 1;
    flex-direction: row;
  }

  .header__link {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--font-color);
  }

  .header__item__submenu {
    position: relative;
  }

  .header__submenu {
    position: absolute;
    top: 30px;
    z-index: 9;
    -webkit-box-shadow: 10px 10px 23px -17px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 23px -17px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 23px -17px rgba(0, 0, 0, 0.75);
  }

  .header__submenu.active {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__submenu::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--font-color);
  }

  .header__submenu__link {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  /*SLIDER HOME*/
  .banner-home img{
	height: 500px!important;
}
  .about {
    flex-direction: row;
    align-items: center;
  }

  .about__content {
    order: 1;
    flex: 1 1 50%;
  }

  .about__video {
    order: 0;
    flex: 1 1 50%;
  }

  .news {
    flex-direction: row;
  }

  .news__article {
    flex: 1 1 50%;
  }

  .footer .container {
    justify-content: space-around;
  }

  footer {
    text-align: center;
  }

  .about-is {
    display: flex;
  }

  .about-is h1 {
    text-align: left;
  }

  .about-is img {
    margin: 0 20px 20px 0;
    width: calc(50% - 20px);
    float: left;
    text-align: left;
  }

  .about-is article {
    flex: 1 1 calc(80% - 20px);
    margin: 0 10px;
  }

  .about-is aside {
    flex: 1 1 calc(30% - 20px);
    margin: 0 10px;
  }

  .aside-nav ul {
    margin-bottom: 20px;
  }

  .asidenav-social .d-flex {
    flex-direction: row;
  }

  .about-is__subtitle {
    font-size: 2.8rem;
  }

  

  .form-question {
    background-color: var(--font-color);
    color: var(--color-white);
  }

  .form-question form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-question__group {
    flex: 0 0 calc(50% - 20px);
    padding: 0 10px;
  }

  .form-question__label {
    text-align: left;
  }

  .form-question__input {
    display: inline-block;
    padding: 10px 20px;
    width: 95%;
    border: 2px solid var(--color-white);
  }

  .form-question-contact .container {
    display: flex;
    justify-content: center;
  }

  .form-question-contact__box-title {
    max-width: 1260px;
    margin: 0 auto;
    padding-left: 38px;
  }

  .form-question-contact .form-question__title {
    text-align: left;
    margin-bottom: 30px;
  }

  .form-question-contact input {
    text-align: left;
  }

  .form-question-contact form {
    flex: 0 1 calc(80% - 20px);
  }

  .form-question__input {
    width: 90%;
  }

  .form-question__label {
    text-align: left;
  }
  .form-question-contact ul {
    flex: 0 1 calc(20% - 20px);
    align-items: flex-start;
    margin-left: 20px;
  }

  .form-question-contact li a {
    font-size: 1.4rem;
    color: var(--color-white);
  }

  .form-question-contact textarea {
    margin-bottom: 20px;
    width: 100%;
    border: 2px solid var(--color-white);
  }

  .form-question__label--msg {
    width: 100%;
  }

  .form-question__btn {
    width: 90px;
    margin-left: 0;
  }

  .treatments {
  	background-color: var(--bg-light);
  }

  .treatments .container {
  	display: flex;
  	flex-direction: row;
    justify-content: center;
  }

  .treatments__item {
    flex: 0 1 calc(28% - 40px);
    transition: .3s all ease;
  }

  .treatments__item:hover {
  	transform: scale(1.1);
  }

  .section_about {
    display: flex;
  }

  .section_about article {
    flex: 0 0 calc(33.333% - 40px);
    margin: 0 20px;
  }

  .section_about_content .container {
    display: flex;
  }

  .section_about_content article, .section_about_content img {
    flex: 1 1 calc(50% - 40px);
    margin: 0 20px;
  }

  .form-question-call textarea {
    width: 97%;
    border: none;
  }

}

@media (min-width: 1024px) {
  .container {
    max-width: 1004px;
  }

  .header__link {
    font-size: 1.6rem;
  }

  /*.owl-banner .owl-item img {
    height: 500px;
  }

  .owl-banner__content {
    margin-left: 100px;
  }

  .owl-banner__content h1 {
    font-size: 4rem;
    max-width: 700px;
  }*/

  
}

@media (min-width: 1280px) {
  .container {
    max-width: 1260px;
  }
}
