/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   VARIÁVEIS
========================= */
:root {
    --landin-primary: #c6a46c ;
    --landin-primary-dark: #6d513b;
    --landin-secondary: #f2ece5;
    --landin-dark: #1f1f1f;
    --landin-light: #ffffff;
    --landin-text: #5f5a55;
    --landin-border: rgba(0, 0, 0, 0.08);
    --landin-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --landin-radius: 18px;
}

/* =========================
   BASE
========================= */
body.landin-body {
    font-family: "Manrope", sans-serif;
    color: #2b2b2b;
    background-color: #f8f5f1;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

/* =========================
   BOTÕES
========================= */
.landin-btn-primary {
    background: linear-gradient(135deg, #c6a46c, #e5c78a);
    color: #1a1a1a;
    font-size: 13px;
    border: 1px solid #c6a46c;
    border-radius: 5px; /* 🔥 igual ao reserva */
font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(198, 164, 108, 0.25);
}

.landin-btn-primary:hover {
    background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
    border-color: #3a3a3a;
    color: #fff;

    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* brilho */
.landin-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.6s;
}

.landin-btn-primary:hover::after {
    left: 120%;
}

/* hover → mantém padrão do sistema */
.landin-btn-outline-light:hover {
    background: linear-gradient(135deg, #c6a46c, #e5c78a);
    border-color: #c6a46c;
    color: #1a1a1a;

    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(198, 164, 108, 0.25);
}

/* brilho consistente com os outros */
.landin-btn-outline-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.6s;
}

.landin-btn-outline-light:hover::after {
    left: 120%;
}

.landin-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 5px;
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
font-size: 13px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

.landin-btn-outline:hover {
    background: linear-gradient(135deg, #c6a46c, #e5c78a);
    border-color: #c6a46c;
    color: #1a1a1a;

    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(198, 164, 108, 0.25);
}

/* brilho igual */
.landin-btn-outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.6s;
}

.landin-btn-outline:hover::after {
    left: 120%;
}
/* =========================
   HEADER
========================= */
.landin-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.35s ease;
}

/* =========================
   TOP BAR
========================= */
.landin-topbar {
    background: #000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

.landin-topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.landin-topbar-item,
.landin-topbar-item a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    letter-spacing: 0.2px;
}

/* =========================
   MAIN NAV
========================= */
.landin-mainnav {
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
    z-index: 10;
}

.landin-mainnav-inner {
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}

.landin-nav-side {
    display: flex;
    align-items: center;
}

.landin-nav-left {
    justify-content: flex-start;
}

.landin-nav-right {
    justify-content: flex-end;
}

.landin-nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.landin-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.landin-logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.35s ease;
    display: block;
}

/* =========================
   HAMBURGER
========================= */
.landin-menu-toggle {
    width: 54px;
    height: 54px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10001;
}

.landin-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
}

.landin-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    display: block;
}

/* =========================
   HEADER FIXO NO SCROLL
========================= */
.landin-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: landinSlideDown 0.35s ease;
}

.landin-header.is-scrolled .landin-topbar {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.landin-header.is-scrolled .landin-mainnav {
    background: #2b2b2b;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.landin-header.is-scrolled .landin-mainnav-inner {
    min-height: 82px;
}

@keyframes landinSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* =========================
   OVERLAY MENU
========================= */
.landin-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.landin-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
.landin-nav-right {
  display: flex;
  justify-content: flex-end;
}

.landin-nav-left {
  display: flex;
  align-items: center;
}
/* =========================
   MENU LATERAL
========================= */
.landin-sidemenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #2b2b2b;
    z-index: 9998;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
}
.landin-sidemenu {
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.landin-sidemenu.active {
    transform: translateX(0);
}

.landin-sidemenu.active {
    left: 0;
}

.landin-sidemenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.landin-sidemenu-header h4 {
    font-weight: 500;
    color: #c6a46c ;
}
.landin-nav-left {
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.landin-nav-right {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}
.landin-menu-toggle {
  transition: opacity 0.3s ease;
}

body.menu-open .landin-menu-toggle {
  opacity: 0;
  pointer-events: none;
}
.landin-menu-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}

.landin-sidemenu-nav ul li {
    margin-bottom: 18px;
}

.landin-sidemenu-nav ul li a {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase
   
}

.landin-sidemenu-nav ul li a:hover {
    color: var(--landin-primary);
    padding-left: 6px;
}
.landin-location {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
    color: rgba(255,255,255,0.7);
}

.landin-city {
    font-weight: 400;
}
.landin-header {
  transition: 0.3s;
}

.landin-header.is-scrolled {
  background-color: rgba(30,30,30,0.95);
  backdrop-filter: blur(6px);
}
.landin-divider {
    margin: 0 6px;
    color: #c8a96a; /* dourado */
}

.landin-brand {
    font-weight: 600;
    color: #c8a96a;
}


/* =========================
   HERO
========================= */
/* =========================
   HERO BASE
========================= */
.landin-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--landin-light);
    display: flex;
    align-items: center;
}

