/* CSS Variables for Santana Gold */
:root {
    --color-gold: #c6a059;
    --color-gold-hover: #b38c45;
    --color-dark: #121212;
    --color-dark-gray: #1a1a1a;
    --color-text: #666666;
    --color-bg-light: #ffffff;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --max-width: 1200px;
}

/* Reset extensions */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.itens_mobile {
    display: none !important;
}

.itens_main {
    display: block !important;
}

@font-face {
    font-family: 'Reey Regular';
    src: url('../font/Reey-Regular.woff') format('woff');
}

.alt-font {
    font-family: "Reey Regular", cursive;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button,
input,
textarea {
    font-family: inherit;
    outline: none;
}

/* Layout Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-gold {
    color: var(--color-gold);
}

.section-title {
    font-size: 20px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 30px;
    color: var(--color-dark);
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-subtitle.center {
    text-align: center;
}

.btn {
    display: inline-block;
    width: auto;
    min-width: 125px;
    padding: 0 20px;
    position: relative;
    height: 40px;
    line-height: 40px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px 0;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--gold {
    background-color: var(--color-gold);
    color: #fff;
}

.btn--gold:hover {
    background-color: var(--color-gold-hover);
}

/* Animations Base (Intersection Observer) */
.animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate--fade-up {
    transform: translateY(30px);
}

.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}


.page-hero {
    position: relative;
    height: 40vh;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 30px;
    z-index: 1;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}

.page-hero__breadcrumb {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.page-hero.alt {
    padding-bottom: 120px;
}

.page-hero.alt .container.page-hero__content p span:last-of-type {
    display: block;
}

.owl-dots {
    display: block;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot.active span {
    background-color: var(--color-gold) !important;
}


.local-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    width: 350px;
    height: 200px;
    border-bottom: 5px #95BC65 solid;
}

.local-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-card .icon {
    width: 12px;
    margin-right: 2px;
    display: inline-block;
}

.local-card__badge-time {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 10;
}

.local-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0) 100%);

    color: #fff;
    padding: 20px 10px 12px;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}


#whats_fixed {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    object-fit: cover;
    z-index: 500;
    transition: 0.3s;
}

#whats_fixed:hover {
    transform: scale(1.1);
}

#whats_fixed img {
    width: 100%;
    height: 100%;
    position: relative;
}

#whats_fixed::after,
#whats_fixed::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid #0ba360;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    animation: WaveWhatsApp 1.5s ease infinite;
}

#whats_fixed::after {
    animation-delay: .5s;
}

@keyframes WaveWhatsApp {
    0% {
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media only screen and (max-width:1400px) {
    body {
        zoom: 90%
    }
}

@media only screen and (max-width:1200px) {
    body {
        zoom: 80%
    }
}

@media only screen and (max-width:1000px) {
    body {
        zoom: 100%
    }
}