@charset "UTF-8";
/*
* Theme Name: Baobá 1.0
* Version: 1.0.0
* Description: Template exclusivo para a pousada Baobá Suítes.
* Author: Pensa e Cria
* Author URI: https://www.pensaecria.com.br
*
* Ultima Atualizacao: 15/07/25
*/
/* - Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --bs-body-font-family: Nunito Sans, sans-serif;
  --bs-body-color: #603918;
  --bs-primary-rgb: 147, 96, 55;
  --bs-secondary-rgb: 202, 158, 103;
}

body {
  background-color: #f8f3ec;
}

::selection {
  background-color: #ca9e67;
  color: #603918;
}

.hidden {
  display: none !important;
}

/* Links ––––– */
a {
  color: #936037;
}
a:hover {
  color: #ca9e67;
}

.icon-link {
  text-decoration-color: #936037;
}

/* Form ––––– */
.form-control:focus, .form-select:focus, .form-check-input:focus {
  border-color: #ca9e67;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
.form-check-input:checked, .form-check-input[type=checkbox]:indeterminate {
  background-color: #ca9e67;
  border-color: #ca9e67;
}

/* Struture ––––– */
main {
  position: relative;
  min-height: 50vh;
}

section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 576px) {
  section {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
@media (min-width: 1200px) {
  section {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.divider-after {
  position: relative;
}
.divider-after::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* SVG Element ––––– */
.svg-element {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100vw;
  z-index: 2;
  pointer-events: none;
  color: #f8f3ec;
}
.svg-element svg {
  display: block;
  width: 100%;
  height: auto;
}

/* List Group ––––– */
.list-group {
  --bs-list-group-item-padding-y: 1.2rem;
  --bs-list-group-active-color: #f8f3ec;
  --bs-list-group-active-bg: #936037;
  --bs-list-group-active-border-color: #936037;
}
.list-group-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  line-height: 1.25;
}
.list-group-item-infos small {
  display: block;
  color: #936037;
}
.list-group-item .material-symbols-outlined {
  font-size: 2.25em;
  color: #ca9e67;
  top: 0;
}

/* - Typography ––––– */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
  letter-spacing: 0.025em;
}

h5, .h5,
h6, .h6 {
  text-transform: uppercase;
}

b, strong {
  font-weight: bold;
}

.subtitle {
  display: block;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  color: #ca9e67;
}

/* - Icons ––––– */
.material-symbols-outlined {
  position: relative;
  max-width: 1.5em;
  top: -0.15em;
  font-size: 1.125em;
  vertical-align: text-bottom;
  user-select: none;
  cursor: default;
  font-variation-settings: "FILL" 0, "GRAD" 0;
  transition: all 0.3s ease;
}
.material-symbols-outlined.icon-fill {
  font-variation-settings: "FILL" 1, "GRAD" 0;
}

.modify-icons *:hover > .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "GRAD" 200;
}
.modify-icons *:hover > .material-symbols-outlined.icon-fill {
  font-variation-settings: "FILL" 1, "GRAD" 200;
}
.modify-icons-fill *:hover > .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "GRAD" 200;
}
.modify-icons-fill *:hover > .material-symbols-outlined.icon-fill {
  font-variation-settings: "FILL" 0, "GRAD" 200;
}
.modify-icons-rotate .material-symbols-outlined {
  transform: rotate(0);
}
.modify-icons-rotate *:hover > .material-symbols-outlined {
  transform: rotate(-5deg);
}

/* Effects ––––– */
a,
a img,
img {
  transition: all 0.3s ease;
}

