/* RESET E VARIÁVEIS */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --amarelo: #FFC93C;
    --amarelo-claro: #FFE082;
    --amarelo-escuro: #E8B020;
    --dourado: #D4A017;
    --preto: #0a0a0a;
    --preto-suave: #1a1a1a;
    --branco: #ffffff;
    --cinza-claro: #f8f8f8;
    --cinza: #e8e8e8;
    --cinza-texto: #666;
    --cinza-escuro: #333;
    --gradiente-amarelo: linear-gradient(135deg, #FFC93C 0%, #FFB800 50%, #E8B020 100%);
    --gradiente-escuro: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    --sombra-suave: 0 5px 20px rgba(0,0,0,0.08);
    --sombra-media: 0 15px 40px rgba(0,0,0,0.12);
    --sombra-forte: 0 25px 60px rgba(0,0,0,0.2);
    --sombra-amarela: 0 20px 60px rgba(255,201,60,0.4);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--branco);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }

.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amarelo-escuro);
    padding: 8px 20px;
    background: rgba(255,201,60,0.12);
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
}

.section-tag.light { color: var(--amarelo); background: rgba(255,201,60,0.15); }

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--amarelo-escuro);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.section-title em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,201,60,0.3);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--branco); }

.section-lead {
    font-size: 1.15rem;
    color: var(--cinza-escuro);
    margin-bottom: 20px;
    font-weight: 400;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: var(--preto);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader .logo-mark {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
    transform: rotate(0deg);
}

.loader-text {
    color: var(--amarelo);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-bottom: 25px;
    font-weight: 700;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background: var(--gradiente-amarelo);
    animation: loaderFill 1.5s ease;
    transform-origin: left;
}

@keyframes loaderFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* CURSOR CUSTOMIZADO */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.1s;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--amarelo);
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 2px solid var(--amarelo);
    transition: transform 0.3s, width 0.3s, height 0.3s;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(255,201,60,0.2);
}

@media (max-width: 968px) {
    .cursor, .cursor-follower { display: none; }
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: all 0.4s;
}

#header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 55px;
    height: 55px;
    background: var(--gradiente-amarelo);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255,201,60,0.4);
    transform: rotate(-5deg);
    transition: transform 0.3s;
    padding: 6px;
    overflow: hidden;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo:hover .logo-mark { transform: rotate(0deg) scale(1.05); }
.logo:hover .logo-mark img { transform: scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    transition: color 0.4s;
}

#header.scrolled .logo-name { color: var(--preto); }

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    transition: color 0.4s;
}

#header.scrolled .logo-tagline { color: var(--cinza-texto); }

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--branco);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

#header.scrolled .nav-links a:not(.btn-reserve) { color: var(--preto); }

.nav-links a:not(.btn-reserve)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amarelo);
    transition: width 0.3s;
}

.nav-links a:not(.btn-reserve):hover::after { width: 100%; }

.btn-reserve {
    background: var(--gradiente-amarelo);
    color: var(--preto) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255,201,60,0.4);
    transition: all 0.3s;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,201,60,0.6);
}

.btn-reserve i { margin-right: 5px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--branco);
    border-radius: 3px;
    transition: all 0.3s;
}

#header.scrolled .hamburger span { background: var(--preto); }

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--branco);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s, transform 8s;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,201,60,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,201,60,0.3);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge i { color: var(--amarelo); }

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 25px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-highlight {
    color: var(--amarelo);
    font-style: italic;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 110%;
    height: 15%;
    background: rgba(255,201,60,0.4);
    z-index: -1;
    transform: skewX(-5deg);
}

.hero-text {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradiente-amarelo);
    color: var(--preto);
    box-shadow: 0 10px 30px rgba(255,201,60,0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255,201,60,0.6);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    color: var(--branco);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-glass:hover {
    background: var(--branco);
    color: var(--preto);
    transform: translateY(-4px);
}

.btn-dark {
    background: var(--preto);
    color: var(--branco);
}

.btn-dark:hover {
    background: var(--amarelo);
    color: var(--preto);
    transform: translateY(-4px);
    box-shadow: var(--sombra-amarela);
}

/* SLIDER DOTS */
.slider-dots {
    position: absolute;
    bottom: 30%;
    right: 50px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--amarelo);
    transform: scale(1.5);
}

/* HERO QUICK INFO */
.hero-quick-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 40px;
    border-radius: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
}

.quick-item i {
    color: var(--amarelo);
    font-size: 1.5rem;
}

.quick-item small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-item strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.scroll-down {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
}

.scroll-down span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--amarelo);
    border-radius: 2px;
    margin: 8px auto;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* SEÇÕES GERAIS */
section { padding: 120px 0; position: relative; }

/* SOBRE */
.sobre { background: var(--branco); }

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-images {
    position: relative;
    height: 600px;
}

