@charset "UTF-8";
/**
	* Filename:     style.css
	* Version:      1.0.0 (2022-03-09)
	* Description:  Global Styles
	* Author:       GHOSTi Digital
**/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

/* GLOBAL
-------------------------------------------------- */
:root {
  --bs-secondary: #44474B;
}

* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: white;
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
}

html {
  line-height: 1.15;
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}

/* GROUPING
-------------------------------------------------- */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

ul {
  font-size: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* TEXT-LEVEL SEMANTIC
-------------------------------------------------- */
b,
strong {
  font-weight: 700;
}

p {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.btn.active,
.btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none;
}

/* FORMS
-------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  border: 0;
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[hidden] {
  display: none;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
  box-shadow: none;
  outline: 0 none;
}

/* OVERWRITE BOOTSTRAP */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #A21A1D;
  --bs-orange: #fd7e14;
  --bs-yellow: #5F4E07;
  --bs-green: #198754;
  --bs-teal: #1A5F65;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #005B85;
  --bs-secondary: #636362;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #fabf4d;
  --bs-danger: #A21A1D;
  --bs-light: #f8f9fa;
  --bs-dark: #333333;
  --bs-font-sans-serif: "Open Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

body {
  color: var(--bs-dark) !important;
  font-family: "Open Sans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif !important;
  color: var(--bs-secondary) !important;
}

.fw-light {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 200;
}

.fw-regular {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 400;
}

.fw-bold {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
}

.small,
small {
  font-size: 0.75rem !important;
}

.small,
small a {
  color: var(--bs-dark) !important;
  font-family: "Open Sans", sans-serif !important;
  text-decoration: none !important;
}

.container {
  max-width: 1226px !important;
}

a.text-white:hover {
  color: var(--bs-secondary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-yellow {
  color: var(--bs-yellow) !important;
}

.bullet-yellow li::marker {
  content: "•  ";
  color: var(--bs-yellow) !important;
  font-weight: bold;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.btn {
  border-radius: 0.5rem !important;
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.btn-primary {
  border-color: var(--bs-primary) !important;
  background-color: var(--bs-primary) !important;
}

.btn-primary:hover {
  border-color: var(--bs-secondary) !important;
  background-color: var(--bs-secondary) !important;
}

.btn-teal {
  color: var(--bs-white) !important;
  border-color: var(--bs-teal) !important;
  background-color: var(--bs-teal) !important;
}

.btn-teal._blue {
  border-color: var(--bs-primary) !important;
  background-color: var(--bs-primary) !important;
}

.btn-teal:hover {
  border-color: var(--bs-secondary) !important;
  background-color: var(--bs-secondary) !important;
}

.btn-pill {
  border-radius: 32px !important;
}

.btn-menu {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.bg-danger {
  background-color: var(--bs-danger) !important;
}

.bg-teal {
  background-color: var(--bs-teal) !important;
}

.bg-yellow {
  background-color: #5F4E07 !important;
}

.rounded-4 {
  border-radius: 0.7rem !important;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

/* MAIN MENU */
.break-menu {
  width: 100%;
  display: block;
}

.main-logo {
  max-width: 200px;
  height: auto;
}

@media (min-width: 768px) {
  .main-logo {
    max-width: 277px;
  }
}

a.text-primary:hover {
  color: var(--bs-dark) !important;
}

a.nav-link.text-primary.dropdown-toggle.show:hover {
  color: var(--bs-white) !important;
}

.nav-li {
  width: 100%;
}

@media (min-width: 1200px) {
  .nav-li {
    width: auto;
  }

  .fs-xl-5 {
    font-size: 1.25rem !important;
  }
}

.dropdown-toggle {
  border-bottom: 1px solid transparent;
}

.dropdown-toggle:after {
  display: none !important;
}

.dropdown-toggle.show {
  color: var(--bs-white) !important;
  background-color: var(--bs-primary) !important;
  border-bottom: 1px solid var(--bs-white);
}

.dropdown-menu.show {
  min-width: 100% !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: var(--bs-primary) !important;
  text-align: center !important;
}

.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

.dropdown-item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  color: var(--bs-white) !important;
  border-bottom: 1px solid var(--bs-white);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: white !important;
  background-color: #555554 !important;
}

.nav-link {
  font-family: "Myriad-Pro", sans-serif !important;
  font-size: 1rem;
}

/* 01 - GENERAL */
.box-fita {
  position: absolute;
  z-index: 1;
  width: 140px;
  min-height: 100%;
  background-image: url(../images/00-fita.png);
  background-size: 90px;
  background-repeat: no-repeat;
  background-position: top left;
}

@media (min-width: 576px) {
  .box-fita {
    background-position: bottom left;
  }
}

@media (min-width: 1200px) {
  .box-fita {
    background-position: top left;
  }
}

.box-opacity {
  background: transparent;
  position: relative;
  z-index: 0;
  padding-left: 45px !important;
  margin-left: 48px;
}

.equal-height {
  min-height: 100%;
}

/* 01 - HOME */
.home-hero {
  background-image: url(../images/01-hero.jpg);
  background-repeat: no-repeat;
  background-size: 180% auto;
  background-position: top -1rem right;
  height: auto;
  padding-top: 19rem;
}

@media (min-width: 576px) {
  .home-hero {
    height: 480px;
  }
}

@media (min-width: 768px) {
  .home-hero {
    margin-top: -80px;
  }
}

@media (min-width: 992px) {
  .home-hero {
    background-size: cover;
    background-position: bottom right;
    height: 720px;
    margin-top: -70px;
    padding-top: 0;
  }
}

@media (min-width: 1400px) {
  .home-hero {
    background-position: top right;
    height: 720px;
  }
}

.home-section-2 {
  margin-top: -45px;
}

@media (min-width: 768px) {
  .home-section-2 {
    margin-top: -90px;
  }
}

@media (min-width: 1200px) {
  .home-section-2 {
    margin-top: -135px;
  }
}

.home-section-3 {
  background-image: url(../images/01-section-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left -200px;
  min-height: 480px;
  margin-top: -120px;
  padding-top: 130px !important;
}

@media (min-width: 768px) {
  .home-section-3 {
    background-position: top left;
    min-height: 640px;
    margin-top: -90px;
    padding-top: 100px !important;
  }
}

@media (min-width: 1200px) {
  .home-section-3 {
    background-position: top right;
    height: 735px;
    margin-top: -130px;
    padding-top: 150px !important;
  }
}

.home-section-4 {
  background-image: url(../images/01-section-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  min-height: 480px;
}

.home-section-5 {
  margin-top: -90px;
}

@media (min-width: 768px) {
  .home-section-5 {
    margin-top: -120px;
  }
}

@media (min-width: 1400px) {
  .home-section-5 {
    margin-top: -280px;
  }
}

/* 02 - SOBRE */
.sobre-hero {
  background-image: url(../images/02-hero.png);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .sobre-hero {
    background-size: cover;
    background-position: bottom right;
    padding-top: 3rem !important;
  }
}

/* 03 - O QUE É? */
.oque-hero {
  background-image: url(../images/03-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top left -4rem;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .oque-hero {
    background-size: cover;
    background-position: bottom right;
    padding-top: 3rem !important;
  }
}

.oque-section-2 {
  background-image: url(../images/03-section-2.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  min-height: 480px;
}

.bullet:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 6px;
  margin-left: -0.8rem;
  background-color: var(--bs-yellow);
  border-radius: 100%;
}

.bullet-dark:before {
  background-color: var(--bs-dark);
}

.bullet-white:before {
  background-color: var(--bs-white);
}

.bg-light-1 {
  background-color: #efeeee !important;
}

.clips {
  position: absolute;
  top: calc(-3rem - 22px);
  left: -60px;
}

.clips-img {
  max-width: 50px;
}

@media (min-width: 768px) {
  .bullet:before {
    width: 15px;
    height: 15px;
    top: 5px;
    margin-left: -1.34rem;
  }
}

/* 04 - GATILHOS */
.gatilhos-hero {
  background-image: url(../images/04-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .gatilhos-hero {
    background-size: cover;
    background-position: center right;
    padding-top: 3rem !important;
  }
}

/* 05 - TRATAMENTOS */
.tratamento-hero {
  background-image: url(../images/05-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right -2rem;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .tratamento-hero {
    background-size: cover;
    background-position: bottom left;
    padding-top: 3rem !important;
  }
}

.icon-div {
  margin-top: -70px;
}

.tratamento-icon {
  max-width: 50% !important;
  height: auto;
}

.logo-my {
  max-width: 183px !important;
  height: auto;
}

@media (min-width: 768px) {
  .tratamento-hero {
    background-position: top center;
  }
}

@media (min-width: 992px) {
  .tratamento-hero {
    background-position: top right;
  }

  .icon-div {
    margin-top: -100px;
  }
}

/* 06 - ROTINA */
.rotina-hero {
  background-image: url(../images/06-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right -2rem;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .rotina-hero {
    background-size: cover;
    background-position: bottom left;
    padding-top: 3rem !important;
  }
}

.rotina-icon {
  max-height: 80px !important;
  max-width: auto !important;
}

/* 07 - TRABALHO */
.trabalho-hero {
  background-image: url(../images/07-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top left -4rem;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .trabalho-hero {
    background-size: cover;
    background-position: bottom right;
    padding-top: 3rem !important;
  }
}

@media (min-width: 992px) {
  .trabalho-hero {
    background-position: bottom right;
  }
}

@media (min-width: 1200px) {
  .trabalho-hero {
    background-position: -200px bottom;
  }
}

@media (min-width: 1400px) {
  .trabalho-hero {
    background-position: -50px bottom;
  }
}

.trabalho-fita {
  position: absolute;
  width: 120px;
  top: -45px;
  left: -45px;
}

.trabalho-section-3 {
  position: relative;
  max-width: 100%;
  min-height: 480px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
  background-image: url(../images/07-section-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

@media (min-width: 992px) {
  .trabalho-section-3 {
    position: absolute;
    max-width: 45%;
    min-height: 360px;
  }
}

.trabalho-section-4 {
  margin-top: -70px;
  z-index: 3;
  overflow: hidden;
}

.trabalho-section-4 img {
  position: relative !important;
  max-width: 220% !important;
  left: -110% !important;
}

@media (min-width: 768px) {
  .trabalho-section-4 {
    margin-top: -90px;
  }

  .trabalho-section-4 img {
    max-width: 100% !important;
    left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .trabalho-section-4 {
    margin-top: -120px;
  }
}

@media (min-width: 1400px) {
  .trabalho-section-4 {
    margin-top: -180px;
  }
}

/* 08 - PASSEIOS */
.passeios-hero {
  background-image: url(../images/08-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .passeios-hero {
    background-size: cover;
    background-position: center left;
    padding-top: 3rem !important;
  }
}

@media (min-width: 992px) {
  .passeios-hero {
    background-position: center right;
  }
}

.passeios-section-3 {
  min-height: 360px;
  background-image: url(../images/08-section-3.png);
  background-repeat: no-repeat;
  background-size: 220% auto;
  background-position: right 23% bottom;
}

.passeio-margin {
  margin-bottom: 220px !important;
}

@media (min-width: 768px) {
  .passeio-margin {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .passeios-section-3 {
    min-height: 480px;
    background-size: cover;
    background-position: center right;
  }
}

.passeio-icon {
  max-height: 72px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* 09 - CRIANCAS */
.criancas-hero {
  background-image: url(../images/09-hero.jpg);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: top right -3rem;
  height: auto;
  padding-top: 19rem !important;
}

@media (min-width: 768px) {
  .criancas-hero {
    background-size: cover;
    background-position: -220px center;
    padding-top: 3rem !important;
  }
}

@media (min-width: 992px) {
  .criancas-hero {
    background-position: -120px center;
  }
}

@media (min-width: 1400px) {
  .criancas-hero {
    background-position: center center;
  }
}

.criancas-section-2 {
  margin-top: -70px !important;
  z-index: 4;
}

.criancas-section-3-relative {
  z-index: 1;
  margin-bottom: 180px;
}

@media (min-width: 768px) {
  .criancas-section-3-relative {
    z-index: 1;
    margin-bottom: 0;
  }
}

.criancas-fita {
  position: absolute;
  width: 150px;
  height: 108px;
  top: -54px;
  left: -54px;
  background-image: url(../images/07-section-3-fita.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  transform: rotate(-30deg);
}

.criancas-section-3-content {
  z-index: 2;
}

.criancas-section-img-3 {
  position: absolute;
  max-width: 100%;
  width: 100%;
  height: 480px;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-image: url(../images/09-section-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
}

@media (min-width: 768px) {
  .criancas-section-img-3 {
    position: absolute;
    max-width: 100%;
    /* min-height: 540px; */
    width: 45%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-image: url(../images/09-section-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
  }
}

.criancas-section-5 {
  background-image: url(../images/09-section-5.png);
  background-repeat: no-repeat;
  background-size: 220% auto;
  background-position: right 28% bottom;
}

.criancas-section-5-margin {
  margin-top: -70px !important;
}

.criancas-section-5-content {
  margin-bottom: 140px;
}

.link-secondary {
  color: #54575F;
}

.link-secondary:focus,
.link-secondary:hover {
  color: #3A3C41;
}

.text-secondary {
  color: #44474B !important;
}

.btn-secondary {
  color: #fff;
  background-color: #4C5057;
  border-color: #4C5057;
}

@media (min-width: 768px) {

  /* .criancas-section-5 {
      background-position: center right;
  } */
  .criancas-section-5-content {
    margin-bottom: 0;
  }

  .criancas-section-img-7 {
    position: absolute;
    max-width: 100%;
    width: 45%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-image: url(../images/09-section-6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
  }
}

@media (min-width: 1200px) {
  .criancas-section-5 {
    background-position: center right;
    background-size: cover;
  }
}

.footer-link {
  color: #333333;
  font-size: 0.9rem;
  text-decoration: underline;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--bs-yellow);
}

.modal-backdrop.show {
  opacity: 0.3;
}

.modal-content {
  border: 0;
  border-radius: 1rem;
}

.modal-content .modal-header {
  border-bottom: 0;
  padding: 1.5rem 1rem 0;
}

.modal-content .modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.7em auto no-repeat;
  margin: -1rem 0rem -1rem auto;
  width: 0.7em;
  height: 0.7em;
}

.modal-content .modal-body {
  padding: 1rem 1.5rem;
}

.modal-content .modal-body p {
  font-size: 1rem;
}

.modal-content .modal-body a {
  color: var(--bs-danger);
  text-decoration: underline;
}

footer#main-footer {
  background-color: #D9D9D9;
  color: #333333;
}

/*# sourceMappingURL=style.css.map */