/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* OTIMIZAÇÃO MOBILE - Carregamento rápido */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    button,
    a {
        cursor: pointer;
    }
}

:root {
    /* Cores baseadas na identidade visual */
    --primary-color: #FF6B6B;
    --primary-dark: #E85555;
    --primary-light: #FF8989;
    --secondary-color: #4A2C4E;
    --accent-color: #FFD93D;
    
    --dark-bg: #0a0612;
    --dark-purple: #1a0f2e;
    --darker-purple: #0f0820;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #2a2a2a;
    --bg-white: #1a1a1a;
    --bg-dark-section: #0f0f0f;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #1a1a1a;
    width: 100%;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;

    /* Proteção contra cópia */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Desabilitar menu de contexto */
body {
    -webkit-touch-callout: none;
}

/* Permitir seleção apenas em textos específicos */
p, h1, h2, h3, h4, h5, h6, li, span, a {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    
    /* Proteção de imagens */
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* ===== HEADER ===== */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    justify-self: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.btn-reserva {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-reserva:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
}

.btn-reserva i {
    font-size: 13px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
    background: none;
    border: none;
    padding: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:active,
.nav-close:active {
    transform: scale(0.9);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
    padding-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 6, 18, 0.85) 0%, rgba(26, 15, 46, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    z-index: 10;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    color: var(--text-white);
    font-size: 32px;
    animation: bounce 2s infinite;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SOBRE SECTION ===== */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-image:hover img {
    transform: scale(1.05);
}

.sobre-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.sobre-badge i {
    font-size: 32px;
}

.sobre-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.sobre-badge span {
    font-size: 14px;
}

.sobre-info h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.sobre-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-white);
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-item i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== DECORAÇÃO ESPECIAL SECTION ===== */
.decoracao-especial {
    background: var(--bg-dark-section);
    color: var(--text-white);
}

.decoracao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.decoracao-text {
    padding: 40px 0;
}

.section-subtitle-alt {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-style: italic;
}

.decoracao-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    line-height: 1.2;
}

.decoracao-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.decoracao-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-check span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.decoracao-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.decoracao-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition);
}

.decoracao-image:hover img {
    transform: scale(1.05);
}

.decoracao-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* ===== CARDÁPIO SECTION ===== */
.cardapio {
    background: #0f0f0f;
}

.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.cardapio-category {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cardapio-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2a2a2a;
}

.category-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-white);
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.item-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.item-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    white-space: nowrap;
}

.cardapio-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    color: var(--text-white);
}

.cardapio-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cardapio-cta .btn {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.cardapio-cta .btn:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

/* ===== SUITES SECTION ===== */
.suites {
    background: #0f0f0f;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.suite-card {
    background: #1f1f1f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.suite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.suite-content {
    padding: 30px;
}

.suite-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.suite-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.suite-amenities {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.suite-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.suite-amenities i {
    color: var(--primary-color);
    font-size: 16px;
}

/* ===== SERVICOS SECTION ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.servico-card {
    text-align: center;
    padding: 40px 30px;
    background: #1f1f1f;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-white);
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.servico-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== PROMOCOES SECTION ===== */
.promocoes {
    background: #1a1a1a;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promocao-card {
    background: #1f1f1f;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.promocao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.promocao-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    transform: scale(1.05);
}

.promocao-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-white);
}

.promocao-card.featured .promocao-icon {
    background: var(--text-white);
    color: var(--primary-color);
}

.promocao-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.promocao-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.promocao-card.featured h3 {
    color: var(--text-white);
}

.promocao-description {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.promocao-card.featured .promocao-description {
    opacity: 1;
    color: var(--text-white);
}

.promocao-details {
    text-align: left;
    margin-bottom: 30px;
}

.promocao-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.promocao-details i {
    color: var(--primary-color);
    font-size: 16px;
}

.promocao-card.featured .promocao-details li {
    color: var(--text-white);
}

.promocao-card.featured .promocao-details i {
    color: var(--text-white);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.depoimento-card {
    background: #1f1f1f;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.depoimento-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.depoimento-stars i {
    color: var(--accent-color);
    font-size: 18px;
}

.depoimento-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== GALERIA SECTION ===== */
.galeria {
    background: #0f0f0f;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* FORÇA 4 COLUNAS em Desktop */
@media screen and (min-width: 769px) {
    .galeria-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

.galeria-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 107, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: var(--text-white);
    font-size: 48px;
}

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

/* ===== CONTATO SECTION ===== */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    flex-shrink: 0;
}

.contato-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contato-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.link-btn:hover {
    gap: 12px;
}

.contato-social {
    margin-top: 20px;
}

.contato-social h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.contato-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 99998 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    }
}


/* ===== RESPONSIVE ===== */
/* TELAS MÉDIAS - AJUSTE FINO (769px a 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav {
        padding: 6px 10px;
    }

    .nav-logo img {
        height: 22px;
    }

    .nav-list {
        gap: 4px;
    }

    .nav-link {
        font-size: 8.5px;
        padding: 3px 0;
    }

    .btn-reserva {
        padding: 3px 6px;
        font-size: 8px;
        white-space: nowrap;
        gap: 2px;
        border-radius: 15px;
        min-width: auto;
    }

    .btn-reserva i {
        font-size: 8px;
    }
}

/* AJUSTE FINO PARA TABLETS MAIORES (900px-1024px) */
@media screen and (min-width: 900px) and (max-width: 1024px) {
    .nav {
        padding: 8px 12px;
    }

    .nav-logo img {
        height: 26px;
    }

    .nav-list {
        gap: 6px;
    }

    .nav-link {
        font-size: 9.5px;
    }

    .btn-reserva {
        padding: 4px 7px;
        font-size: 9px;
    }
}