/* =========================
   SLIDER
========================= */
.landin-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.landin-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: landinHeroFade 25s infinite;
    will-change: opacity, transform;
}

/* =========================
   IMAGENS (troque pelas suas)
========================= */
.landin-hero-slide:nth-child(1) {
    background-image: url("../img/landing_e_charm_refugio_das_alturas_chale_luiz_santo_antonio_do_pinha_hero_banner_01.webp");
    animation-delay: 0s;
}

.landin-hero-slide:nth-child(2) {
    background-image: url("../img/landing_e_charm_refugio_das_alturas_chale_luiz_santo_antonio_do_pinha_hero_banner_02.webp");
    animation-delay: 5s;
}

.landin-hero-slide:nth-child(3) {
    background-image: url("../img/landing_e_charm_refugio_das_alturas_chale_luiz_santo_antonio_do_pinha_hero_banner_03.webp");
    animation-delay: 10s;
}

.landin-hero-slide:nth-child(4) {
    background-image: url("../img/landing_e_charm_refugio_das_alturas_chale_luiz_santo_antonio_do_pinha_hero_banner_04.webp");
    animation-delay: 15s;
}

.landin-hero-slide:nth-child(5) {
    background-image: url("../img/landing_e_charm_refugio_das_alturas_chale_luiz_santo_antonio_do_pinha_hero_banner_05.webp");
    animation-delay: 20s;
}

/* =========================
   ANIMAÇÃO (fade + zoom)
========================= */
@keyframes landinHeroFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
        transform: scale(1.08);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

/* =========================
   OVERLAY ESCURO
========================= */
.landin-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: 2;
}

/* =========================
   CONTEÚDO ACIMA
========================= */
.landin-hero .container {
    position: relative;
    z-index: 3;
}

/* =========================
   TEXTOS
========================= */
.landin-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

.landin-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 720px;
}

.landin-subtitle {
    max-width: 650px;
}

/* =========================
   SEÇÕES
========================= */
.landin-section {
    padding: 100px 0;
}

.landin-section-alt {
    background-color: var(--landin-secondary);
}

.landin-section-label {
    color: var(--landin-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.landin-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--landin-dark);
    line-height: 1.2;
}

.landin-text {
    color: var(--landin-text);
    font-size: 1rem;
}

/* =========================
   IMAGENS
========================= */
.landin-rounded-img {
    width: 100%;
    border-radius: var(--landin-radius);
    box-shadow: var(--landin-shadow);
    object-fit: cover;
}

/* =========================
   CARDS
========================= */
.landin-card {
    background-color: var(--landin-light);
    border-radius: var(--landin-radius);
    overflow: hidden;
    box-shadow: var(--landin-shadow);
    transition: transform 0.3s ease;
}

.landin-card:hover {
    transform: translateY(-6px);
}

.landin-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.landin-card-body {
    padding: 28px;
}

.landin-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--landin-dark);
    margin-bottom: 12px;
}

/* =========================
   CTA
========================= */
.landin-cta {
    padding: 100px 0;
    background-color: var(--landin-light);
}




/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991px) {
    .landin-title {
        font-size: 2.5rem;
    }

    .landin-section-title {
        font-size: 2rem;
    }

    .landin-mainnav-inner {
        min-height: 88px;
    }

    .landin-logo-img {
        max-height: 80px;
    }

    .landin-topbar-inner {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 10px 0;
        text-align: center;
    }

    .landin-sidemenu {
        max-width: 88%;
    }

    .landin-hero {
        padding: 150px 0 90px;
    }
}

