/* Variaveis e Reset */
:root {
    --bg-color: #0B0B0D;
    --card-color: #14151A;
    --border-color: #2A2C33;
    --text-primary: #F4F5F7;
    --text-secondary: #B9BDC7;
    --accent-red: #B10F2E;
    --accent-red-hover: #8a0b23;

    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Tipografia */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-primary);
}

.metallic-text {
    background: linear-gradient(135deg, #fff 20%, #B9BDC7 50%, #6b6e75 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(177, 15, 46, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.btn-primary:hover::after {
    left: 150%;
    transition: left 0.7s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 15, 46, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

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

.btn-white:hover {
    background-color: #e0e0e0;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #B9BDC7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Icons */
.icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color var(--transition-medium), padding var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button in Header Animation */
.header .btn-primary {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.5s ease;
}

.header.scrolled .btn-primary {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
    /* Ensure it stays on top during animation */
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(185, 189, 199, 0.2);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.4s ease, box-shadow 0.4s ease;
    /* Enhanced transition */
    will-change: transform;
    transform-origin: top left;
    /* Important for accurate scaling/translation */
}

.header.scrolled .logo img {
    box-shadow: none;
    height: 60px;
    /* Slight resize for elegance */
    transform: none !important;
    /* Force reset when scrolled */
}

/* .logo img:hover removed to prevent conflict */

.nav {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.header.scrolled .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.mobile-menu.active ul {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: var(--font-serif);
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;
    padding-top: 160px;
    /* Safe space for Logo & Header */
    padding-bottom: 60px;
}

/* ... bg and overlay ... */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(11, 11, 13, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    margin: auto 0;
    /* Vertically center in remaining space */
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-gastronomy {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #dedede;
    margin-top: 30px;
}

/* Hero Promo Badge (Executive Lunch) */
.hero-promo-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: rgba(20, 21, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(177, 15, 46, 0.3);
    border-radius: 50px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s infinite ease-in-out;
    flex: 1;
    min-width: 300px;
    /* Increased min-width */
    max-width: 450px;
    /* Increased max-width to prevent wrapping */
    transition: transform var(--transition-medium);
}

.hero-promo-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(177, 15, 46, 0.8);
}

.hero-badges-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
}

.single-traveler-badge {
    border-color: rgba(255, 215, 0, 0.3);
    /* Goldish tint for contrast */
}

.single-traveler-badge .promo-title {
    color: #ffd700;
    /* Gold */
}

.promo-price-highlight {
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    background: linear-gradient(135deg, #ffd700 0%, #ffdf40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.promo-highlight {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.promo-title {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(177, 15, 46, 0.4);
}

.promo-time {
    color: #fff;
}

.promo-sub {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    gap: 8px;
    white-space: nowrap;
    /* Prevent wrapping inside the lines */
    flex-wrap: nowrap;
    /* Ensure it stays on one line */
}

.promo-separator {
    color: var(--accent-red);
    font-size: 0.6em;
    opacity: 0.7;
}

.promo-note {
    font-size: 0.75rem;
    opacity: 0.7;
    font-style: italic;
}

.promo-suite {
    color: #fff;
    font-weight: 500;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(177, 15, 46, 0.1);
        border-color: rgba(177, 15, 46, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(177, 15, 46, 0.25);
        border-color: rgba(177, 15, 46, 0.6);
    }
}

/* Mobile responsiveness for badge */
@media (max-width: 768px) {
    .hero-badges-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-promo-badge {
        padding: 12px 20px;
        border-radius: 12px;
        width: 100%;
        max-width: 320px;
        margin-bottom: 0;
    }

    .promo-highlight {
        flex-direction: column;
        gap: 2px;
        font-size: 1rem;
    }

    .promo-separator {
        display: none;
    }

    .promo-sub {
        flex-direction: column;
        gap: 2px;
        margin-top: 5px;
        text-align: center;
    }

    .promo-sub .promo-separator {
        display: none;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations Utility (Legacy / Specific) */
.fade-in {
    animation: fadeIn 1s forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.suite-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
    top: 0;
}

.suite-card:hover {
    transform: translateY(-8px);
    border-color: #4a4d57;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.suite-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.suite-card:hover .suite-image {
    transform: scale(1.08);
}

.suite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.suite-card:hover .suite-overlay {
    opacity: 1;
}

.suite-info {
    padding: 25px;
    text-align: center;
}

.suite-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.suite-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.experience-card {
    background-color: var(--card-color);
    padding: 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-medium);
}

.experience-card:hover {
    border-color: rgba(177, 15, 46, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    color: var(--accent-red);
    margin-bottom: 20px;
}

.experience-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.experience-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
}

.experience-card:hover .badge {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Promo Banner */
.promo-banner {
    padding: 40px 0;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    /* Optional: Aspect ratio control or max-height */
}

.banner-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.banner-wrapper:hover img {
    transform: scale(1.02);
}

.banner-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/* Location and FAQ */
.map-container {
    height: 450px;
    background-color: var(--card-color);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.location-actions {
    text-align: center;
}

.address-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
}

/* Footer */
.footer {
    background-color: rgba(20, 21, 26, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.footer-info strong {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.footer-links a:hover .footer-icon {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    transition: background-color 0.4s;
}

.modal-wrapper {
    position: relative;
    background-color: var(--card-color);
    width: 90%;
    max-width: 900px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal.is-visible .modal-wrapper {
    transform: scale(1);
}

@media (min-width: 769px) {
    .modal-wrapper {
        flex-direction: row;
    }

    .modal-video-container {
        flex: 1.5;
        min-height: 400px;
    }

    .modal-details {
        flex: 1;
        padding: 40px;
        overflow-y: auto;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.modal-video-container {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* border-radius removed to merge with container */
}

.modal-details {
    padding: 30px;
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.modal-features {
    margin-bottom: 30px;
    display: inline-block;
    text-align: left;
}

.modal-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features li::before {
    content: '•';
    color: var(--accent-red);
}

.modal-prices {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-item span {
    color: var(--text-secondary);
}

.price-item strong {
    color: #fff;
    font-weight: 600;
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: #555;
    text-align: center;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 150px;
        /* Space for logo animation and header */
        padding-bottom: 60px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .suites-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .scroll-down {
        display: none;
    }
}

/* Modal Image Styling */
.modal-image-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    position: relative;
    background-color: #000;
}

#modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-image-container:hover #modal-image {
    transform: scale(1.05);
}