/* Reset CSS Boilerplate */

/* Box sizing border-box por padrão */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove decoração de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove estilos de listas */
ul,
ol {
  list-style: none;
}

/* Remove bordas de imagens */
img,
picture {
  max-width: 100%;
  display: block;
  border: 0;
}

/* Remove estilos de botões */
button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* Remove espaçamento padrão de headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}
@font-face {
  font-family: "Axiforma";
  src: url("./fonts/Axiforma-Medium.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Axiforma";
  src: url("./fonts/Axiforma-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Axiforma";
  src: url("./fonts/Axiforma-Black.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Axiforma";
  src: url("./fonts/Axiforma-Heavy.ttf");
  font-weight: 900;
}

/* Define altura mínima para body */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Axiforma', sans-serif;
  background: #fff;
  color: #222;
}

body {
  font-family: 'Axiforma', sans-serif;
}

header {
  background: #000037;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
header a {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

#hero {
  background: url('./img/bannherbt100.png') no-repeat center center;
  background-size: cover;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}


.flex-inicio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 70px;
}
.flex-fim {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.foto-radius {
  border-top-left-radius: 80px;
   border-bottom-right-radius: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.foto-radius-invertido {
  border-top-right-radius: 80px;
   border-bottom-left-radius: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
}

#sobre {
  background-color: #000037;
  color: #FFF;
  padding: 70px 0;
}
#sobre.sobre-hotel {
  background-color: #ffffff;
  color: #000037;
}

#sobre h1 {
  color: #FFF;
  font-family: Axiforma;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 96px */
  letter-spacing: -0.704px;
}
#sobre.sobre-hotel h1 {
  color: #000037;
}

p {
  color: #FFF;

  font-family: Axiforma;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#sobre.sobre-hotel p {
  color: #000037;
}

.elemento-seta {
  width: 120px;
  margin-bottom: 40px;
  margin-top: -105px;
  position: relative;
}

.titulo-bg {
  background-color: #000037;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 70px;
  color: #FFF;
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 80px;;
}


#reservas {
  background: #FD7502;
}
#reservas .card {
  margin: 0 30px;
  background: transparent;
  border: none;
  margin-bottom: 60px;
}
#reservas .conteudo-card {
  background: #FFF;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 20px;
  text-align: center;
}
#reservas h3 {
  background: #047A72;
  color: #FFF;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 20px;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px; /* 125% */
  text-transform: uppercase;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#reservas .preco {
  color: #5AB5A0;
  text-align: center;
  font-family: Axiforma;
  font-size: 21px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  margin-bottom: 10px;
}
#reservas .conteudo-card li {
  color: #047A72;
  text-align: center;
  font-family: Axiforma;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#reservas .conteudo-card li small {
  display: block;
  font-family: Axiforma;
  font-size: 10px;
  text-transform: none;
}

#reservas a {
  border-radius: 30px;
  background: #F00;
  color: #FFF;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


#hotel {
  background: #fff;
}
#hotel .container {
  position: relative;
}
.bg-hotel-fixo {
  background: #fff url('./images/bg-hotel.png') no-repeat top center;
  background-size: 100%;
  background-size: cover;
  height: 325px;
  width: 100%;
  position: absolute;
}

#hotel .titulo-bg {
  display: flex;
  width: 100%;
  padding: 30px 20px;
  margin-bottom: 50px;
}
.grid-hotel {
  padding: 0 100px 0 50px;
}
#hotel h4 {
  color: #FFF;
  font-size: 54px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 96px */
  letter-spacing: -0.704px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
#hotel p {
  color: #047A72;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}


.espaco-container {
  margin: 50px 0 30px;
}

.espaco-container img {
  max-height: 280px;
}

.splash-com-titulo {
  position: relative;
}
.bg-opaco {
  height: 40px;
  background-color: #000037;
  width: 100%;
  position: relative;
}
.imagem-splash {
  background: url(./img/home-destaque.jpg) no-repeat center 0;
  background-size: cover;
  height: 60vh;
  min-height: 600px;
}
.imagem-splash.splash-morro {
  background: url(./img/destaque-morro-2.jpg) no-repeat center 0;
  background-size: cover;
  height: 60vh;
  min-height: 600px;
}
.grid-patrocinadores {
  margin: 40px 0;
}
h3.titulo-patrocinadores {
  color: white;
  background-color: #00BEA1;
  padding: 20px 25px;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 800;
}
.imagem-splash .elemento-seta {
  top: 0px;
  margin-top: -35px;
  margin-bottom: 10px;
}
.imagem-splash .titulo-splash {
  color: #FFF;
display: block;
font-family: Axiforma;
font-size: 54px;
font-style: normal;
font-weight: 800;
line-height: 150%; /* 96px */
letter-spacing: -0.704px;
}
.imagem-splash .texto-splash {
  color: #FFF;
font-family: Axiforma;
font-size: 20px;
display: block;
font-style: normal;
font-weight: 500;
line-height: 150%;
letter-spacing: -0.33px;
}




