:root {
    --bg-color: #fcfcfc;
    --text-color: #2c3e50;
    --accent-color: #c0a062; /* Dourado suave */
    --overlay-color: rgba(0,0,0,0.4);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s, background 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.floating-cta:hover {
    transform: translateY(-5px);
    background-color: #a8894d;
}

.floating-cta i {
    margin-right: 10px;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Sections General */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Accommodations */
.suite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.suite-card {
    text-align: center;
}

.suite-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

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

.suite-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.suite-card p {
    margin-bottom: 20px;
    color: #666;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #333;
    color: #fff;
}

/* Gastronomia */
.gastronomy {
    background-color: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    margin-top: -40px;
    margin-bottom: 50px;
    font-style: italic;
    color: #888;
}

.dish-showcase {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.dish-showcase img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Experiences */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exp-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.exp-item:hover img {
    transform: scale(1.1);
}

.exp-item span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Reviews */
.reviews {
    background-color: #1a1a1a;
    color: #fff;
}

.reviews h2 {
    color: #fff;
}

.review-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 4px;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

footer h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

footer p {
    color: #888;
    margin-bottom: 20px;
}

.socials a {
    color: #333;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .suite-grid, .exp-grid, .review-cards {
        grid-template-columns: 1fr;
    }

    .suite-card img {
        height: 300px;
    }
}
