/*--------------------------------------------------------------------------------
 # Google Fonts
 --------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Dancing+Script:wght@400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*--------------------------------------------------------------------------------
 # Global Variables
 --------------------------------------------------------------------------------*/
:root {
    --color-01: #a47e4e;
    --color-01-a: rgba(164, 125, 78, .3);
    --color-02: #333;
    --color-03: #70798C;
    --ff-navbar: "Poppins", sans-serif;
    --fs-navbar: 16px;
    --fw-navbar: 500;
}

/*--------------------------------------------------------------------------------
 # Geral
 --------------------------------------------------------------------------------*/
html,
body {
    color: var(--color-02);
    font-family: 'Roboto', sans-serif;
    /* overflow-x: hidden; */
}

a {
    color: var(--color-01);
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: var(--color-02);
    outline: none;
    text-decoration: none;
}

.btn-default,
.btn-default:focus {
    color: #ffffff;
    background-color: var(--color-01);
    font-weight: 500;
    transition: .3s ease-in-out;
}

.btn-default:hover,
.btn-default:active {
    color: #ffffff;
    background-color: var(--color-02);
}

/*--------------------------------------------------------------------------------
 # Back to top button
 --------------------------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 20;
    background: var(--color-01);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .3s;
}

.back-to-top:hover {
    background: var(--color-02);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------------------------
 # Topbar Section
 --------------------------------------------------------------------------------*/
#topbar {
    /* background: #a99985; */
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

#topbar a:link,
#topbar a:visited {
    color: #fff;
    text-decoration: none;
    transition: .3s ease-in-out;
}

#topbar a:hover,
#topbar a:active {
    color: var(--color-01);
}

#topbar .nav-item {
    font-size: .9rem;
}

/*--------------------------------------------------------------------------------
 # Header Section
 --------------------------------------------------------------------------------*/
#header {
    background: rgba(37, 35, 35, .95);
    color: #fff;
    padding: 20px 0;
    transition: .3s ease-in-out;
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    z-index: 10;
}

#header.transparent {
    background: rgba(37, 35, 35, 0);
}

#header.scroll-fixed {
    position: fixed;
    top: 0;
}

#header #logo img {
    width: 90%;
    transition: .3s ease-in-out;
}

#header .btn-booking:link,
#header .btn-booking:visited {
    margin-left: 24px !important;
    padding: 6px 12px;
    color: #fff;
    background-color: var(--color-01);
    border-color: var(--color-01);
    font-family: var(--ff-navbar);
    font-size: var(--fs-navbar);
    font-weight: var(--fw-navbar);
    white-space: nowrap;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}

#header .btn-booking:hover,
#header .btn-booking:active {
    background: none;
    border-color: #fff;
}

/*--------------------------------------------------------------------------------
 # Navigation Menu
 --------------------------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-family: var(--ff-navbar);
    font-size: var(--fs-navbar);
    font-weight: var(--fw-navbar);
    padding: 0 4px;
    white-space: nowrap;
    transition: .3s;
    letter-spacing: 0.4px;
    position: relative;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-01);
    visibility: hidden;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: .3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: var(--fs-navbar);
    text-transform: none;
    color: #666666;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--color-01);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: .3s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(77, 77, 77, 0.9);
    transition: .3s;
    z-index: 30;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: .3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--color-01);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--color-01);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------------------------
 # Hero Section
 --------------------------------------------------------------------------------*/
#hero .owl-carousel {
    width: 100%;
    height: 100vh;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#hero .owl-carousel .item {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#hero .owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
}

#hero .owl-carousel .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

#hero .owl-carousel .owl-dots span {
    width: .8em;
    height: .8em;
}

#hero .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--color-01);
}

#hero .welcome-content {
    position: relative;
}

#hero .owl-item .welcome-title {
    opacity: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

#hero .owl-item .welcome-subtitle {
    opacity: 0;
    margin-bottom: 35px;
    font-size: 1.5rem;
}

#hero .owl-item.active .welcome-title {
    opacity: 1;
    animation: fadeInUp ease 1s;
}