/* Animations */
.animate-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.animate-fade.visible {
  opacity: 1;
}
.animate-fade.fade-blur {
  filter: blur(8px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.animate-fade.fade-blur.visible {
  filter: blur(0);
}
.animate-fade.fade-scale {
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-fade.fade-scale.visible {
  transform: scale(1);
}

/* Parallax */
.parallax-effect {
  transform: translateY(0);
  will-change: transform;
}

/* Hover Effect */
.hover-effect {
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.hover-effect img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(61, 37, 15, 0.66666667);
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 1;
}

.hoverable:hover .hover-effect, .hoverable:focus .hover-effect, .hoverable.active .hover-effect {
  transform: scale(0.975);
}
.hoverable:hover .overlay, .hoverable:focus .overlay, .hoverable.active .overlay {
  opacity: 0;
}

/* - Componets
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* - Buttons ––––– */
.btn {
  --bs-btn-font-weight: 600;
  --bs-btn-font-family: $pec-font-family;
  --bs-btn-color: #f8f3ec;
  --bs-btn-bg: #936037;
  --bs-btn-border-color: #936037;
  --bs-btn-hover-color: #f8f3ec;
  --bs-btn-hover-bg: #ca9e67;
  --bs-btn-hover-border-color: #ca9e67;
  --bs-btn-focus-shadow-rgb: 155, 155, 155;
  --bs-btn-active-color: #f8f3ec;
  --bs-btn-active-bg: #ca9e67;
  --bs-btn-active-border-color: #ca9e67;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --bs-btn-disabled-color: #f8f3ec;
  --bs-btn-disabled-bg: #936037;
  --bs-btn-disabled-border-color: #936037;
  --bs-gradient: none;
  --bs-btn-border-radius: 50rem;
  text-transform: uppercase;
}
.btn .material-symbols-outlined {
  font-size: 1.25em;
  top: -0.05em;
}

a svg,
.btn svg {
  position: relative;
  height: 1.1em;
  width: auto;
  top: 0.05em;
  vertical-align: text-top;
}

.btn-reset {
  all: unset;
  display: block;
  width: 100%;
}

/* Whatsapp Button ––––– */
.whatsapp-btn {
  position: fixed;
  bottom: 3rem;
  right: 1.6rem;
  z-index: 1000;
}
.whatsapp-btn svg {
  position: relative;
  height: 1em;
  width: auto;
  top: 0;
}
.whatsapp-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #25d366;
  border-radius: 50%;
  color: #fff !important;
  font-size: 2.4rem;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
}
.whatsapp-btn a:hover, .whatsapp-btn a:focus {
  background-color: #1ea951;
  outline: none;
}

/* Scroll To Top ––––– */
.scroll-to-top {
  position: fixed;
  bottom: 9rem;
  right: 1.8rem;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  background-color: rgba(147, 96, 55, 0.75);
  border-top-color: rgba(255, 255, 255, 0.15) !important;
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
  border-width: 2px 0 !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: all 0.3s ease;
}
.scroll-to-top svg {
  width: 3.6rem;
  height: auto;
  top: -0.01em;
}
.scroll-to-top:hover {
  background-color: rgba(202, 158, 103, 0.75) !important;
  transform: translateY(-4px);
}
.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Cookies ––––– */
.cookies-consent {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 2.4rem 3.6rem;
  pointer-events: none;
}
.cookies-consent .cookies-content {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  margin: 0 auto;
  background: #fff;
  font-size: 1.6rem;
  text-align: center;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: auto;
}
.cookies-consent .cookies-desc {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}
.cookies-consent .cookies-desc p {
  margin: 0;
}
.cookies-consent .cookies-btn {
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 575.98px) {
  .cookies-consent .cookies-desc {
    display: block;
  }
  .cookies-consent .cookies-btn {
    display: block;
    margin: 10px 0 0;
  }
}

/* Lightbox ––––– */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(61, 37, 15, 0.75);
}

.lightbox-img {
  max-width: 90%;
  max-height: 60%;
  border: 3px solid #FFF;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.lightbox-img.loaded {
  opacity: 1;
}
@media (min-width: 768px) {
  .lightbox-img {
    max-width: 80%;
    max-height: 80%;
  }
}

.no-scroll {
  overflow: hidden;
}

.lightbox-btns {
  position: absolute;
  top: 1.2rem;
  width: calc(10vw - 2.4rem);
  max-width: 8rem;
  min-width: 4.8rem;
  height: calc(10vw - 2.4rem);
  max-height: 8rem;
  min-height: 4.8rem;
  align-content: center;
  text-align: center;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  user-select: none;
  transition: all 0.3s ease;
}
.lightbox-btns svg {
  width: 4.8rem;
  height: auto;
  transform: scale(1);
  transition: all 0.3s ease;
}
.lightbox-btns.lightbox-btn-close {
  right: 1.2rem;
}
.lightbox-btns.lightbox-btn-close:hover svg {
  transform: scale(0.9);
}
@media (max-width: 767.98px) {
  .lightbox-btns.lightbox-btn-close {
    left: 50%;
    transform: translateX(-50%);
  }
}
.lightbox-btns.lightbox-btn-prev {
  left: 1.2rem;
}
.lightbox-btns.lightbox-btn-prev:hover svg {
  transform: translateX(-4px);
}
.lightbox-btns.lightbox-btn-next {
  right: 1.2rem;
}
.lightbox-btns.lightbox-btn-next:hover svg {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .lightbox-btns.lightbox-btn-prev, .lightbox-btns.lightbox-btn-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
.lightbox-btns.disabled {
  opacity: 0.1;
  pointer-events: none;
  cursor: default;
}

/* - Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* - Header ––––– */
header .navbar {
  --bs-navbar-color: #f8f3ec;
  --bs-navbar-hover-color: #ca9e67;
  --bs-navbar-active-color: #ca9e67;
  position: absolute;
  width: 100%;
}
header .navbar .navbar-brand {
  padding: 0;
}
header .navbar .navbar-brand:hover img {
  transform: scale(0.95);
}
@media (min-width: 992px) {
  header .navbar {
    position: fixed;
    transform: translateZ(0);
    will-change: transform;
    transition: all 0.3s ease;
  }
  header .navbar .navbar-brand img {
    transform: translateY(0);
    height: 5rem;
  }
  header .navbar.scrolled {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(96, 57, 24, 0.75);
  }
  header .navbar.scrolled .navbar-brand img {
    transform: translateY(-4px);
    height: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  header .offcanvas-body {
    padding-top: 0;
  }
}
header .navbar-nav {
  --bs-nav-link-font-weight: 500;
  text-transform: uppercase;
}
header .navbar-nav.social-media {
  text-transform: none;
}
header .navbar-nav.social-media svg {
  font-size: 1.25em;
  top: -0.02em;
}
@media (min-width: 992px) {
  header .navbar-nav.social-media a {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  header .navbar-nav .nav-item {
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
header .nav-link:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
header .offcanvas {
  --bs-offcanvas-padding-x: 3.6rem;
  --bs-offcanvas-padding-y: 3.6rem;
  --bs-offcanvas-bg: #936037;
}

/* - Title Header ––––– */
.header-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 30rem;
  height: 22.5vw;
  padding-top: 8rem;
  padding-bottom: 5vw;
  color: #f8f3ec;
  background-color: #ca9e67;
}
.header-title-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  transform: scale(1.02);
}
@media (min-width: 768px) {
  .header-title-img {
    background-position: center -10vw;
  }
}

/* - Breadcrumb ––––– */
.breadcrumb-content {
  text-align: center;
  font-weight: 500;
  padding-top: 1.2rem;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: #603918;
  --bs-breadcrumb-item-active-color: #603918;
}

/* - Footer ––––– */
footer {
  position: relative;
  overflow: hidden;
  color: #f8f3ec;
  background-color: #603918;
  padding-top: 5vw;
}
footer .svg-element {
  bottom: auto;
  top: -1px;
  transform: rotate(180deg);
}
footer a {
  color: #f8f3ec;
}
footer a:hover, footer a:active {
  color: rgba(255, 255, 255, 0.5);
}
footer .btn {
  text-transform: none;
}
footer .footer-contacts .btn {
  width: 27rem;
  max-width: 100%;
}

/* Pensa e Cria */
.pensaecria a {
  display: inline-block;
  vertical-align: baseline;
  color: #444;
}
.pensaecria a svg {
  display: block;
  width: 88px;
  height: auto;
  transition: fill 0.3s ease;
}
.pensaecria a.logo-branco {
  color: #fff;
}
.pensaecria a:hover, .pensaecria a:focus {
  color: #EF4056;
}

/* - Paginas 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* - Home ––––– */
.home-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  height: 95vh;
  height: 95svh;
  max-height: 95vh;
  min-height: 51rem;
  padding-top: 8rem;
  padding-bottom: 5vw;
  color: #f8f3ec;
  background-color: #ca9e67;
}
.home-banner-content .slogan {
  display: block;
  width: 50rem;
  max-width: 100%;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .home-banner-content .slogan {
    font-size: 3rem;
  }
}
.home-banner-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-destaques .destaque {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  width: 100%;
  align-items: center;
  font-weight: 500;
  margin-bottom: 2.4rem;
}
.home-destaques .destaque:last-child {
  margin-bottom: 0;
}
.home-destaques .destaque .material-symbols-outlined {
  font-size: 2em;
  color: #ca9e67;
}
@media (min-width: 768px) {
  .home-destaques .destaque {
    font-size: 1.25em;
    font-weight: 400;
  }
  .home-destaques .destaque .material-symbols-outlined {
    font-size: 2.5em;
  }
}

/* - Sobre ––––– */
.sobre {
  position: relative;
  overflow-x: hidden;
  font-size: 2rem;
  font-weight: 300;
}
.sobre p:last-child {
  margin-bottom: 0;
}
.sobre-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400%;
  opacity: 0.1;
  z-index: -1;
}
@media (min-width: 992px) {
  .sobre-bg-img {
    width: 150%;
  }
}

/* - Suítes ––––– */
.suite-item {
  position: relative;
}
.suite-item a {
  position: relative;
  display: block;
  overflow: hidden;
  transform: scale(1);
}
.suite-item a .suite-title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 2.4rem;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  pointer-events: none;
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}
.suite-item a:hover .suite-title, .suite-item a:focus .suite-title {
  opacity: 0.5;
}

/* - Suíte Page ––––– */
.suite-infos .carousel-content {
  position: relative;
  overflow: hidden;
  background-color: #ca9e67;
  padding: 0.6rem;
}
.suite-infos .carousel-item {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.25);
}
.suite-infos .carousel-control-prev,
.suite-infos .carousel-control-next {
  transition: all 0.3s ease;
  opacity: 1;
}
.suite-infos .carousel-control-prev.disabled,
.suite-infos .carousel-control-next.disabled {
  opacity: 0 !important;
  pointer-events: none;
  cursor: default;
}
.suite-infos .carousel-control-prev:hover,
.suite-infos .carousel-control-next:hover {
  opacity: 0.5;
}
.suite-infos .carousel-thumbs .hoverable:hover .hover-effect, .suite-infos .carousel-thumbs .hoverable:focus .hover-effect, .suite-infos .carousel-thumbs .hoverable.active .hover-effect {
  transform: scale(0.9);
}
.suite-infos .list-group-item {
  font-size: 1.125em;
  background-color: transparent;
}

