@font-face {
    font-family: 'Avenir Light';
    src: url('../fonts/avenir-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GoBold Uplow';
    src: url('../fonts/gobold-uplow.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* { margin:0; padding:0; box-sizing:border-box; }
html, body { width:100%; height:100%; overflow:hidden; background-color: #131313 !important;scroll-behavior: smooth; }
body { font-family: sans-serif; }

/* ===== MENU FIXO ===== */
nav {
    position: fixed;
    display: flex !important;
    top: 0; left: 0;
    width: 100%; display: flex;
    justify-content: space-between; align-items: center;
    padding: 1rem 2rem; background: transparent;
    z-index: 1000; transition: background 0.3s ease;
}

@media screen and (max-width: 991px) {
    nav.scrolled {
        background: rgba(0, 0, 0, 0.9);
    }
}
nav .logo-home img { height: 32px; }
nav .menu { width:100%; display: flex; justify-content: space-around; gap: 2rem; }
nav .menu a { color: #fff; text-decoration: none; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; font-family: 'Montserrat', sans-serif; }

/* ===== HAMBURGER ===== */
nav .hamburger {
    display:none; position:relative;
    width:30px; height:24px;
    cursor:pointer; z-index:1001;
}
nav .hamburger span {
    position:absolute; left:0;
    width:100%; height:4px;
    background:#fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
nav .hamburger span:nth-child(1) { top:0; }
nav .hamburger span:nth-child(2) { top:10px; }
nav .hamburger span:nth-child(3) { top:20px; }
nav .hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
nav .hamburger.open span:nth-child(2) { opacity: 0; }
nav .hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
body{
    /*--main-color:  var(--main-color);*/
    --main-color:  #d67e59;
}
.mobile-menu {
    position: fixed; top: 0; left: 0;
    width:100%; height:100%; background: rgba(0,0,0,0.95);
    transform: translateX(-100%); transition: transform 0.3s ease;
    display:flex; flex-direction: column;
    align-items:center; justify-content:center; gap:2rem;
    z-index:999;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color:#fff; font-size:1.5rem; text-decoration:none;  text-transform: uppercase;  letter-spacing: 2px; font-family: 'Montserrat', sans-serif;}

/* ===== contentbody & SECTIONS ===== */
#contentbody {
    position: relative; width:100vw; height:100vh; overflow:hidden;
}
.section {
    position:absolute; top:0; left:0;
    width:100%; height:100%;
}
.section.vertical .section-content {
    width:100%; height:100%; overflow:hidden; color:#fff;
}
.cartao { min-height:100vh; }
/*.vertical .cartao img { width:100%; }*/
.horizontal .cartao { height:100vh; width:100% }
/*.cartao img {*/
/*    height:100vh; width:auto;*/
/*    object-fit: contain; max-width:100%;*/
/*}*/
.section.horizontal .slides {
    display:flex !important; min-width:100vw !important; height:100%; overflow:hidden;
}
.section.horizontal .slides .scroll-content {
    display:flex !important; flex-direction: row;
    width:auto !important; height:100%; overflow-x: visible !important;
}
.section.horizontal .slide {
    flex-shrink:0; width:100vw; height:100%;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:#fff;
}
.vertical:last-of-type .section-content { background:#050505; }

/* ===== SCROLLBAR UI HIDE ===== */
.scrollbar-track, .scrollbar-track .scrollbar-thumb { display:none!important; }

/* ===== BULLETS NAV by cartao ===== */
.bullets-nav {
    position:fixed; right:15px; top:40%; transform: translateY(-50%);
    z-index:1000; list-style:none; display:flex; flex-direction:column; align-items: center; gap:12px;width:20px
}
.bullets-nav li {
    width:20px; height:20px; cursor:pointer;
    display: flex; justify-content: center; align-items: center;
}
.bullets-nav li span {
    width:12px; height:12px; border-radius:50%;
    background:rgba(255,255,255,0.5); cursor:pointer;
    transition: all 0.3s ease; display: flex;
}
.bullets-nav li.active span{
    background: var(--main-color); width: 20px; height: 20px;
}

.social-container {
    position:fixed;
    right:60px;
    top:55%;
    z-index:1000;
    width:20px;
    transform: rotate(-90deg);
    align-items: center;
    /* empilha os links em coluna */
    display: flex;
    gap: 2rem;            /* espaçamento entre eles */
}

.social-container a {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;        /* precisa para o rotate funcionar corretamente */
    transform-origin: center;      /* pivô no meio do elemento */
    white-space: nowrap;           /* impede quebra de linha no texto */
    text-decoration: none;
    color: #fff !important;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
}

.social-container a:hover,
.social-container a:focus {
    text-decoration: none;
    outline: none; /* opcional, remove outline de foco */
}
.logo{
    max-width: 300px !important;
}

.logo.logo-eventos{
    max-width: 200px !important;
}
.bg-home{
    /*background-image: url("../../assets/images/bg-home.png");*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.bg-home .section-content{
    position: relative;
    z-index: 4;
}

.video{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.overlay-video{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    z-index: 2;
    background: rgba(0 ,0 ,0 ,0.5);
}
.container-home{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-historia{
    background-image: url("../../assets/images/bg-historia.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bg-eventos{
    background-image: url("../../assets/images/bg-eventos.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}


.bg-giftcard{
    background-image: url("../../assets/images/bg-giftcard.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}


.bg-eventos-sociais{
    background-image: url("../../assets/images/bg-eventos-sociais.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bg-premio1{
    background-image: url("../../assets/images/bg-premio01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bg-eventos-corporativos{
    background-image: url("../../assets/images/bg-eventos-corporativos.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bg-premio2{
    background-image: url("../../assets/images/bg-premio02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.bg-menu{
    /*background-image: url("../../assets/images/bg-menu.png");*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 70% 0%;
    width: 100%;
    height: 100vh;
}

.bg-contato{
    background-image: url("../../assets/images/bg-contato.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 55%;
    width: 100%;
    height: 100vh;
}

.bg-contato2{
    background-image: url("../../assets/images/bg-contato2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 55%;
    width: 100%;
    height: 100vh;
}

.bg-premio3{
    background-image: url("../../assets/images/bg-premio03.png");
    background-size: cover;
    background-repeat: no-repeat;
    /*background-position: 0% 55%;*/
    width: 100%;
    height: 100vh;
}

.text-shadow{
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.main-title{
    font-family: 'GoBold Uplow', sans-serif;
    font-size: 100px;
}

.main-title.title-eventos{
    font-family: 'GoBold Uplow', sans-serif;
    font-size: 75px;
    letter-spacing: 3px;
}

.main-subtitle{
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
}

.title-font{
    font-family: 'GoBold Uplow', sans-serif;
}

.text-font{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

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

.text-gray{
    color: #dad9d9 !important;
}

h5.title-font{
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 3px;
    line-height: 30px;
}

h4.title-font{
    text-transform: uppercase;
    /*font-size: 32px;*/
    font-size: 55px;
    letter-spacing: 3px;
    line-height: 62px;
}

h3.title-font{
    text-transform: uppercase;
    font-size: 65px;
    letter-spacing: 1px;
    line-height: 80px;
}
.main-btn{
    border: 3px solid #2C2C2C;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--main-color);
    padding: 1.5em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-btn.main-border{
    border: 3px solid var(--main-color);
    cursor: pointer;
}

.main-btn.awards{
    padding: 0.8em !important;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 16px;
    height: 100%;
}

.img-interna{
    max-width: 100%;
    width: 100%;
}
.main-btn.main-border:hover{
    color: var(--main-color) !important;
}

.main-btn:active{
    outline: none;
    text-decoration: none;
}
.main-btn:hover{
    outline: none;
    text-decoration: none;
    color: var(--main-color);
    border: 3px solid var(--main-color);
}

.select-container {
    position: relative;
    display: inline-block;
    width: 100%; /* ajuste à sua necessidade */
}

.select-default {
    /* remove estilos nativos */
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;

    /* visual */
    width: 100%;
    border:           3px solid #333;
    letter-spacing: 4px;
    color: var(--main-color);
    padding: 1.5em;
    font-size: 16px;
    font-family:      sans-serif;
    text-transform:   uppercase;
    letter-spacing:   2px;
    cursor:           pointer;
    background:   transparent url('../../assets/images/down.svg') no-repeat right 16px center;
    background-size: 22px;
    /* garante que o texto “…” não apareça no IE */
    text-indent:      0.01px;
    text-overflow:    "";
    transition: all 0.3s ease;
}

.select-default option {
    background: #131313;
}

/* opcional: foco estilizado */
.select-default:focus {
    outline: none;
    border-color: var(--main-color);
}

.container-btn-select{
    width: 400px;
    max-width: 100%
}

.bg-default {
    width: 100%;
    height: 100vh;
}

.letter-select{
    letter-spacing: 4px;
}


/* layout dos itens */
.location-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

/* estilo do link/tile */
.location-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    outline: none;
    overflow: visible;
    width: 270px;               /* ajuste à sua necessidade */
    background: #1A1A1A;
    padding: 0px 0px 30px 30px;
    transition: all 0.3s ease;
}
.location-tile:hover {
    color: #fff;
}
.location-tile:link {
    text-decoration: none;
    outline: none;
}

#form-contact .form-group {
    margin-bottom: 0px;
    position: relative;
}

.txt_mandatory{
    position: absolute;
    right: 5px;
    top: 0;
    color: #ed0623;
    font-size: 10.5px;
    font-weight: 500;
}

.txt_mandatory.txt_fix{
    right: 15px !important;
}

@media screen and (max-width:1300px) {
    .location-tile {
        width: 230px;
    }
}
/* imagem no topo */
.location-tile img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-top: -40px;
}

/* bloco de texto */
.location-body {
    padding: 16px 16px 16px 0px;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

label{
    font-family: 'Montserrat', sans-serif;
}
.location-body h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.location-body .city,
.location-body .mall {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}
.width-casas{
    width:90%
}

/* barra inferior “SAIBA +” */
.location-footer {
    margin-left: -40px;
    width: 160px;
    background: #131313;
    text-align: center;
    padding: 12px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4d4d4d;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.location-tile:hover .location-footer {
    color: var(--main-color);
}
.location-tile:hover {
    background: var(--main-color);
}

.form-contato{
    background: #131517;
}
.form-default{
    font-family: 'Montserrat', sans-serif;
    background: #0E0E0E;
    outline: none;
    text-decoration: none;
    padding: 1em 1.6em;
    border: none;
    color: #fff;
    width:100%;
    margin-bottom: 15px;
}

.container-casas{
    max-height: 500px;
    width:100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Aplica ao elemento com overflow-y (ex: body ou container específico) */
.container-casas {
    scrollbar-width: thin;             /* Para Firefox */
    scrollbar-color: var(--main-color) #3a3a3a;  /* Thumb amarelo + trilha vinho escuro */
    width: 100%;
}


.container-casas::-webkit-scrollbar{
    width: 3px;

}
.container-casas::-webkit-scrollbar-track {
    background: var(--main-color);
}

.container-casas::-webkit-scrollbar-thumb{
    background-color: #3a3a3a;
    width: 7px;
    border-radius: 0px;

    /*border: 3px solid orange; */
}

.container-casas::before{
    content: '';
}

.container-casas::after{
    content: '';
}


/*  Remove setas */
.container-casas::-webkit-scrollbar-button:single-button:vertical,
.container-casas::-webkit-scrollbar-button:single-button:decrement,
.container-casas::-webkit-scrollbar-button:single-button:increment {
    display: block;
    height: 0px;
    width: 0px;
    background-color: transparent;
    border: none;
}

.form-contato button{
    background: transparent !important;
    outline: none;
}
select.form-default{
    color: #565555 !important;

    /* remove estilos nativos */
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    cursor:           pointer;
    background:   #0E0E0E url('../../assets/images/down.svg') no-repeat right 16px center;
    background-size: 20px;
    /* garante que o texto “…” não apareça no IE */
    text-indent:      0.01px;
    text-overflow:    "";
}
.form-default::placeholder{
    color: #565555 !important;
    font-family: 'Montserrat', sans-serif;
}

.footer a{
    font-size: 14px;
    letter-spacing: 3px;
}

.logo-footer{
    width: 35px;
}
.copy{
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}


.js-animate {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}
/* ...seus .fade-up/.fade-left etc continuam iguais... */
.js-animate.in-view {
    opacity: 1;
    transform: none;
}

/* Estado inicial, fora da tela: */
.fade-up    { transform: translateY(20px); }
.fade-down  { transform: translateY(-20px); }
.fade-left  { transform: translateX(-20px); }
.fade-right { transform: translateX(20px); }
.fade       { transform: none; }

/* Quando em view, anima para posição natural + opacity 1 */
.js-animate.in-view {
    opacity: 1;
    transform: none;
}

.container-menu{
    width: 100%;
}

#hovered-region,
#clicked-region {
    background: #01374d;
    border: 1px solid #e5eabd;
    color: var(--main-color);
    display: inline-block;
    font: normal 10pt 'Ubuntu Mono';
    margin-right: 3px;
    padding: 4px 8px;
    text-align: center;
    width: 170px
}

#hovered-region span,
#clicked-region span {
    color: #e4e770;
    font-weight: bold
}
.logo-home-eventos{
    max-width: 500px;
}
/*#brazil-map {
    margin: 10px auto;
    width: 100%;
    height: 100%;
}*/

#brazil-map {
    width: 100%;
    max-width: 820px;
    aspect-ratio: 4 / 3;
    height: auto;
/*
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/

}

.icon-social i{
    color:#fff;
}

.icon-social img{
    width: 30px;
}

.icon-social-fixed img{
    width: 40px;
    transform: rotate(90deg);
}

.container-premio{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 4px solid #737373;
    padding: 60px 30px;
    transition: all 0.3s ease;
}

.container-premio:hover{
    border: 4px solid var(--main-color);
}

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

.premio-title{
    font-family: "GoBold Uplow", sans-serif;
    color:#737373;
    font-size: 26px;
    margin-bottom: 20px;
}

.premio-body{
    color: var(--main-color) !important;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
}



/* Backdrop */
.pj-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 9998;
}

/* Janela */
.pj-modal {
    font-family: "Montserrat", sans-serif;
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 9999;
    pointer-events: none;
}

.pj-modal-dialog {
    width: min(92vw, 600px);
    max-height: 90vh;
    background: #131313;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
    transform: translateY(10px) scale(.98);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

.pj-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 20px;
    border-bottom: 1px solid #1e1e1e;
    color: var(--main-color);
}

.pj-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.pj-modal-close {
    appearance: none;
    border: 0;
    background: #373737;
    color: #fff;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}

.pj-modal-body {
    padding: 0;
}

.pj-modal-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 10px 20px 10px 20px;
}

.pj-modal-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.pj-modal-info p {
    margin: 0 0 4px;
}

.pj-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid #1e1e1e;
}

.pj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .12s ease;
    border: 1px solid #1e1e1e;
}

.pj-modal-hours{
    display:grid;
    /*grid-template-columns:1fr 1fr;*/
    grid-template-columns: 1fr;
    gap:16px;
    padding: 12px 20px 16px;
    border-top:1px solid #1e1e1e;
    border-bottom:1px solid #1e1e1e;
    margin: 0px 0px 0px 0px;
}
.pj-hours-title{
    margin:0 0 4px;
    font-weight:700;
    letter-spacing:.02em;
}
.pj-hours-list p{
    margin:0 0 0px;
}
/*@media (max-width:640px){
    .pj-modal-hours{ grid-template-columns:1fr; }
}*/


.pj-btn:hover { transform: translateY(-1px); outline: none; text-decoration: none }
.pj-btn-primary { background: var(--main-color); color: #fff; border-color: var(--main-color); }
.pj-btn-secondary { background: #fafafa; color: #111; border-color: #fafafa;}

.pj-btn-primary:hover{
    color: #fff;
}

.pj-btn-secondary:hover{
    color: #111;
}

.open-detalhes{
    cursor: pointer;
}

/* Estado aberto (usado via classe .is-open no root) */
.pj-modal.is-open { pointer-events: auto; background: rgba(0, 0, 0, 0.05);}
.pj-modal.is-open + .pj-modal-backdrop { opacity: 1; pointer-events: auto; }
.pj-modal.is-open .pj-modal-dialog { opacity: 1; transform: translateY(0) scale(1); }


#cardapio-unidade{
    text-align: center;
    text-align-last: center;
}

/* Responsivo */
@media (max-width: 640px) {
    .pj-modal-content { grid-template-columns: 1fr; }
    .pj-modal-img { height: 160px; }
}



/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 1700px) {
    h3.title-font {
        font-size: 55px;
    }
}
@media (max-width: 1560px) {
    h3.title-font {
        font-size: 50px;
    }
    h4.title-font{
        font-size: 40px;
        line-height: 58px;
    }
}
@media (max-width: 1350px) {
    h3.title-font {
        font-size: 44px;
    }

    h4.title-font{
        text-transform: uppercase;
        /*font-size: 32px;*/
        font-size: 38px;
        letter-spacing: 3px;
        line-height: 48px;
    }

    h5.title-font{
        font-size: 16px;
    }
    .logo-home-eventos{
        max-width: 400px;
    }
}
@media (max-width: 1220px) {
    h3.title-font {
        font-size: 38px;
        line-height: 65px;
    }
}
@media (max-width: 991px) {
    .pj-modal-actions{
        justify-content: center;
    }
    .logo-home-eventos{
        max-width: 350px;
    }
    html, body { overflow: auto !important; height: auto !important; font-size: 14px }
    #contentbody { position: static !important; height: auto !important; overflow: hidden !important; }
    .section { height: auto; position: relative !important; transform: none !important; transition: none !important; }
    .section-content, .slides { overflow: visible !important; }
    .section.horizontal .slides, .section.horizontal .slides .scroll-content, .section.horizontal .slide { display: block !important; width: 100% !important; height: auto !important; }
    .cartao { min-height: auto !important; height: auto !important; }
    /*.cartao img { width: 100% !important; height: auto !important; object-fit: contain; }*/
    nav .menu { display: none; }
    nav .hamburger { display: flex; }
    .logo{ max-width: 150px !important;}
    .main-title { font-size: 50px;}
    .main-title.title-eventos { font-size: 40px;}
    .main-subtitle { font-size: 18px;}
    .bg-historia{ height: auto;}
    .bg-eventos{ height: auto;}
    .bg-giftcard{ height: auto;}
    .bg-eventos-sociais{ height: auto}
    .bg-premio1{ height: auto}
    .bg-eventos-corporativos{ height: auto}
    .bg-premio2{ height: auto}
    .bg-premio3{ height: auto}
    .bg-default{ height: auto;}
    .bg-menu{ height: auto;}
    .bg-contato{ height: auto;}
    .bg-contato2{ height: auto;}
    .social-container{display: none}
    h4.title-font{
        font-size:22px;
        line-height: 35px;
    }
    .main-btn {
        padding: 1em;
    }
    .select-default{
        padding: 1em;
        font-size: 14px;
    }

    h3.title-font {
        font-size: 30px;
        line-height: 45px;
    }
    .bullets-nav{display:none}
    .width-casas{
        width: 100%;
    }

    .premio-icone{
        max-width: 110px;
    }
    .premio-body {
        font-size: 13px;
    }
    .premio-title {
        font-size: 22px;
    }
}

@media (max-width: 767px){
    .bg-historia{
        background-image: none;
    }
    .bg-eventos{
        background-image: none;
    }
    .bg-giftcard{
        background-image: none;
    }
    .bg-menu{
        background-image: none;
    }
    .bg-eventos-sociais{
        background-image: none;
    }
    .bg-premio1{
        background-image: none;
    }
    .bg-eventos-corporativos{
        background-image: none;
    }
    .bg-premio2{
        background-image: none;
    }
    .container-menu{
        width: auto;
    }
    .location-tile img {
        height: 160px;
    }
    #brazil-map {
        max-width: 100%;
    }
}
@media (max-width: 575px){
    .logo{ max-width: 100px !important;}
    .main-title { font-size: 26px;}
    .main-title.title-eventos { font-size: 18px;}
    .main-subtitle { font-size: 14px;}

    h5.title-font {
        font-size: 15px;
        line-height: 20px;
        text-align: center;
    }


    .logo.logo-eventos{
        max-width: 100px !important;
    }
    .logo-home-eventos{
        max-width: 180px !important;
    }

    .main-btn.main-border{
        max-width: 220px !important;
        font-size: 12px;
        padding: 0.5em;
    }
    h4.title-font {
        font-size: 18px;
        line-height: 27px;
        text-align: center;
    }

    h3.title-font {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }



    .select-default{
        padding: 1em;
    }

}