#hero .owl-item.active .welcome-subtitle {
    opacity: 1;
    animation: fadeInLeftBig ease 1s;
}

#hero .owl-item .btn-get-started {
    opacity: 0;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: .3s;
    margin-top: 25px;
    border: 2px solid #fff;
    color: #fff;
}

#hero .owl-item.active .btn-get-started {
    opacity: 1;
    animation: bounceInUp ease 1s;
}

#hero .owl-item.active .btn-get-started:hover {
    background: var(--color-01);
    border: 2px solid var(--color-01);
}

/*--------------------------------------------------------------------------------
 # Booking Section
 --------------------------------------------------------------------------------*/
#booking {
    background: var(--color-02);
    color: #fff;
    padding: 80px 0;
}

#booking .hotel-search {
    padding: 0 10%;

}

#booking .hotel-search .hotel-search-title {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Cinzel", serif;
    color: var(--color-01);
    font-size: 2rem;
    line-height: 43px;
    text-transform: uppercase;
    border-right: 3px solid var(--color-01);
}

#booking .hotel-search .hotel-search-subtitle {
    font-family: "Poppins", sans-serif;
    display: block;
    font-size: 1.3rem;
    line-height: 28px;
    color: #fff;
}

@media (max-width: 575px) {
    #booking .hotel-search .hotel-search-title {
        font-family: "Cinzel", serif;
        color: var(--color-01);
        font-size: 1.5rem;
        line-height: 43px;
        text-transform: uppercase;
        text-align: center;
        border-right: none;
        border-bottom: 2px solid var(--color-01);
        padding: 2% 0;
    }

    #booking .hotel-search .hotel-search-subtitle {
        font-family: "Poppins", sans-serif;
        display: block;
        font-size: 1rem;
        line-height: 28px;
        color: #fff;
        text-align: center;
    }
}

#booking .hotel-search .btn-hotel-search {
    padding: 6px 12px;
    color: #fff;
    background-color: var(--color-01);
    border-color: var(--color-01);
    font-family: var(--ff-navbar);
    font-size: var(--fs-navbar);
    font-weight: var(--fw-navbar);
    white-space: nowrap;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}

#booking .hotel-search .btn-hotel-search:hover,
#booking .hotel-search .btn-hotel-search:active {
    background: none;
    border-color: #fff;
}

/*--------------------------------------------------------------------------------
 # Main Section
 --------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
 # Sections
 --------------------------------------------------------------------------------*/
section {
    overflow: hidden;
}

/* Sections Header
  --------------------------------*/
.section-header .section-title {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #999;
}

/*--------------------------------------------------------------------------------
 # Parallax Sections
 --------------------------------------------------------------------------------*/
.parallax-section {
    background-color: var(--color-01);
    padding: 200px 0;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}

.parallax-message {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    padding: 0 10%;
    overflow: hidden;
    position: relative;
}

/*--------------------------------------------------------------------------------
 # Sobre Section
 --------------------------------------------------------------------------------*/
#sobre {
    background: #fff;
    padding: 80px 0 60px 0;
}

#sobre .sobre-container .sobre-background {
    min-height: 450px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #sobre .sobre-container .sobre-background {
        min-height: 270px;
    }
}

#sobre .sobre-container .background-01 {
    background: url(../img/sections_slides/sobre/sobre-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#sobre .sobre-container .background-02 {
    background: url(../img/sections_slides/sobre/sobre-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#sobre .sobre-container .background-03 {
    background: url(../img/sections_slides/sobre/sobre-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#sobre .sobre-container .background-04 {
    background: url(../img/sections_slides/sobre/sobre-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#sobre .sobre-container .background-05 {
    background: url(../img/sections_slides/sobre/sobre-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#sobre .sobre-container .content {
    background: #fff;
}

#sobre .sobre-container .title {
    color: #333;
    font-weight: 700;
    font-size: 32px;
}

@media (max-width: 768px) {
    #sobre .sobre-container .title {
        padding-top: 15px;
    }
}

#sobre .sobre-container p {
    line-height: 26px;
}

#sobre .sobre-container p:last-child {
    margin-bottom: 0;
}