@media (max-width: 576px) {
    .landin-title {
        font-size: 2rem;
    }

    .landin-subtitle {
        font-size: 1rem;
    }

    .landin-section {
        padding: 70px 0;
    }

    .landin-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .landin-logo-img {
        max-height: 80px;
        margin-right: 15px;
        margin-top: 10px
    }

    .landin-sidemenu-nav ul li a {
        font-size: 1.2rem;
    }
}

/* =========================
   LANDIN EXPANDABLE CARDS
========================= */

.landin-cards {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--landin-radius);
    box-shadow: var(--landin-shadow);
}

.landin-card-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.landin-card-item:hover {
    flex: 3;
}

.landin-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
   filter: grayscale(40%);
}

.landin-card-item:hover img {
    transform: scale(1.2);
    filter: grayscale(0%);
}

/* Overlay */
.landin-card-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: 0.3s;
}

.landin-card-item:hover::after {
    opacity: 1;
}

/* Title */
.landin-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 2;
    transition: 0.3s;
    font-family: "Libre Baskerville", serif;
    font-size: 14px;
    text-transform: uppercase;
}

.landin-card-item:hover .landin-card-title {
    background: var(--landin-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Description */
.landin-card-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 15px;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: 0.3s;
    z-index: 3;
}

.landin-card-item:hover .landin-card-desc {
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .landin-cards {
        flex-direction: column;
        height: auto;
    }

    .landin-card-item {
        height: 250px;
    }

    .landin-card-item img {
        filter: grayscale(0%);
    }

    .landin-card-desc {
        transform: translateY(0);
    }

    .landin-card-item::after {
        opacity: 1;
    }
}

/* =========================
   ROOMS SECTION
========================= */

.landin-rooms {
    padding: 100px 0;
}

.landin-rooms-title {
    font-size: 2.6rem;
    margin-bottom: 60px;
    font-weight: 600;
    color: var(--landin-dark);
}

/* GRID PRINCIPAL */
.landin-rooms-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

/* GRID DIREITA */
.landin-room-sm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CARD BASE */
.landin-room {
    position: relative;
    border-radius: var(--landin-radius);
    overflow: hidden;
    cursor: pointer;
}

.landin-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* CARD GRANDE */
.landin-room-lg {
    height: 100%;
    min-height: 520px;
}

/* OVERLAY ESCURO */
.landin-room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    z-index: 1;
}

/* PREÇO */
.landin-room-price {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e7b96a;
    color: #000;
    padding: 10px 14px;
    font-weight: 600;
    border-radius: 6px;
    z-index: 2;
    font-size: 0.95rem;
}

.landin-room-price span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
}

/* CONTEÚDO */
.landin-room-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
}