#estrutura-topo {
  background-color: #FF0000;
}
#estrutura-topo .titulo-bg {
  background-color: #169C7C;
  margin-bottom: 50px;
}

#estrutura {
  background-color: #05A89F;
  padding-bottom: 50px;
}
#estrutura .container {
  padding: 50px 0;
}


#estrutura-topo h4 {
  color: #FFF;
  font-size: 54px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 96px */
  letter-spacing: -0.704px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.grid-texto {
  columns: 2;
  column-gap: 50px;
  padding: 0px;
}


.topo-titulo {
  background: #000037;
  padding: 30px 0;
  text-align: left;
}
.topo-titulo h2 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  text-transform: uppercase;
}

.splash-estrutura .imagem-splash .elemento-seta {
  top: 0px;
  margin-top: -35px;
  position: absolute;
  z-index: 1;
}

.splash-estrutura, .container {
  position: relative;
}

.splash-estrutura .titulo-splash {
  padding-top: 50px;
}

.splash-estrutura .imagem-splash {
  background: url(./images/foto-estrutura-2.jpg) no-repeat center 0;
  background-size: cover;
  height: 60vh;
  min-height: 650px;
}

.splash-estrutura-2 .imagem-splash {
  background: url(./images/foto-estrutura-3.jpg) no-repeat center 0;
  background-size: cover;
  height: 50vh;
  min-height: 550px;
}

.splash-estrutura-3 .imagem-splash {
  background: url(./images/foto-estrutura-4.jpg) no-repeat center 0;
  background-size: cover;
  height: 60vh;
  min-height: 550px;
}

.splash-estrutura-4 .imagem-splash {
  background: url(./images/foto-estrutura-5.jpg) no-repeat center 0;
  background-size: cover;
  height: 60vh;
  min-height: 600px;
}

.splash-estrutura-4 .imagem-splash .elemento-seta {
  top: 0px;
  margin-top: -35px;
  position: absolute;
  z-index: 1;
}
.splash-estrutura-4 .titulo-splash {
  padding-top: 50px;
}

#hotel.hospedagem {
  padding-bottom: 40px;
}
#hotel.hospedagem .bg-hotel-fixo {
  height: 370px;
}


#hotel.hospedagem  h4 {
  line-height: 110%;
  color: #00BEA1;
}
#hotel.hospedagem p {
  color: #000037;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 18px;
  line-height: 145%;
}

#programacao {
  background-color: #05A89F;
  padding-bottom: 50px;
}
#programacao .container {
  padding: 50px 0;
}

#programacao ul {
  margin-top: 40px;
}
#programacao li strong {
color: #062C31;

font-family: Axiforma;
font-size: 21px;
font-style: normal;
font-weight: 700;
}
#programacao li {
  color: #FFF;
font-family: Axiforma;
font-size: 21px;
font-style: normal;
font-weight: 700;
}

.foto-hotel-hero {
  margin-top: 15px;
}



.canvas-app {
  background-color: #f8ed6a;
}
#hotel.categorias {
   background: #fff url('./images/bgCategoriasHero.png') no-repeat top center;
  background-size: 100%;
  background-size: cover;

  width: 100%;
  position: relative;
}
#hotel .container-categorias p {
  color: #FFF;
    font-size: 21px;
}
#hotel.programacao {
  margin: 30px 0;
}
#hotel.programacao h4 {
  color: #000037;
  line-height: 120%;
}
#hotel.programacao p {
  color: #000037;
  font-size: 16px;
}

#hotel.categorias .titulo-bg {
  margin-bottom: 50px;
}

.container-categorias {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-categorias ul {
  background-color: #05A89F;
  padding: 30px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #FFF;
  font-size: 23px;
  margin: 20px 10px;
}

#como-chegar .bg-verde {
  background-color: #05A89F;
  color: #FFF;
}
#como-chegar .bg-azul {
  background-color: #000037;
  color: #FFF;
}
#como-chegar .bg-branco {
  background-color: #FFF;
  color: #000037;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