.img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--sombra-forte);
}

.img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s;
}

.sobre-images:hover .img-main img { transform: scale(1.1); }

.img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 50%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--sombra-forte);
    border: 8px solid var(--branco);
}

.img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-experience {
    position: absolute;
    top: 30%;
    left: 0;
    background: var(--gradiente-amarelo);
    color: var(--preto);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--sombra-amarela);
    z-index: 2;
    text-align: center;
}

.exp-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.exp-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-features {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature i {
    width: 50px;
    height: 50px;
    background: rgba(255,201,60,0.15);
    color: var(--amarelo-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature h4 { font-size: 1.1rem; margin-bottom: 5px; }
.feature p { color: var(--cinza-texto); font-size: 0.95rem; }

/* STATS */
.stats {
    background: var(--preto);
    padding: 80px 0;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,201,60,0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-item i {
    font-size: 2.5rem;
    color: var(--amarelo);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* ACOMODAÇÕES */
.acomodacoes { background: var(--cinza-claro); }

.rooms-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.room-luxury {
    background: var(--branco);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.room-luxury:hover {
    transform: translateY(-15px);
    box-shadow: var(--sombra-forte);
}

.room-luxury.featured-room {
    border: 3px solid var(--amarelo);
    box-shadow: var(--sombra-amarela);
}

.room-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.room-luxury:hover .room-image-wrap img { transform: scale(1.15); }

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.room-luxury:hover .room-overlay { opacity: 1; }

.room-cta {
    width: 50px;
    height: 50px;
    background: var(--amarelo);
    color: var(--preto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.room-cta:hover { transform: rotate(-45deg); }

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-tag.premium-tag {
    background: var(--gradiente-amarelo);
    color: var(--preto);
}

.room-details { padding: 30px; flex: 1; display: flex; flex-direction: column; }

.room-header {
    margin-bottom: 15px;
}

.room-header h3 { font-size: 1.5rem; }

.room-details > p {
    color: var(--cinza-texto);
    margin-bottom: 20px;
    flex: 1;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.room-amenities span {
    background: var(--cinza-claro);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--cinza-escuro);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-amenities i { color: var(--amarelo-escuro); font-size: 0.9rem; }

.btn-room {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--preto);
    color: var(--branco);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-room:hover {
    background: var(--amarelo);
    color: var(--preto);
    gap: 15px;
}

/* EXPERIÊNCIAS */
.experiencias {
    background: var(--preto);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.experiencias-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,201,60,0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255,201,60,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.exp-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.exp-card:hover {
    transform: translateY(-10px);
    background: rgba(255,201,60,0.1);
    border-color: rgba(255,201,60,0.3);
}

.exp-card.highlighted {
    background: var(--gradiente-amarelo);
    color: var(--preto);
}

.exp-card.highlighted .exp-icon {
    background: var(--preto);
    color: var(--amarelo);
}

.exp-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,201,60,0.15);
    color: var(--amarelo);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: transform 0.4s;
}

.exp-card:hover .exp-icon { transform: rotate(-10deg) scale(1.1); }

.exp-card h3 { font-size: 1.4rem; margin-bottom: 12px; }

.exp-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.exp-number-bg {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.05;
    line-height: 1;
}

/* GALERIA */
.galeria { background: var(--branco); }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--sombra-suave);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.gallery-item:hover img { transform: scale(1.15); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    gap: 10px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    font-size: 2rem;
    color: var(--amarelo);
}

.gallery-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: var(--sombra-forte);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--branco);
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--amarelo);
    color: var(--preto);
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* LOCALIZAÇÃO */
.localizacao { background: var(--cinza-claro); }

.localizacao-luxury {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.endereco-card {
    background: var(--gradiente-escuro);
    color: var(--branco);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: var(--sombra-media);
}

.endereco-card i {
    font-size: 2.5rem;
    color: var(--amarelo);
}

.endereco-card small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.endereco-card h4 { font-size: 1.3rem; margin-bottom: 5px; }
.endereco-card p { font-size: 0.95rem; opacity: 0.8; }

.atracoes-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.atracoes-list-luxury {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atracao-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--branco);
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--sombra-suave);
}

.atracao-item:hover {
    transform: translateX(8px);
    box-shadow: var(--sombra-media);
}

.atracao-icon {
    width: 50px;
    height: 50px;
    background: var(--gradiente-amarelo);
    color: var(--preto);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.atracao-info h5 { font-size: 1.05rem; margin-bottom: 3px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.atracao-info span { font-size: 0.85rem; color: var(--cinza-texto); }

.localizacao-map {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    box-shadow: var(--sombra-forte);
}

.localizacao-map iframe { width: 100%; height: 100%; border: 0; }

/* AVALIAÇÕES */
.avaliacoes { background: var(--branco); overflow: hidden; }

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: calc(33.33% - 20px);
    background: var(--cinza-claro);
    padding: 40px 35px;
    border-radius: 25px;
    position: relative;
    border-top: 4px solid var(--amarelo);
}

.testimonial-rating {
    color: var(--amarelo-escuro);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255,201,60,0.2);
}

.testimonial-card p {
    color: var(--cinza-escuro);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradiente-amarelo);
    color: var(--preto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.1rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--cinza-texto); }

.testimonials-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.test-btn {
    width: 55px;
    height: 55px;
    border: 2px solid var(--cinza);
    background: var(--branco);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--preto);
    font-size: 1rem;
}

.test-btn:hover {
    background: var(--amarelo);
    border-color: var(--amarelo);
    transform: scale(1.1);
}

/* CTA RESERVE */
.cta-reserve { background: var(--cinza-claro); padding: 80px 0; }

.cta-box {
    background: var(--gradiente-escuro);
    color: var(--branco);
    border-radius: 40px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,201,60,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; margin-bottom: 40px; }

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 15px 0;
    color: var(--branco);
}

.cta-content h2 em {
    color: var(--amarelo);
    font-style: italic;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.cta-platforms {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.platform-btn {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px 35px;
    border-radius: 20px;
    color: var(--branco);
    transition: all 0.3s;
    min-width: 200px;
}

.platform-btn i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.platform-btn span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-btn small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.platform-btn:hover {
    background: var(--amarelo);
    color: var(--preto);
    transform: translateY(-8px);
    border-color: var(--amarelo);
}

.platform-btn.whatsapp:hover { background: #25D366; color: var(--branco); border-color: #25D366; }

/* CONTATO */
.contato { background: var(--branco); }

.contato-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-card {
    background: var(--cinza-claro);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    border: 2px solid transparent;
    text-align: center;
}

.contato-card:hover {
    border-color: var(--amarelo);
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.contato-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--branco);
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.contato-card:hover .contato-icon {
    transform: scale(1.1) rotate(-5deg);
}

.whatsapp-icon { background: #25D366; }
.email-icon { background: #EA4335; }
.insta-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contato-card h4 { font-size: 1.3rem; margin-bottom: 8px; }
.contato-card p { color: var(--cinza-texto); font-size: 0.9rem; margin-bottom: 15px; }
.contato-card a { 
    color: var(--preto); 
    font-weight: 600; 
    transition: color 0.3s;
    display: inline-block;
    word-break: break-word;
}
.contato-card a:hover { color: var(--amarelo-escuro); }

/* FOOTER */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(255,201,60,0.08) 0%, transparent 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-name { color: var(--branco); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.6); }

.footer-col p { font-size: 0.95rem; opacity: 0.7; margin-bottom: 20px; }

.footer-col h4 {
    color: var(--amarelo);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col ul li:hover { opacity: 1; }

.footer-col ul li a:hover { color: var(--amarelo); }

.footer-col ul li i { color: var(--amarelo); margin-right: 8px; width: 16px; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--amarelo);
    color: var(--preto);
    transform: translateY(-5px);
    border-color: var(--amarelo);
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--branco);
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
    width: 50px;
    background: var(--gradiente-amarelo);
    color: var(--preto);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.newsletter-form button:hover { opacity: 0.9; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.footer-bottom i { color: #ff4d6d; margin: 0 4px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--branco);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform 0.3s;
    animation: pulseWhats 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1) rotate(-10deg); }

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    background: var(--preto);
    color: var(--branco);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 10px 50px rgba(37,211,102,0.8); }
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--preto);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--amarelo);
    color: var(--preto);
    transform: translateY(-5px);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .sobre-grid,
    .localizacao-luxury { grid-template-columns: 1fr; gap: 50px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .testimonial-card { min-width: calc(50% - 15px); }
    
    .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
    
    .sobre-images { height: 500px; }
    
    .hero-quick-info { display: none; }
}

@media (max-width: 968px) {
    .contato-luxury { 
        grid-template-columns: 1fr; 
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--preto);
        flex-direction: column;
        width: 80%;
        height: 100vh;
        padding: 100px 40px;
        gap: 25px;
        transition: right 0.4s;
    }
    
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--branco) !important; font-size: 1.1rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }
    
    .testimonial-card { min-width: 100%; }
    
    .cta-box { padding: 50px 30px; border-radius: 25px; }
    
    .stats-grid { grid-template-columns: 1fr; }
    
    .slider-dots { right: 20px; bottom: 20%; }
    
    .scroll-down { display: none; }
    
    .sobre-images { height: 400px; }
    .img-experience { padding: 18px 22px; }
    .exp-number { font-size: 2.2rem; }
    
    .platform-btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .btn { padding: 14px 28px; font-size: 0.85rem; }
    .container { padding: 0 20px; }
}