#sobre .sobre-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
}

#sobre .sobre-container .icon-box .icon {
    float: left;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid var(--color-01);
}

#sobre .sobre-container .icon-box .icon i {
    color: var(--color-01);
    font-size: 24px;
    line-height: 0;
}

#sobre .sobre-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

#sobre .sobre-container .icon-box .title a {
    color: #111;
}

#sobre .sobre-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------------------------
 # Quartos Section
 --------------------------------------------------------------------------------*/
#quartos {
    background: #fff;
    padding: 80px 0 60px 0;
}

#quartos .quartos-container .quartos-background {
    min-height: 450px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #quartos .quartos-container .quartos-background {
        min-height: 270px;
        margin-bottom: 50px;
    }
}

#quartos .quartos-container .background-basic-01 {
    background: url(../img/sections_slides/quartos/quarto-basic-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-basic-02 {
    background: url(../img/sections_slides/quartos/quarto-basic-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-basic-03 {
    background: url(../img/sections_slides/quartos/quarto-basic-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-basic-04 {
    background: url(../img/sections_slides/quartos/quarto-basic-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-basic-05 {
    background: url(../img/sections_slides/quartos/quarto-basic-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-01 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-02 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-03 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-04 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-05 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-06 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-06.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-standard-07 {
    background: url(../img/sections_slides/quartos/quarto-standard-img-07.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-01 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-02 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-03 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-04 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-05 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-06 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-06.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-superior-07 {
    background: url(../img/sections_slides/quartos/quarto-superior-img-07.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-deluxe-01 {
    background: url(../img/sections_slides/quartos/quarto-deluxe-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-deluxe-02 {
    background: url(../img/sections_slides/quartos/quarto-deluxe-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-deluxe-03 {
    background: url(../img/sections_slides/quartos/quarto-deluxe-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-deluxe-04 {
    background: url(../img/sections_slides/quartos/quarto-deluxe-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-deluxe-05 {
    background: url(../img/sections_slides/quartos/quarto-deluxe-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-standard-01 {
    background: url(../img/sections_slides/quartos/quarto-estudio-standard-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-standard-02 {
    background: url(../img/sections_slides/quartos/quarto-estudio-standard-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-standard-03 {
    background: url(../img/sections_slides/quartos/quarto-estudio-standard-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-standard-04 {
    background: url(../img/sections_slides/quartos/quarto-estudio-standard-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-standard-05 {
    background: url(../img/sections_slides/quartos/quarto-estudio-standard-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-superior-01 {
    background: url(../img/sections_slides/quartos/quarto-estudio-superior-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-superior-02 {
    background: url(../img/sections_slides/quartos/quarto-estudio-superior-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-superior-03 {
    background: url(../img/sections_slides/quartos/quarto-estudio-superior-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-superior-04 {
    background: url(../img/sections_slides/quartos/quarto-estudio-superior-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-superior-05 {
    background: url(../img/sections_slides/quartos/quarto-estudio-superior-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-01 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-01.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-02 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-02.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-03 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-03.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-04 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-04.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-05 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-05.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-06 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-06.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .background-estudio-family-07 {
    background: url(../img/sections_slides/quartos/quarto-estudio-family-img-07.jpg) center center no-repeat;
    background-size: cover;
}

#quartos .quartos-container .content {
    background: #fff;
}

#quartos .quartos-container .title {
    color: #333;
    font-weight: 700;
    font-size: 32px;
}

@media (max-width: 768px) {
    #quartos .quartos-container .title {
        padding-top: 15px;
    }
}

#quartos .quartos-container p {
    line-height: 26px;
}

#quartos .quartos-container p:last-child {
    margin-bottom: 0;
}

#quartos .quartos-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
}

#quartos .quartos-container .icon-box .icon {
    float: left;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid var(--color-01);
}

#quartos .quartos-container .icon-box .icon i {
    color: var(--color-01);
    font-size: 24px;
    line-height: 0;
}

#quartos .quartos-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

#quartos .quartos-container .icon-box .title a {
    color: #111;
}

#quartos .quartos-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------------------------
 # Eventos Section
 --------------------------------------------------------------------------------*/
#eventos {
    background: #fff;
    background-size: cover;
    padding: 80px 0 60px 0;
}

#eventos .box {
    padding: 50px 20px;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #e6e6e6;
    min-height: 517px;
    position: relative;
    background: #fafafa;
}

#eventos .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: var(--color-01);
}

#eventos .icon a {
    display: inline-block;
    fill: #fff;
}

#eventos .icon i {
    color: #fff;
    font-size: 24px;
    line-height: 0;
}

#eventos .box:hover .icon {
    background: #fff;
    border: 2px solid var(--color-01);
}

#eventos .box:hover .icon i {
    color: var(--color-01);
}

#eventos .box:hover .icon a {
    color: var(--color-01);
    fill: var(--color-01);
}

#eventos .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#eventos .title a {
    color: #111;
}

#eventos .description {
    font-size: 14px;
    line-height: 24px;
}

/**
  * Calendar Events 
  */
#calendar .fc-list-event-time,
#calendar .fc-list-event-graphic {
    display: none;
}

#calendar .fc-theme-bootstrap5-shaded {
    background-color: var(--color-01-a);
}

/*--------------------------------------------------------------------------------
 # Reveillon Section
 --------------------------------------------------------------------------------*/
#reveillon {
    background: #fff;
    background-size: cover;
    padding: 80px 0 60px 0;
}

#reveillon .box {
    padding: 50px 20px;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #e6e6e6;
    min-height: 517px;
    position: relative;
    background: #fafafa;
}

#reveillon .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: var(--color-01);
}

#reveillon .icon a {
    display: inline-block;
    fill: #fff;
}

#reveillon .icon i {
    color: #fff;
    font-size: 24px;
    line-height: 0;
}

#reveillon .box:hover .icon {
    background: #fff;
    border: 2px solid var(--color-01);
}

#reveillon .box:hover .icon i {
    color: var(--color-01);
}

#reveillon .box:hover .icon a {
    color: var(--color-01);
    fill: var(--color-01);
}

#reveillon .title {
    color: #111;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#reveillon .subtitle {
    color: #a47e4e;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#reveillon .description {
    font-size: 14px;
    line-height: 24px;
}

/*--------------------------------------------------------------------------------
 # Testemunhos Section
 --------------------------------------------------------------------------------*/
#testemunhos {
    background: #f7f7f7;
    padding: 80px 0 60px 0;
}

#testemunhos .counters span {
    font-size: 48px;
    display: block;
    color: var(--color-01);
}

#testemunhos .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

#testemunhos blockquote {
    font-size: 1rem;
}

#testemunhos .carousel-indicators {
    bottom: -35px;
}

#testemunhos .carousel-indicators-colour {
    background-color: var(--color-01);
}

/*--------------------------------------------------------------------------------
 # Galeria Section
 --------------------------------------------------------------------------------*/
#galeria {
    background: #fff;
    padding: 80px 0 60px 0;
}

#galeria #galeria-filters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

#galeria #galeria-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 12px 18px 14px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #666666;
    margin: 0 5px 10px 5px;
    transition: all ease-in-out 0.3s;
    background: white;
    border-radius: 4px;
}

#galeria #galeria-filters li:hover,
#galeria #galeria-filters li.filter-active {
    color: #fff;
    background: var(--color-01);
}

#galeria #galeria-filters li:last-child {
    margin-right: 0;
}

#galeria .galeria-item {
    margin-bottom: 30px;
    overflow: hidden;
}

#galeria .galeria-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#galeria .galeria-item .galeria-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -50px;
    transition: all ease-in-out 0.3s;
    background: var(--color-01);
    padding: 10px 20px;
}

#galeria .galeria-item .galeria-info h4 {
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

#galeria .galeria-item .galeria-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

#galeria .galeria-item .galeria-info .preview-link,
#galeria .galeria-item .galeria-info .details-link {
    position: absolute;
    right: 30px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: white;
    transition: ease-in-out 0.3s;
}

#galeria .galeria-item .galeria-info .preview-link:hover,
#galeria .galeria-item .galeria-info .details-link:hover {
    color: var(--color-02);
}