#como-chegar .bg-branco p {
  color: #000037;
}

#como-chegar  h2 {
  text-transform: uppercase;
  font-weight: 800;
}

#como-chegar .medium-7 {
  padding: 40px;
}

#como-chegar .bg-verde .imagem-como {
  background: #fff url('./img/comochegar-1.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}
#como-chegar .bg-azul .imagem-como  {
  background: #fff url('./img/comochegar-2.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}
#como-chegar .bg-azul .botao-inscricao  {
  background-color: #05A89F;
}
#como-chegar .bg-branco .imagem-como  {
  background: #fff url('./img/comochegar-3.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}




#como-chegar .imagem-zimbo  {
  background: #fff url('./img/hotel-zimbo.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}
#como-chegar .imagem-patua  {
  background: #fff url('./img/hotel-patua.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}
#como-chegar .imagem-paraiso  {
  background: #fff url('./img/hotel-paraiso.jpg') no-repeat center center;
  background-size: 100%;
  background-size: cover;
}


.splash-programacao .imagem {
  background: #fff url('./images/bgProgramacao.png') no-repeat top center;
  background-size: 100%;
  background-size: cover;

  width: 100%;
  position: relative;
}
.imagem .elemento-seta {
top: 0px;
margin-top: -35px;
margin-bottom: 10px;
position: absolute;
}
.imagem .titulo-splash {
  padding-top: 60px;
position: relative;
display: block;
}
.splash-programacao .titulo-splash img {
  max-height: 200px;
}


.splash-programacao .foto-hotel-hero {
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 50px;
  border-top-left-radius:150px;
border-bottom-right-radius: 150px;
}

#inscricoes-app {
  background-color: #05A89F;
}
.centraliza-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#inscricoes-app .imagem-splash {
  background: url(./images/foto-categorias-3.jpg) no-repeat center 0;
  background-size: cover;
  height: 65vh;
  min-height: 700px;
}


.container-botoes-inscricao {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

a.botao-inscricao {
  background-color: #000037;
  color: #FFF;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  padding: 20px 30px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  clear: both;
  margin-bottom: 20px;
}

#inscricoes-app h2 {
  color: #FFF;

font-family: Axiforma;
font-size: 54px;
font-style: normal;
font-weight: 800;
line-height: 150%; /* 96px */
letter-spacing: -0.704px;
}
#inscricoes-app p {
  color: #FFF;

font-family: Axiforma;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 111.111% */
}
#inscricoes-app p.app-disponivel {
  font-size: 21px;
  margin-bottom: 10px;;
}

#inscricoes-app ul {
  border-radius: 0px 30px;
background: #F67F00;
padding: 20px 40px;
margin: 20px 0 30px;
display: inline-block;
}
#inscricoes-app li {
  color: #FFF;

font-family: Axiforma;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 140%; /* 125% */
}

#inscricoes-app .marcas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 30px;
}
#inscricoes-app .marcas a {
  max-width: 40%;
  display: inline-block;
  margin: 0 3%;
  transition: all 0.3s ease;
}
#inscricoes-app .marcas a:hover {
  transform: scale(1.05);
}


.imagem-splash.splash-programacao {
    background: url(./img/splash-programacao.jpg) no-repeat center 0;
    background-size: cover;
    height: 50vh;
    min-height: 600px;
  }


.oculta-desktop {
  display: none;
}