/* AJUSTE PARA NOTEBOOKS E TELAS MÉDIAS (1025px-1400px) */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
    .nav {
        padding: 12px 25px;
        gap: 20px;
    }

    .nav-logo img {
        height: 38px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .btn-reserva {
        padding: 9px 18px;
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .sobre-content,
    .contato-content,
    .decoracao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .suites-grid,
    .servicos-grid,
    .promocoes-grid,
    .cardapio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Galeria mantém 4 colunas em notebooks */
    /* .galeria-grid removido - mantém padrão de 4 colunas */

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* HEADER MOBILE - OTIMIZADO */
    .nav {
        padding: 15px 20px;
        grid-template-columns: auto 1fr;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-btns {
        gap: 12px;
        justify-self: end;
    }

    /* ESCONDER BOTÃO RESERVAR DO HEADER NO MOBILE */
    .nav-btns .btn-reserva {
        display: none !important;
    }

    /* HAMBURGUER SEMPRE VISÍVEL */
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--text-white);
        cursor: pointer;
        z-index: 100000;
        position: relative;
        width: 44px;
        height: 44px;
        -webkit-tap-highlight-color: transparent;
        transition: opacity 0.3s ease;
    }

    /* ESCONDER HAMBURGUER quando menu está aberto */
    .nav-menu.active ~ .nav-btns .nav-toggle {
        opacity: 0;
        pointer-events: none;
    }

    /* MENU LATERAL MOBILE - MELHORADO */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height para mobile */
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.8);
        z-index: 99999 !important;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        justify-self: unset;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav-link {
        color: var(--text-white) !important;
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
        padding-left: 10px;
    }

    /* BOTÃO RESERVAR DENTRO DO MENU MOBILE */
    .nav-menu .btn-reserva {
        display: flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        padding: 16px 32px;
        font-size: 16px;
        background: var(--primary-color);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
        }
        50% {
            box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
        }
    }

    .nav-close {
        display: none !important;
        position: absolute;
        top: 25px;
        right: 25px;
        color: var(--text-white);
        font-size: 32px;
        cursor: pointer;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        background: rgba(255, 107, 107, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    /* Mostrar X SOMENTE quando menu estiver aberto */
    .nav-menu.active .nav-close {
        display: flex !important;
    }

    .nav-close:hover {
        background: rgba(255, 107, 107, 0.2);
        transform: rotate(90deg);
    }

    /* Overlay escuro quando menu aberto */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 350px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* HERO MOBILE */
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* GRIDS MOBILE */
    .stats-container,
    .suites-grid,
    .servicos-grid,
    .promocoes-grid,
    .depoimentos-slider,
    .cardapio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* WHATSAPP MOBILE - OTIMIZADO */
    .whatsapp-float {
        width: 60px !important;
        height: 60px !important;
        font-size: 30px !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 99998 !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    /* SEÇÕES MOBILE */
    .sobre-content,
    .decoracao-content {
        flex-direction: column;
        gap: 30px;
    }

    .sobre-image,
    .decoracao-image {
        width: 100%;
    }

    .decoracao-image img {
        height: 350px;
        object-fit: cover;
    }

    /* CARDS MOBILE */
    .suite-card,
    .servico-card,
    .promocao-card,
    .depoimento-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* PERFORMANCE MOBILE */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Scroll suave no iOS */
    html,
    body {
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    /* HEADER FIXO NO MOBILE - GARANTIR */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

    /* HERO SEM SOBREPOSIÇÃO */
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
        gap: 8px;
    }

    /* Header compacto */
    .nav {
        padding: 12px 15px;
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-toggle {
        font-size: 26px;
    }

    /* Menu mobile menor */
    .nav-menu {
        width: 90%;
        padding: 80px 25px 25px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    /* Garantir que cards não quebrem */
    .suite-card,
    .servico-card,
    .promocao-card,
    .depoimento-card {
        min-width: 0;
        padding: 20px;
    }

    /* Galeria 1 coluna em telas pequenas */
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Lightbox mobile otimizado */
    .lightbox-content {
        max-width: 92%;
        max-height: 70vh;
    }

    .lightbox-close {
        font-size: 28px;
        top: -35px;
    }

    /* Stats mobile */
    .stat-number {
        font-size: 2.5rem;
    }

    /* Footer mobile */
    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Whatsapp menor em telas pequenas */
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        font-size: 26px !important;
    }

    /* Textos menores */
    p {
        font-size: 0.95rem;
    }

    /* Imagens decoração */
    .decoracao-image img,
    .sobre-image img {
        height: 300px;
    }
}

    .lightbox-close {
        top: -35px;
        font-size: 32px;
        font-size: 14px;
    }

    .sobre-image img {
        height: 350px;
    }

    .sobre-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }

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

    .galeria-item {
        height: 250px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== LOADING ===== */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== LIGHTBOX GALERIA ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 70%;
    max-height: 75vh;
    animation: zoomIn 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 75vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 300;
    line-height: 1;
    z-index: 100000;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.galeria-item {
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Proteção adicional contra print screen */
@media print {
    body {
        display: none;
    }
}