.landin-room-content h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.landin-room-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* HOVER */
.landin-room:hover img {
    transform: scale(1.08);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
    .landin-rooms-grid {
        grid-template-columns: 1fr;
    }

    .landin-room-lg {
        min-height: 400px;
    }

    .landin-room-sm-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   NAV LEFT (SOCIAL + CTA)
========================= */

.landin-nav-left {
    gap: 18px;
}

/* redes sociais */
.landin-social-icons {
    display: flex;
    gap: 12px;
}

.landin-social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c6a46c;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.landin-social-icons a:hover {
    background: var(--landin-primary);
    transform: translateY(-2px);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991px) {
    .landin-nav-right {
        display: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* H1 - impacto */
h1 {
    font-size: 3rem;
    letter-spacing: 0.15em;
}

/* H2 - seções */
h2 {
    font-size: 2rem;
}

/* H3 - subtítulos */
h3 {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

h1 {
    text-transform: uppercase;
}

h2 {
    text-transform: none;
}

h3 {
    text-transform: none;
}

.landin-brand-highlight {
    color: #c6a46c;
    font-weight: 500;
}

.landin-topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
   padding: 10px;
}

.landin-topbar-left {
    justify-self: start;
}

.landin-topbar-center {
    justify-self: center;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase; 
    font-family: "Libre Baskerville", serif;
}

.landin-topbar-right {
    justify-self: end;
}

/* Redes */
.landin-social-icons {
    display: flex;
    gap: 12px;
}

.landin-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.landin-social-icons a:hover {
    color: #c6a46c;
}

.landin-btn-reserva {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 5px;
   text-transform: uppercase;
    background: linear-gradient(135deg, #c6a46c, #e5c78a);
    border: 1px solid #c6a46c;
    color: #2b2b2b;
    font-weight: 600;
    text-decoration: none;
    font-family: "Libre Baskerville", serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(198, 164, 108, 0.25);
  font-size: 13px;
}

/* 🔥 HOVER → CINZA SOFISTICADO */
.landin-btn-reserva:hover {
    background: #2b2b2b;
    border-color: #3a3a3a;

    color: #ffffff;

    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* seta */
.landin-btn-reserva i {
    transition: transform 0.25s ease;
}

.landin-btn-reserva:hover i {
    transform: translateX(4px);
}

/* brilho sutil */
.landin-btn-reserva::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );

    transition: 0.6s;
}

.landin-btn-reserva:hover::after {
    left: 120%;
}
.landin-btn-reserva i {
    transition: none;
    transform: none !important;
}
.landin-social-icons a {
    text-decoration: none !important;
}

.landin-amenities {
    padding: 100px 0;
    background: #f8f5f1;
}

.landin-section-subtitle {
    color: var(--landin-text);
    margin-bottom: 50px;
}

/* GRID */
.landin-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* ITEM */
.landin-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    cursor: default;
    transition: 0.3s ease;
}

/* ÍCONE */
.landin-amenity i {
    font-size: 28px;
    color: #c6a46c;
    transition: 0.3s ease;
}

/* TEXTO */
.landin-amenity span {
    font-size: 0.9rem;
    color: #5f5a55;
    letter-spacing: 0.04em;
}

/* HOVER */
.landin-amenity:hover i {
    color: #c6a46c;
    transform: translateY(-3px);
}

.landin-amenity:hover span {
    color: #000;
}

/* =========================
   SCROLLBAR ELEGANTE
========================= */

/* Largura */
::-webkit-scrollbar {
    width: 10px;
}

/* Fundo */
::-webkit-scrollbar-track {
    background: #1f1f1f;
    /* combina com seu dark */
}

/* Barra */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c6a46c, #8c6b4f);
    border-radius: 20px;
    border: 2px solid #1f1f1f;
    transition: 0.3s ease;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d8b87f, #a17c52);
}

html,
body {
    overflow-x: hidden;
}

::-webkit-scrollbar-thumb {
    backdrop-filter: blur(6px);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c6a46c #1f1f1f;
}

.landin-btn-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 500;
    color: #c6a46c;
    border: 1px solid rgba(198, 164, 108, 0.4);
    border-radius: 5px;
    text-decoration: none;
    background: rgba(198, 164, 108, 0.08);
    transition: all 0.3s ease;
}

.landin-btn-route i {
    font-size: 0.8rem;
}

/* HOVER PREMIUM */
.landin-btn-route:hover {
    background: #c6a46c;
    color: #1f1f1f;
    border-color: #c6a46c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(198, 164, 108, 0.3);
}

.landin-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase;
}

.landin-btn-franchise {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

.landin-btn-franchise i {
    font-size: 0.75rem;
}

/* Hover mais sutil */
.landin-btn-franchise:hover {
    color: #fff;
    border-color: #c6a46c;
    background: rgba(198, 164, 108, 0.1);
}



.landin-btn-route:hover {
    background: #c6a46c;
    color: #1f1f1f;
    border-color: #c6a46c;
    transform: translateY(-1px);
}

.landin-divider {}

.landin-divider-text {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c6a46c;
}

.landin-divider-wave {
    width: 300px;
    height: 30px;
}

.landin-divider-wave path {
    fill: none;
    stroke: #c6a46c;
    stroke-width: 2;
}

/* onda de trás (mais suave/transparente) */
.wave-back {
    opacity: 0.5;
    transform: translateY(-2px);
}

/* onda da frente (principal) */
.wave-front {
    opacity: 0.9;
}

.landin-location {
    padding: 80px 0;
    background: #f8f5f2;
}

.landin-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
}