#galeria .galeria-item .galeria-info .details-link {
    right: 15px;
}

#galeria .galeria-item:hover img {
    /* top: -30px; */
    transform: scale(1.2);
}

#galeria .galeria-item:hover .galeria-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
  # galeria Details
  --------------------------------------------------------------*/
.galeria-details {
    padding-top: 40px;
}

.galeria-details .galeria-details-slider img {
    width: 100%;
}

.galeria-details .galeria-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.galeria-details .galeria-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--color-01);
}

.galeria-details .galeria-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-01);
}

.galeria-details .galeria-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(102, 102, 102, 0.08);
}

.galeria-details .galeria-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.galeria-details .galeria-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.galeria-details .galeria-info ul li+li {
    margin-top: 10px;
}

.galeria-details .galeria-description {
    padding-top: 30px;
}

.galeria-details .galeria-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.galeria-details .galeria-description p {
    padding: 0;
}

/*--------------------------------------------------------------------------------
 # Contatos Section
 --------------------------------------------------------------------------------*/
#contatos {
    background: #f7f7f7;
    padding: 80px 0 60px 0;
}

#contatos #google-map {
    height: 300px;
    margin-bottom: 20px;
}

#contatos .info {
    color: #333333;
}

#contatos .info i {
    font-size: 32px;
    color: var(--color-01);
    float: left;
    line-height: 0;
}