footer {
  background: #05A89F;
  padding: 50px 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer img {
  max-width: 300px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
height: 4px;
width: 100%;
background: #fff;
margin: 2.5px 0;
border-radius: 2px;
transition: 0.3s;
position: relative;
}


/* Animação para virar X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.fim-menu {
  margin-left: 80px;
}

@media only screen and (max-width: 40em) {
    .fim-menu {
      margin-left: 0px;
    }
    body {
    padding-top: 75px;
    }
    header .oculta-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    .logo-mobile {
    max-width: 150px;
    }
    .menu-toggle {
    display: flex;
    position: absolute;
    top: 5px;
    right: 30px;
    }
    header {
    height: 75px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    }
    header ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #000037;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    z-index: 1000;
    }
    header ul.open {
    display: flex;
    align-items: center;
    }
    header a {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    }
    .container {
    width: 100%;
    padding: 0 20px;
    }
    #topo-evento {
    padding: 30px 40px 0;
    }
    .flex-inicio {
    padding-bottom: 25px;
    }
    #topo-evento {
    border-bottom-right-radius: 50px;
    }
    .elemento-seta {
    width: 75px;
    margin-bottom: 20px;
    margin-top: -92px;
    position: relative;
    }
    #hero {
    padding-bottom: 10px;
    }
    #sobre h1 {
    color: #FFF;
    font-family: Axiforma;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.704px;
    margin-bottom: 20px;
    }
    p {
    font-size: 14px
    }
    #sobre {
    padding: 70px 0 10px;
    }
    .titulo-bg {
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 50px;
    color: #FFF;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 140%;
    }
    #reservas .card {
    margin: 0 20px;
    background: transparent;
    border: none;
    margin-bottom: 40px;
    }
    footer img {
    max-width: 140px;
    }
    footer {
    background: #05A89F;
    padding: 30px 0;
    }
    .grid-hotel {
    padding: 0;
    }
    #hotel h4 {
    color: #047A72;
    font-size: 41px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.704px;
    text-transform: uppercase;
    margin-bottom: 20px;
    }
    #hotel p {
    color: #047A72;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
    }
    .imagem-splash {
    background: url(./images/foto-hotel-2.jpg) no-repeat center 0;
    background-size: cover;
    height: 50vh;
    min-height: 540px;
    }


    #estrutura-topo h4 {
    color: #FFF;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.704px;
    text-transform: uppercase;
    margin-bottom: 20px;
    max-width: 70%;
    }
    #estrutura-topo .titulo-bg {
    background-color: #169C7C;
    margin-bottom: 20px;
    }
    #estrutura .container {
    padding: 20px;
    }
    .grid-texto {
    columns: 1;
    column-gap: 0;
    padding: 0px;
    }
    .splash-estrutura .imagem-splash .elemento-seta {
    top: 0px;
    margin-top: -22px;
    position: absolute;
    z-index: 1;
    }
    #estrutura {
    background-color: #05A89F;
    padding-bottom: 10px;
    }
    .imagem-splash .titulo-splash {
    color: #FFF;
    display: block;
    font-family: Axiforma;
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.704px;
    max-width: 70%;
    }
    .splash-estrutura .imagem-splash {
    background-size: cover;
    min-height: 500px;
    }
    .splash-estrutura-2 .imagem-splash {
    background-size: cover;
    min-height: 230px;
    height: auto;
    }
    .splash-estrutura-3 .imagem-splash {
    background-size: cover;
    height: auto;
    min-height: 280px;
    }
    .splash-estrutura-4 .imagem-splash {
    background-size: cover;
    height: auto;
    min-height: 300px;
    }
    .splash-estrutura-4 .imagem-splash .elemento-seta {
    top: 0px;
    margin-top: -22px;
    position: absolute;
    z-index: 1;
    }
    #programacao .container {
    padding: 20px 40px 20px 20px;
    }
    #programacao img {
    max-width: 100%;
    display: block;
    }
    #programacao li {
    color: #FFF;
    font-family: Axiforma;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
    }
    #programacao li strong {
    color: #062C31;
    font-family: Axiforma;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    }
    .imagem .elemento-seta {
    top: 0px;
    margin-top: -22px;
    margin-bottom: 10px;
    position: absolute;
    }

    #hotel.categorias h4 {
    color: white;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.704px;
    text-transform: uppercase;
    }
    .container-categorias ul {
    padding: 15px;
    font-size: 18px;
    margin: 10px 0px;
    }
    #hotel .container-categorias p {
    font-size: 19px;
    line-height: 130%;
    margin-top: 15px;
    }
    #inscricoes-app p {
    color: #FFF;
    font-family: Axiforma;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    }
    #inscricoes-app h2 {
    color: #FFF;
    font-family: Axiforma;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.704px;
    }
    #inscricoes-app li {
    color: #FFF;
    font-family: Axiforma;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    }
    .tennis-up {
    max-width: 260px;
    }
    #inscricoes-app p.app-disponivel {
    font-size: 16px;
    margin-bottom: 0px;
    }
    .imagem-splash .elemento-seta {
    top: 0px;
    margin-top: -23px;
    margin-bottom: 10px;
    }

    #hero {
    background: #00BEA1;
    }
    .topo-titulo h2 {
    font-size: 21px;
    }

    #como-chegar .imagem-como {
      height: 50vh !important;
    }

}