.landin-location-content {
    padding: 20px 30px;
}

.landin-location-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.landin-address {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.landin-description {
    color: #666;
    margin-bottom: 25px;
}

.landin-location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-route {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-route:hover {
    background: #333;
}

.btn-open {
    border: 1px solid #000;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-open:hover {
    background: #000;
    color: #fff;
}

/* =========================
   HERO BASE
========================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;

  display: flex;
  align-items: center;
}

/* BACKGROUND */
.hero__bg {
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  z-index: 0;

  animation: heroZoom 12s ease-in-out infinite alternate;
}

/* OVERLAY */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero--chale .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner.webp');
}

.hero--chale-1 .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner-1.jpg');
}
.hero--chale-2 .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner-2.jpg');
}
.hero--chale-3 .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner-3.jpg');
}
.hero--chale-4 .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner-4.jpg');
}
.hero--chale-5 .hero__bg {
  background-image: url('/assets/img/chales/chale-especial-banner-5.jpg');
}
.hero--chale-chales .hero__bg {
  background-image: url('/assets/img/banner-chales.jpg');
}
.hero--politicas .hero__bg {
  background-image: url('/assets/img/banner-politica.jpg');
}

.hero--chale-landing .hero__bg {
  background-image: url('/assets/img/banner-landin-e-charm.jpg');
}

/* CONTENT */
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

/* TEXTO */
.hero__content h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero__content p {
  margin-top: 10px;
  opacity: 0.9;
}

/* ANIMAÇÃO */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* GRID */
.chale-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 80px;
}

/* IMAGEM */
.chale-gallery img {
    width: 100%;
    border-radius: 20px;
}

/* INFO */
.chale-info h2 {
    font-family: 'Libre Baskerville', serif;
}

.chale-desc {
    color: #666;
    margin: 20px 0;
}

/* SPECS */
.chale-specs {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.chale-specs span {
    background: #f2ece5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* PREÇO */
.chale-price {
    display: flex;
    gap: 40px;
    margin: 25px 0;
}

.chale-price strong {
    font-size: 1.4rem;
}

/* BOTÃO */
.chale-btn {
    display: inline-block;
    margin-top: 10px;
}

/* COMODIDADES */
.chale-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
}

.feature {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    background: #fff;
    transition: 0.3s;
}

.feature:hover {
    background: #c6a46c;
    color: #fff;
}

/* EXPERIÊNCIA */
.chale-experience {
    text-align: center;
    margin: 80px 0;
}

.chale-experience h3 {
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 10px;
}

.landin-chales {
    padding: 100px 0;
    background: #f5f3ef;
}

.landin-section-header h2 {
    font-size: 2.6rem;
    font-family: "Libre Baskerville", serif;
    color: #2c2c2c;
}

.landin-section-header p {
    color: #777;
    margin-top: 10px;
}

/* CARD */
.landin-chale-card {
    display: flex;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.landin-chale-card:hover {
    transform: translateY(-5px);
}

/* IMAGEM */
.landin-chale-image {
    width: 45%;
}

.landin-chale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTEÚDO */
.landin-chale-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landin-chale-content h3 {
    font-size: 1.8rem;
    font-family: "Libre Baskerville", serif;
}

/* META INFO */
.landin-chale-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #777;
}

.landin-chale-meta i {
    margin-right: 6px;
    color: #c6a46c;
}

/* FEATURES */
.landin-chale-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.landin-chale-features li {
    background: #f1ede6;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.landin-chale-features i {
    margin-right: 5px;
    color: #c6a46c;
}

.landin-footer-units {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landin-footer-units a {
    font-size: 0.95rem;
    color: #c6a46c;
    text-decoration: none;
    position: relative;
    padding-left: 14px;
    transition: all 0.3s ease;
}

/* seta elegante */
.landin-footer-units a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #c6a46c;
    transition: transform 0.3s ease;
}

/* hover sofisticado */
.landin-footer-units a:hover {
    color: #fff;
    transform: translateX(4px);
}

.landin-footer-units a:hover::before {
    transform: translateX(4px);
}

/* =========================
   FOOTER BASE
========================= */
.landin-footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

/* GRID */
.landin-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 0;
}