#contatos .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}

#contatos .info .email p {
    padding-top: 5px;
}

#contatos .social-links {
    padding: 20px 0;
}

#contatos .social-links a {
    font-size: 18px;
    background: var(--color-01);
    color: #fff;
    line-height: 1;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#contatos .social-links a i {
    line-height: 0;
}

#contatos .social-links a:hover {
    background: var(--color-02);
    color: #fff;
}

#contatos .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#contatos .php-email-form .error-message br+br {
    margin-top: 25px;
}

#contatos .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contatos .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contatos .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contatos .php-email-form input,
#contatos .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contatos .php-email-form input::focus,
#contatos .php-email-form textarea::focus {
    background-color: var(--color-01);
}

#contatos .php-email-form button[type=submit] {
    background: var(--color-01);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

#contatos .php-email-form button[type=submit]:hover {
    background: var(--color-02);
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------------------------
 # Footer Section
 --------------------------------------------------------------------------------*/
#footer {
    background: var(--color-03);
    color: #fff;
    padding: 15px 0;
}

#footer a:link,
#footer a:visited {
    color: #fff;
    text-decoration: underline;
    transition: .3s ease-in-out;
}

#footer a:hover,
#footer a:active {
    color: var(--color-02);
}

#footer .copyright,
#footer .termos {
    text-align: center;
}

@media (max-width: 575px) {
    #footer .termos {
        font-size: .9rem;
    }
}

/*--------------------------------------------------------------------------------
 # Mix
 --------------------------------------------------------------------------------*/
/* Icon info badge fix */
.info-badge-fix {
    font-size: 1em !important;
    float: none !important;
}

/* Tooltip */
.tooltip-arrow::before {
    border-top-color: var(--color-01) !important;
}

.tooltip-inner {
    background-color: var(--color-01);
}

/* Swiper js */
.swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* .swiper-pagination {
    margin-top: 20px;
    position: relative;
} */

.swiper-pagination .swiper-pagination-bullet {
    width: .8rem;
    height: .8rem;
    background-color: #fff;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-01);
}

/* Google reCAPTCH */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Dropdown menu */
.dropdown-menu.show {
    /* min-width: 0; */
    /* padding: 0; */
    background-color: #18d26e;
}

/* Fix Scroll Mobile Menu When Opened */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}