.suite-reserve {
  background-color: #603918;
  text-align: center;
  color: #f8f3ec;
}
.suite-reserve .form-label {
  color: #ca9e67;
  text-transform: uppercase;
}

.suite-included h3 {
  letter-spacing: 0.025em;
}
.suite-included h3 small {
  color: #ca9e67;
  font-weight: 600;
}
.suite-included .list-group-item.infos {
  background-color: var(--bs-warning-bg-subtle);
  column-gap: 0.6rem;
}
.suite-included .list-group-item.infos .material-symbols-outlined {
  align-self: start;
  font-size: 1.75em;
  font-variation-settings: "FILL" 1;
  color: #603918;
}
.suite-included .regras .list-group-item {
  --bs-list-group-item-padding-x: 0;
  display: block;
  background-color: transparent;
}
.suite-included .regras .list-group-item .material-symbols-outlined {
  font-size: 1.75em;
}

/* - Contato ––––– */
.contato-infos span.color {
  color: #936037;
}
.contato-infos .btn {
  text-transform: none;
  width: 27rem;
  max-width: 100%;
}

.contato-mapa {
  overflow: hidden;
  height: 100%;
}
.contato-mapa iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.contato-mapa.ratio {
  --bs-aspect-ratio: 125%;
}
@media (min-width: 576px) {
  .contato-mapa.ratio {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
  }
}