/* COLUNAS */
.landin-footer-col h5 {
    font-family: "Libre Baskerville", serif;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* =========================
   MENU ROMANO
========================= */
.landin-footer-menu {
    list-style: none;
    padding: 0;
}

.landin-footer-menu li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.landin-footer-menu span {
    color: #777;
    margin-right: 10px;
}

/* =========================
   ACOMODAÇÕES (UNIFICADO)
========================= */
.landin-footer-acomodacoes {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.landin-footer-acomodacoes li {
    margin-bottom: 8px;
}

.landin-footer-acomodacoes a {
    position: relative;
    color: #d6d2c4;
    text-decoration: none;
    font-size: 0.9rem;
    padding-left: 18px;
    transition: 0.3s ease;
}

/* seta */
.landin-footer-acomodacoes a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.7rem;
    color: #c6a46c;
    transition: 0.3s;
}

/* hover */
.landin-footer-acomodacoes a:hover {
    color: #fff;
    padding-left: 22px;
}

.landin-footer-acomodacoes a:hover::before {
    transform: translateX(4px);
    color: #fff;
}

/* destaque */
.landin-footer-acomodacoes .highlight a {
    color: #c6a46c;
    font-weight: 600;
}

/* =========================
   SOBRE
========================= */
.landin-footer-about p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================
   COLUNA DIREITA
========================= */
.landin-footer-brand-col {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
}

/* LOGO */
.landin-footer-brand img {
    max-width: 160px;
    margin-bottom: 20px;
}

/* CONTATO */
.landin-footer-contact p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.landin-footer-contact i {
    color: #c6a46c;
    margin-right: 8px;
}

/* REDES */


.landin-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(198, 164, 108, 0.1);
    color: #c6a46c;
    transition: 0.3s;
}

.landin-social-icons a:hover {
    background: #c6a46c;
    color: #000;
}

/* =========================
   CARD FOOTER (PREÇO/BOTÃO)
========================= */
.landin-chale-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.landin-chale-price span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.landin-chale-price strong {
    font-size: 1.4rem;
    color: #2c2c2c;
}



/* =========================
   SUBFOOTER
========================= */
.landin-subfooter {
    background: #111;
    color: rgba(255, 255, 255, 0.6);
    padding: 18px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landin-subfooter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.landin-subfooter-left p {
    margin: 0;
}

.landin-subfooter-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landin-subfooter-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.landin-subfooter-right a:hover {
    color: var(--landin-primary);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 992px) {
    .landin-chale-card {
        flex-direction: column;
    }

    .landin-chale-image,
    .landin-chale-content {
        width: 100%;
    }

    .landin-chale-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .landin-subfooter-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .landin-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .landin-footer-brand-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
    }

}

@media (max-width: 768px) {

    .landin-footer-col,
    .landin-footer-about {
        text-align: center;
    }

    .landin-footer-menu li,
    .landin-footer-acomodacoes li {
        justify-content: center;
    }

    .landin-footer-acomodacoes a {
        padding-left: 0;
    }

    .landin-footer-acomodacoes a::before {
        display: none;
    }

    .landin-social-icons {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 768px) {

    .landin-footer-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        border-left: none;
        padding-left: 0;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .landin-footer-brand {
        display: flex;
        justify-content: center;
    }

    .landin-footer-contact {
        text-align: center;
    }

    .landin-footer-contact p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .landin-social-icons {
        display: flex;
        justify-content: center;
    }

}


.landin-footer-units a {
    display: inline-block;
    padding-left: 0;
}

.landin-footer-units a::before {
    position: relative;
    left: -4px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    /* Esconde redes sociais */
    .landin-topbar-left {
        display: none;
    }

    /* Esconde botões da direita */
    .landin-topbar-right {
        display: none;
    }

    /* Centraliza melhor o título */
    .landin-topbar-center {
        text-align: center;
        font-size: 12px;
    }

    /* Hamburger MAIS PRA DIREITA */
    .landin-nav-right {
        display: flex;
        justify-content: flex-end;
        margin-right: 15px
    }

    .landin-menu-toggle {
        margin-left: auto;
    }

    /* Ajuste geral do header */
    .landin-mainnav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Opcional: diminuir botão reserva */
    .landin-btn-reserva span {
        display: none;
    }
}

/* Desktop não mostra */
.landin-mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    .landin-mobile-actions {
        display: block;
    }
}

