:root {
    --primary-gold: #c5a059;
    --secondary-gold: #8e6d31;
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --border-gold: rgba(197, 160, 89, 0.2);
    --glass: rgba(20, 20, 20, 0.8);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

@media (min-width: 768px) {
    .container { padding: 0 3rem; }
}

/* Header */
#main-header {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border-gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.4s ease;
}

#main-header.scrolled {
    padding: 0.6rem 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-nanobanana {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-gold);
}

.logo-nanobanana img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text-white);
    margin: 0;
}

.logo-text span {
    font-size: 0.55rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

@media (min-width: 768px) {
    .logo-text h1 { font-size: 1.35rem; }
    .logo-nanobanana { width: 65px; height: 65px; }
}

/* Hamburger */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

@media (min-width: 968px) {
    .menu-btn { display: none; }
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.nav-links.active {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 968px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        gap: 3rem;
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
}

@media (min-width: 968px) {
    .nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
}

.btn-nav-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 0.8rem 2rem;
    border-radius: 4px;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
}

/* Hero */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/suites_decoradas/3fab103d-aa68-491a-9fa7-c2dc9ec2a064.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.pre-title {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1.5rem;
}

#hero h2 {
    font-size: 2.22rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) { #hero h2 { font-size: 5rem; } }

.accent { color: var(--primary-gold); }

#hero p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .hero-actions a { width: 100%; text-align: center; }
}

.btn-hero-main {
    background: var(--primary-gold);
    color: #000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Suites */
.py-section { padding: 5rem 0; }
@media (min-width: 768px) { .py-section { padding: 10rem 0; } }

.section-tag {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    font-size: 0.8rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1rem;
}

@media (min-width: 768px) { .section-title { font-size: 4rem; } }

.suite-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .suite-grid { grid-template-columns: repeat(2, 1fr); }
}

.suite-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
}

.suite-card:hover { transform: translateY(-15px); }

.suite-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.suite-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.suite-card:hover img { transform: scale(1.1); }

.suite-content { padding: 2.5rem; }

.suite-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Restaurant Block */
.restaurant-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/suites_decoradas/IMG_2808.JPG') center/cover fixed;
    padding: 6rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-left: 3px solid var(--primary-gold);
}

.author { color: var(--primary-gold); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }

/* Location */
.location-card {
    display: flex;
    flex-direction: column;
    background: var(--secondary-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 968px) { .location-card { flex-direction: row; } }

.location-info { flex: 1; padding: 3rem; }
@media (min-width: 768px) { .location-info { padding: 5rem; } }

.location-image { flex: 1; height: 350px; }
@media (min-width: 968px) { .location-image { height: auto; } }

.location-image img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
footer { padding: 4rem 0; border-top: 1px solid var(--border-gold); }

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-main { grid-template-columns: 2fr 1fr 1fr; gap: 5rem; }
}

.footer-col h4 {
    margin-bottom: 2rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--text-grey);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.social-links { display: flex; gap: 1.5rem; }
.social-links a { 
    color: var(--primary-gold); 
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.social-links a:hover { transform: translateY(-5px); }

.copy {
    margin-top: 5rem;
    text-align: center;
    color: var(--text-grey);
    font-size: 0.8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