/* - Politica de Privacidade ––––– */
#politica-de-privacidade {
  font-family: sans-serif !important;
  font-size: 1.6rem !important;
  line-height: 1.5 !important;
  color: #000 !important;
}
#politica-de-privacidade h1,
#politica-de-privacidade h2,
#politica-de-privacidade h3 {
  font-family: sans-serif !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: bold !important;
  margin: 2.4rem 0 1.2rem 0 !important;
  color: #000 !important;
  letter-spacing: initial !important;
  text-transform: initial !important;
}
#politica-de-privacidade p,
#politica-de-privacidade strong,
#politica-de-privacidade ul,
#politica-de-privacidade li {
  color: #000 !important;
}
#politica-de-privacidade h1 {
  font-size: 2.5em !important;
  margin-top: 0 !important;
}
#politica-de-privacidade h2 {
  font-size: 2em !important;
}
#politica-de-privacidade h3 {
  font-size: 1.5em !important;
}
#politica-de-privacidade p {
  margin: 0 0 1.2rem 0 !important;
}
#politica-de-privacidade ul {
  margin: 0 0 1.2rem 0 !important;
  list-style: disc !important;
}
#politica-de-privacidade li {
  margin: 0 !important;
}
#politica-de-privacidade a {
  text-decoration: underline !important;
  color: #000 !important;
}
#politica-de-privacidade a:hover {
  color: #666 !important;
}

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