.landin-mobile-actions a {
    display: block;
    text-align: center;
    border-radius: 30px;
}

/* escondido no desktop */
.landin-mobile-social {
    display: none;
}

/* aparece só no mobile */
@media (max-width: 768px) {
    .landin-mobile-social {
        display: block;
        text-align: center;
    }
}

.landin-mobile-social .landin-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.landin-mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;

    transition: 0.3s;
}

.landin-mobile-social a:hover {
    background: #c8a96a;
    /* sua cor dourada */
    border-color: #c8a96a;
}
@media (max-width: 768px) {

    .landin-topbar-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .landin-topbar-center {
        width: 100%;
        text-align: center;
    }

}
@media (max-width: 768px) {
  .landin-nav-right {
    display: none;
  }
}
.landin-divider-icon{
  width: 80px
}

.landin-divider-text {
  font-family: "Libre Baskerville", serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c6a46c;
}

.landin-divider-icon svg {
  width: 70px;
  height: auto;
}

.landin-divider-icon path {
  fill: #c6a46c;
}
.landin-divider--center {
  align-items: center;
  text-align: center;
}
.landin-divider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.landin-about-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* imagem */
.landin-about-slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* zoom leve */
.landin-about-slider .swiper-slide-active img {
  transform: scale(1.05);
}

/* botões */
.swiper-button-next,
.swiper-button-prev {
  color: #c6a46c;
}

/* bullets */
.swiper-pagination-bullet {
  background: #c6a46c;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* HERO */
.landin-hero-banner {
  position: relative;
}

.landin-hero-slider {
  width: 100%;
  height: 100vh;
}

.landin-hero-bg {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
}

/* overlay escuro elegante */
.landin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.6)
  );
  z-index: 1;
}

/* conteúdo */
.landin-hero-content {
  position: absolute;
  z-index: 2;
  bottom: 15%;
  max-width: 600px;
  color: #fff;
}

.landin-hero-content h1 {
  font-size: 2.5rem;
  font-family: "Libre Baskerville", serif;
}

.landin-hero-content p {
  margin-top: 10px;
  color: #ddd;
}

/* mobile */
@media (max-width: 768px) {
  .landin-hero-slider,
  .landin-hero-bg {
    height: 100vh;
  }

  .landin-hero-content {
    bottom: 10%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
}
.chale-gallery {
  border-radius: 16px;
  overflow: hidden;
}

.chale-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chale-gallery img:hover {
  transform: scale(1.05);
}

/* CONTROLES */
.chale-gallery .swiper-button-next,
.chale-gallery .swiper-button-prev {
  color: #c6a46c;
}

.chale-gallery .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.chale-gallery .swiper-pagination-bullet-active {
  background: #c6a46c;
  opacity: 1;
}

/* GRID FEATURES */
.chale-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #c6a46c;
}

/* =========================
   GALERIA TOPO
========================= */
.chale-gallery-top {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.chale-gallery-top img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* =========================
   GALERIA FINAL
========================= */
.chale-gallery-bottom {
  margin-top: 60px;
}

.chale-gallery-bottom img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
}

/* =========================
   BOTÕES SWIPER
========================= */
.swiper-button-next,
.swiper-button-prev {
  color: #c6a46c;
}

.swiper-pagination-bullet {
  background: #c6a46c;
}
.chale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .chale-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {

  .chale-main {
    padding-left: 20px;
    padding-right: 20px;
  }

}
/* HERO FRANQUEADO */
.hero--franqueado .hero__bg {
  background: url('/assets/img/franqueado-bg.jpg') center/cover no-repeat;
}

.franqueado-main {
  padding: 80px 0;
}

/* INTRO */
.franqueado-intro {
  max-width: 800px;
  margin: 0 auto 60px;
}

.franqueado-intro h2 {
  margin-bottom: 20px;
}

/* BENEFÍCIOS */
.franqueado-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.benefit {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
}

.benefit i {
  font-size: 28px;
  color: #c6a46c;
  margin-bottom: 15px;
}

.benefit:hover {
  transform: translateY(-5px);
}

/* COMO FUNCIONA */
.franqueado-how {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

/* CTA */
.franqueado-cta {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 12px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .franqueado-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .franqueado-benefits {
    grid-template-columns: 1fr;
  }
}

.landin-gallery-grid {
  background: #f8f5f2;
}

/* GRID */
.landin-grid-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* desktop */
  gap: 12px;
}

/* IMAGENS */
.landin-grid-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.landin-grid-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}

/* HOVER PREMIUM */
.landin-grid-gallery a:hover img {
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .landin-grid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .landin-grid-gallery {
    grid-template-columns: 1fr;
  }

  .landin-grid-gallery img {
    height: 220px;
  }
}

.landin-grid-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: .3s;
}
.landin-grid-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3; /* 🔥 força padrão visual */
}

.landin-grid-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landin-grid-gallery a:hover::after {
  opacity: 1;
}
.landin-chale-image {
  height: 360px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.landin-chale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landin-cidade-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.landin-cidade-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.landin-card-cidade {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.landin-card-cidade img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.landin-card-cidade h4 {
  margin-top: 15px;
  font-size: 18px;
}

.landin-card-cidade p {
  font-size: 14px;
  padding: 0 15px;
}

.landin-card-cidade:hover {
  transform: translateY(-5px);
}
.landin-room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c6a46c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.landin-room-badge i {
    font-size: 14px;
}
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
/* COR PADRÃO */
:root {
  --gold: #c6a46c;
}

/* TÍTULO PRINCIPAL */
.gold-title {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.gold-title::after {
  content: "";
  width: 60%;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 10px auto 0;
  transition: 0.3s;
}

.gold-title:hover::after {
  width: 100%;
}

/* TÍTULOS DAS SEÇÕES */
.policy-title {
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

/* ÍCONES */
.policy-icon {
  color: var(--gold);
  font-size: 18px;
  transition: 0.3s;
}

/* EFEITO HOVER */
.policy-section:hover .policy-title {
  transform: translateX(5px);
}

.policy-section:hover .policy-icon {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(198, 164, 108, 0.6);
}

/* LISTAS */
.landin-list li {
  transition: 0.2s;
}

.landin-list li:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.landin-room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 13px;
    color: #fff;
    margin-top: 8px;
    opacity: 0.9;
}

.landin-room-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landin-room-info i {
    color: #c6a46c;
    font-size: 14px;
}
.landin-room {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.landin-room:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.landin-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================
   CTA PARALLAX BACKGROUND
========================= */
.landin-cta-parallax {
  position: relative;
  padding: 120px 0;

  background-image: url('/assets/img/galeria/landing-e-charm-47.webp'); /* TROQUE PELA MELHOR FOTO */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  overflow: hidden;
}

/* OVERLAY ESCURO */
.landin-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* BOX CENTRAL */
.landin-cta-box {
  position: relative;
  z-index: 2;

  background: #2b2b2b;
  padding: 60px 40px;
  border-radius: 16px;

  max-width: 700px;
  margin: 0 auto;

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all .3s ease;
}

/* HOVER SUTIL */
.landin-cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

/* TEXTO */
.landin-cta-box .landin-section-label {
  color: #c6a46c;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.landin-cta-box .landin-section-title {
  color: #fff;
}

.landin-cta-box .landin-text {
  color: #ccc;
}



.landin-btn-primary:hover {
  background: #b8955d;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .landin-cta-parallax {
    background-attachment: scroll;
  }
}

.landin-location-content {
  background: #1f1f1f;
  padding: 40px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all .3s ease;
}

.landin-location-content:hover {
  transform: translateY(-5px);
}

/* LABEL */
.landin-location-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c6a46c;
  display: block;
  margin-bottom: 10px;
}

/* TÍTULO */
.landin-location-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ENDEREÇO */
.landin-address {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.landin-address i {
  color: #c6a46c;
  margin-right: 8px;
}

Fbet