/* ========================================
   QUERÊNCIA HOTEL PIRATINI
   Design Moderno e Profissional
   ======================================== */

/* ========================================
   CSS VARIABLES - Design Moderno
   ======================================== */
:root {
    /* Cores Principais - Paleta Moderna */
    --color-primary: #D4A574;
    --color-primary-dark: #B8935F;
    --color-primary-light: #E8C19A;
    --color-primary-gradient: linear-gradient(135deg, #D4A574 0%, #B8935F 100%);
    
    --color-secondary: #8B6F47;
    --color-secondary-dark: #6B5637;
    
    --color-accent: #F5E6D3;
    --color-accent-light: #FAF5EF;
    
    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-bg-alt: #FAF8F5;
    --color-bg-section: #FEFCF9;
    --color-white: #FFFFFF;
    
    /* Textos */
    --color-text: #2C2416;
    --color-text-light: #5C5347;
    --color-text-muted: #8B8279;
    --color-text-white: #FFFFFF;
    
    /* Bordas */
    --color-border: rgba(212, 165, 116, 0.2);
    --color-border-light: rgba(212, 165, 116, 0.1);
    --color-border-dark: rgba(139, 111, 71, 0.3);
    
    /* WhatsApp */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20BD5A;
    --color-whatsapp-dark: #128C7E;
    
    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Sombras Modernas */
    --shadow-xs: 0 1px 3px rgba(44, 36, 22, 0.05);
    --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 36, 22, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 36, 22, 0.16);
    --shadow-xl: 0 16px 48px rgba(44, 36, 22, 0.2);
    --shadow-colored: 0 8px 24px rgba(212, 165, 116, 0.25);
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --header-height: 65px;
    --container-max: 1280px;
}

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

html {
    scroll-behavior: auto;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   HEADER - Design Moderno
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
    height: 65px;
    box-shadow: var(--shadow-sm);
}

.header .header-container {
    padding: 0 var(--space-lg);
}

.header .logo-img {
    width: 40px;
    height: 40px;
}

.header .logo-name {
    font-size: 1.25rem;
}

.header .logo-sub {
    font-size: 0.5625rem;
    margin-top: 2px;
    padding-top: 2px;
}

.header .nav-link {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
}

.header .btn-header-nav,
.header .btn-header-como-chegar,
.header .btn-header-whatsapp {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8125rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    gap: var(--space-md);
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 600;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.logo-sub {
    font-size: 0.5625rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-top: 2px;
    position: relative;
    padding-top: 2px;
}

.logo-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 20%, var(--color-primary-dark) 50%, var(--color-primary) 80%, transparent 100%);
    background-size: 200% 100%;
    opacity: 0.6;
    animation: logoLineFlow 3s ease-in-out infinite;
    border-radius: var(--radius-full);
}

@keyframes logoLineFlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex: 1 1 auto;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary-gradient);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

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

.nav-link.active::after,
.nav-link:hover::after {
    width: calc(100% - 16px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 0 0 auto;
    flex-shrink: 0;
}

.btn-header-nav,
.btn-header-como-chegar,
.btn-header-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: visible;
}

.btn-header-nav,
.btn-header-como-chegar {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(139, 105, 20, 0.15);
}

.btn-header-nav:hover,
.btn-header-como-chegar:hover {
    transform: translateY(-2px);
}

.btn-header-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border: 2px solid var(--color-whatsapp);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-header-whatsapp:hover {
    transform: translateY(-2px);
}

.btn-header-nav svg,
.btn-header-como-chegar svg,
.btn-header-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   HERO SECTION - Design Impactante
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--space-lg) var(--space-4xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    transform: scale(1);
    transition: filter 0.3s ease;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(212, 165, 116, 0.1) 100%
    );
    z-index: 1;
    backdrop-filter: blur(0px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-3xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

@keyframes heroContentGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 0 rgba(212, 165, 116, 0);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 40px rgba(212, 165, 116, 0.15);
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-xl);
    background: var(--color-primary-gradient);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    box-shadow: 
        0 4px 12px rgba(212, 165, 116, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(212, 165, 116, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-title-main,
.hero-title-sub {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    position: relative;
    display: inline-block;
}

.hero-title-main::after,
.hero-title-sub::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

@keyframes titleLineExpand {
    to {
        width: 60%;
    }
}

.hero-description {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-feature,
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-feature::before,
.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hero-feature:hover::before,
.hero-feature-item:hover::before {
    left: 100%;
}

.hero-feature:hover,
.hero-feature-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(212, 165, 116, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 165, 116, 0.4);
}

.hero-feature svg,
.hero-feature-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-feature:hover svg,
.hero-feature-item:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 2px;
    height: 30px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

/* ========================================
   BUTTONS - Design Moderno
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    box-shadow: 
        0 6px 20px rgba(212, 165, 116, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(212, 165, 116, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ========================================
   SECTIONS - Design Consistente
   ======================================== */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   DIFERENCIAIS SECTION
   ======================================== */
.diferenciais {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-section);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    align-items: stretch;
}

.diferencial-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.diferencial-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.diferencial-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

/* ========================================
   QUARTOS SECTION - Design Premium
   ======================================== */
.quartos {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.quartos-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-xl);
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.quartos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.quarto-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quarto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary-gradient);
    z-index: 1;
}

.quarto-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.quarto-card.hidden {
    display: none !important;
}

.quarto-gallery {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.gallery-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Sistema antigo removido - usando gallery-slides agora */

.quarto-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary-gradient);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

/* Slide anterior (saindo pela esquerda) */
.gallery-slide.prev {
    transform: translateX(-100%);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    z-index: 10;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.gallery-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.gallery-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.gallery-current {
    min-width: 1ch;
    text-align: right;
}

.gallery-separator {
    opacity: 0.7;
}

.gallery-total {
    min-width: 1ch;
    text-align: left;
}

.gallery-dots {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
    justify-content: center;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.gallery-dot.active {
    background: var(--color-white);
    width: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border-color: var(--color-white);
}

.quarto-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.quarto-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    gap: var(--space-md);
    flex-shrink: 0;
}

.quarto-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.quarto-capacity {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.quarto-capacity svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Amenities Section */
.quarto-amenities-section {
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}

.amenities-common {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.amenities-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.amenity-tag {
    display: inline-block;
    padding: 2px var(--space-xs);
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.6875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    line-height: 1.4;
}

.amenities-diferenciais {
    margin-top: var(--space-sm);
}

.quarto-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.quarto-amenities li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--color-text);
    line-height: 1.5;
}

.quarto-amenities li svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Botão de reserva alinhado */
.quarto-content > .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
}

.quarto-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.quarto-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}

.quarto-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.quarto-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
}

.quarto-feature svg {
    width: 16px;
    height: 16px;
}

.price-list {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

/* Price Selector - Design Moderno e Alinhado */
.quarto-prices {
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
    flex-shrink: 0;
}

.price-selector-wrapper {
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-selector {
    display: flex;
    gap: var(--space-xs);
    width: 100%;
    justify-content: center;
}

.price-selector-btn {
    flex: 1;
    min-width: 0;
    padding: var(--space-sm) var(--space-xs);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.price-selector-btn .btn-number {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: inherit;
}

.price-selector-btn .btn-label {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1;
    text-transform: lowercase;
    color: inherit;
    opacity: 0.7;
}

.price-selector-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-accent-light);
    transform: translateY(-1px);
}

.price-selector-btn.active {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.price-selector-btn.active .btn-label {
    opacity: 0.9;
}

.price-display {
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
}

.price-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-xs);
    padding: var(--space-sm) 0;
}

.price-main .price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-main .price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: transform 0.2s ease;
    line-height: 1;
}

.price-child-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
}

.price-child-info .price-label {
    font-size: 0.8125rem;
}

.price-child-info .price-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* Legacy price-item support */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.price-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

/* ========================================
   POLÍTICAS SECTION
   ======================================== */
.politicas {
    margin-top: var(--space-4xl);
    padding: var(--space-3xl);
    background: var(--color-bg-section);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
}

.politicas-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.politicas-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.politicas-header p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.politicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    justify-items: center;
    width: 100%;
}

.politica-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    text-align: center;
}

.politica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.politica-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
}

.politica-card:hover .politica-icon {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.politica-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.politica-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    display: block;
}

.politica-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Responsivo - Políticas Grid */
@media (max-width: 768px) {
    .politicas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-lg);
        justify-items: center;
        align-items: start;
    }
    
    .politica-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .politicas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        justify-items: center;
        align-items: stretch;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .politica-card {
        max-width: 100%;
        width: 100%;
        padding: var(--space-lg);
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .politicas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0;
        justify-items: center;
        width: 100%;
    }
    
    .politica-card {
        padding: var(--space-md);
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .politica-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--space-md);
    }
    
    .politica-content h4 {
        font-size: 1.125rem;
    }
    
    .politica-value {
        font-size: 1.25rem;
    }
    
    .politica-description {
        font-size: 0.8125rem;
    }
}

@media (max-width: 360px) {
    .politicas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: 0;
    }
    
    .politica-card {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ========================================
   CALCULADORA SECTION
   ======================================== */
.calculadora {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-white) 100%);
}

.calc-container {
    max-width: 600px;
    margin: 0 auto;
}

.calc-form {
    background: var(--color-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.calc-group {
    margin-bottom: var(--space-xl);
}

.calc-label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.calc-options {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.calc-opt {
    flex: 1;
    min-width: 120px;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calc-opt:hover {
    border-color: var(--color-primary);
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.calc-opt.active {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-colored);
    font-weight: 600;
}

.calc-opt[aria-checked="true"] {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-colored);
    font-weight: 600;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.calc-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--color-white);
}

.calc-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.calc-input.error {
    border-color: #dc2626;
    background: #fef2f2;
}

.calc-help {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text);
    user-select: none;
}

.calc-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.pet-counter-wrapper {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-counter {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.counter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-accent);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.counter-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.counter-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    min-width: 40px;
    text-align: center;
    transition: transform 0.2s;
}

.calc-results {
    background: var(--color-bg-alt);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: var(--space-md);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    border-top: 2px solid var(--color-primary);
    gap: var(--space-md);
}

.result-total-value-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.result-total #resultTotal {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
}

.result-verifique {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}

.calc-error-message {
    display: none;
    padding: var(--space-md);
    background: #fef2f2;
    border: 1px solid #dc2626;
    border-radius: var(--radius-md);
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.calc-error-message.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.calc-semana-farroupilha {
    display: none;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
    margin-top: var(--space-md);
    line-height: 1.7;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3), 0 0 0 3px rgba(212, 165, 116, 0.1);
    position: relative;
    z-index: 10;
}

.calc-semana-farroupilha.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.calc-semana-farroupilha strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-semana-farroupilha p {
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.calc-semana-farroupilha::before {
    content: '⚠️';
    display: block;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.semana-farroupilha-link {
    color: var(--color-whatsapp);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.semana-farroupilha-link:hover {
    color: var(--color-whatsapp-dark);
    text-decoration: underline;
}

.calc-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

/* ========================================
   ESTRUTURA & GALERIA
   ======================================== */
.estrutura {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.estrutura-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.estrutura-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: var(--transition);
}

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

.estrutura-link:hover {
    text-decoration: none;
    color: inherit;
}

.estrutura-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.estrutura-content {
    padding: var(--space-xl);
}

.estrutura-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.estrutura-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.estrutura-link-text {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
}

.estrutura-card:hover .estrutura-link-text {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   GALERIA SECTION - Design Moderno
   ======================================== */
.galeria {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-section);
}

/* Menu Inteligente de Galeria - Design Moderno e Compacto */
.galeria-menu {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.galeria-menu-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.galeria-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.galeria-menu-btn svg,
.galeria-menu-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.galeria-menu-btn:hover {
    transform: translateY(-2px);
}

.galeria-menu-btn:hover::before {
    opacity: 0.1;
}

.galeria-menu-btn.active {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    box-shadow: var(--shadow-colored);
}

.galeria-menu-btn.active::before {
    opacity: 1;
}

.galeria-menu-btn.active svg,
.galeria-menu-btn.active span {
    color: var(--color-white);
}

.galeria-menu-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Submenu de Quartos */
.galeria-quartos-submenu {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.galeria-quarto-btn {
    padding: var(--space-xs) var(--space-lg);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.galeria-quarto-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.galeria-quarto-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.galeria-quarto-btn:hover {
    transform: translateY(-2px);
}

.galeria-quarto-btn:hover::before {
    opacity: 0.1;
}

.galeria-quarto-btn.active {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    box-shadow: var(--shadow-colored);
}

.galeria-quarto-btn.active::before {
    opacity: 1;
}

.galeria-quarto-btn.active span {
    color: var(--color-white);
}

/* Container do Carrossel */
.galeria-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.galeria-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.galeria-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: var(--space-sm) var(--space-lg);
    width: 100%;
}

.galeria-item {
    min-width: calc(33.333% - var(--space-lg) * 2 / 3);
    max-width: 320px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
    height: auto;
    max-height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
}

.galeria-empty {
    width: 100%;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Grid Original (oculto) - mantido para estrutura */
.galeria-grid {
    display: none;
}

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

/* Controles do Carrossel */
.galeria-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding: var(--space-md);
}

.galeria-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.galeria-carousel-btn:hover:not(:disabled) {
    background: var(--color-primary-gradient);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.galeria-carousel-btn:active:not(:disabled) {
    transform: translateY(0) scale(0.95);
}

.galeria-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.galeria-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.galeria-carousel-dots {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.galeria-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-border);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.galeria-carousel-dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.galeria-carousel-dot.active {
    background: var(--color-primary);
    width: 32px;
    border-color: var(--color-primary);
}

/* Responsivo - Mobile mostra 1 imagem */
@media (max-width: 768px) {
    .galeria-item {
        min-width: 100%;
        max-width: 100%;
        max-height: 200px;
    }
    
    .galeria-item img {
        max-height: 200px;
    }
    
    .galeria-track {
        gap: var(--space-md);
    }
    
    .galeria-carousel-controls {
        gap: var(--space-md);
    }
    
    .galeria-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .galeria-carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .galeria-quartos-submenu {
        flex-wrap: wrap;
        gap: var(--space-xs);
        padding: var(--space-xs);
        max-width: 100%;
    }
    
    .galeria-quarto-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8125rem;
    }
    
    .galeria-menu {
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding: var(--space-xs);
    }
    
    .galeria-menu-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.875rem;
    }
}

/* Tablet - mostra 2 imagens */
@media (min-width: 769px) and (max-width: 1024px) {
    .galeria-item {
        min-width: calc(50% - var(--space-lg) / 2);
        max-width: 280px;
        max-height: 210px;
    }
    
    .galeria-item img {
        max-height: 210px;
    }
}

/* Desktop pequeno - mostra 2 imagens */
@media (min-width: 1025px) and (max-width: 1200px) {
    .galeria-item {
        min-width: calc(50% - var(--space-lg) / 2);
        max-width: 300px;
        max-height: 225px;
    }
    
    .galeria-item img {
        max-height: 225px;
    }
}

/* Desktop médio - mostra 3 imagens menores */
@media (min-width: 1201px) and (max-width: 1600px) {
    .galeria-item {
        max-width: 300px;
        max-height: 225px;
    }
    
    .galeria-item img {
        max-height: 225px;
    }
}

/* Desktop grande - mantém 3 imagens com tamanho controlado */
@media (min-width: 1601px) {
    .galeria-item {
        max-width: 320px;
        max-height: 240px;
    }
    
    .galeria-item img {
        max-height: 240px;
    }
}

/* Classes especiais mantidas para compatibilidade, mas seguem o mesmo padrão de tamanho */
.galeria-item.galeria-large {
    max-width: 320px;
    max-height: 240px;
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .galeria-item.galeria-large {
        max-width: 100%;
        max-height: 200px;
        aspect-ratio: 4/3;
    }
}

.galeria-item.galeria-tall {
    max-width: 320px;
    max-height: 240px;
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .galeria-item.galeria-tall {
        max-width: 100%;
        max-height: 200px;
        aspect-ratio: 4/3;
    }
}

/* Botão Carregar Mais */
.galeria-load-more-wrapper {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
}

.galeria-load-more-btn {
    min-width: 200px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Overlay Elegante */
.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.galeria-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(212, 165, 116, 0.3);
    z-index: 10;
}

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

.galeria-label {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-sm);
}

.galeria-icon {
    width: 48px;
    height: 48px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: var(--space-sm);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.galeria-item:hover .galeria-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   LOCALIZAÇÃO SECTION
   ======================================== */
.localizacao {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-white) 100%);
}

.localizacao-content {
    margin-top: var(--space-4xl);
}

.localizacao-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-xl);
    align-items: start;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border-light);
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.localizacao-card {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: var(--transition);
}

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

.localizacao-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.localizacao-card:hover .localizacao-icon {
    transform: scale(1.05);
}

.localizacao-icon svg {
    width: 28px;
    height: 28px;
}

.localizacao-details h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.localizacao-endereco {
    font-size: 0.9375rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2px;
}

.localizacao-cidade {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.localizacao-cep {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Features Cards */
.localizacao-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.localizacao-feature-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.localizacao-feature-card:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.localizacao-feature-card:hover .feature-icon {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-content strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
    margin-bottom: 2px;
}

.feature-content span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* Botão Como Chegar */
.localizacao-actions {
    margin-top: var(--space-md);
}

.btn-como-chegar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-primary-gradient);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
    cursor: pointer;
}

.btn-como-chegar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 105, 20, 0.4);
    background: var(--color-primary-dark);
}

.btn-como-chegar:active {
    transform: translateY(0);
}

.btn-como-chegar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-como-chegar span {
    font-weight: 600;
}

/* Mapa */
.localizacao-mapa {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border-light);
    transition: var(--transition);
    background: var(--color-bg-alt);
}

.localizacao-mapa:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.mapa-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--color-bg-alt);
}

.mapa-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    z-index: 1;
}

.mapa-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.mapa-placeholder p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: filter 0.3s ease;
}

.mapa-container iframe.loaded {
    display: block !important;
}

.localizacao-mapa:hover .mapa-container iframe {
    filter: brightness(1.1) contrast(1.15) saturate(1.15);
}

.mapa-overlay {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 10;
    display: flex;
    gap: var(--space-md);
}

.mapa-fullscreen {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary);
}

.mapa-fullscreen:hover {
    background: var(--color-primary);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(139, 105, 20, 0.4);
}

.mapa-fullscreen svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .localizacao-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }
    
    .localizacao-mapa {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 640px) {
    .localizacao-wrapper {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .localizacao-info {
        gap: var(--space-md);
    }
    
    .localizacao-mapa {
        height: 300px;
    }
    
    .localizacao-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .localizacao-icon {
        margin: 0 auto;
    }
    
    .localizacao-features {
        gap: var(--space-sm);
    }
    
    .localizacao-feature-card {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .mapa-overlay {
        top: var(--space-sm);
        right: var(--space-sm);
    }
    
    .mapa-fullscreen {
        width: 36px;
        height: 36px;
    }
    
    .mapa-fullscreen svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   CONTATO SECTION
   ======================================== */
.contato {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contato-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contato-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contato-item:hover {
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contato-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contato-icon-whatsapp {
    background: var(--color-whatsapp);
}

.contato-icon-whatsapp svg {
    color: var(--color-white);
}

.contato-icon-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.contato-icon-instagram svg {
    color: var(--color-white);
}

.contato-details strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contato-details span {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contato-card {
    background: var(--color-primary-gradient);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

.contato-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--space-xl);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.contato-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.contato-card p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: var(--space-4xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        margin-bottom: var(--space-lg);
    }
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 0;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.1);
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.footer-brand-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
    width: 100%;
}

.footer-contact > * {
    width: 100%;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-whatsapp);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: var(--space-xs) 0;
}

.footer-whatsapp:hover {
    color: #25d366;
    transform: translateX(4px);
}

.footer-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: var(--space-xs) 0;
}

.footer-instagram:hover {
    color: #E4405F;
    transform: translateX(4px);
}

.footer-instagram svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    padding: var(--space-xs) 0;
    margin-top: var(--space-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    flex-shrink: 0;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    padding: 4px 0;
}

.footer-legal a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ========================================
   TURISMO SECTION
   ======================================== */
.turismo {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-bg-section);
    overflow: hidden;
}

.turismo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.turismo-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    filter: grayscale(40%) brightness(1.3) saturate(0.7);
    pointer-events: none;
    z-index: 0;
    /* Garantir que vídeo sempre cubra todo o espaço em todas as resoluções */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Garantir cobertura completa em diferentes resoluções */
@media (max-width: 1920px) {
    .turismo-video-bg {
        width: 100vw;
        height: 100%;
        min-width: 100vw;
        min-height: 100%;
    }
}

@media (max-width: 1024px) {
    .turismo-video-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    .turismo-video-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (orientation: portrait) {
    .turismo-video-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

.turismo-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 252, 249, 0.75) 0%, rgba(250, 248, 245, 0.85) 50%, rgba(245, 230, 211, 0.7) 100%);
    z-index: 1;
}

.turismo .container {
    position: relative;
    z-index: 2;
}

.turismo-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.turismo-intro {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.08);
    backdrop-filter: blur(10px);
}

.turismo-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    color: var(--color-text);
    line-height: 1.8;
}

.turismo-text p {
    font-size: 1rem;
    margin: 0;
}

.turismo-lead {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm) !important;
}

.turismo-cta {
    font-size: 1.125rem !important;
    color: var(--color-primary);
    margin-top: var(--space-md) !important;
    text-align: center;
}

.turismo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.turismo-feature-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-md);
    box-shadow: 0 5px 20px rgba(44, 36, 22, 0.06);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.turismo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.turismo-feature-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.turismo-feature-highlight .turismo-feature-icon {
    color: var(--color-white);
}

.turismo-feature-highlight h3,
.turismo-feature-highlight p {
    color: var(--color-white);
}

.turismo-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.turismo-feature-highlight .turismo-feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.turismo-feature-content {
    flex: 1;
}

.turismo-feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.turismo-feature-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.turismo-feature-content .btn {
    margin-top: var(--space-xs);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.pontos-turisticos {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.08);
    backdrop-filter: blur(10px);
}

.pontos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.pontos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.ponto-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.ponto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ponto-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.ponto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ponto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.ponto-count {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(212, 165, 116, 0.9);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.ponto-count::before {
    content: '📷';
    font-size: 1rem;
}

.ponto-content {
    padding: var(--space-lg);
}

.ponto-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.ponto-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.turismo-reserva {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.turismo-reserva-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.turismo-reserva-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.turismo-reserva-content .btn {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
}

.turismo-reserva-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade Turismo */
@media (max-width: 1024px) {
    .turismo {
        padding: var(--space-3xl) 0;
    }
    
    .turismo-intro,
    .pontos-turisticos {
        padding: var(--space-xl);
    }
    
    .turismo-features {
        grid-template-columns: 1fr;
    }
    
    .pontos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .turismo {
        padding: var(--space-2xl) 0;
    }
    
    .turismo-intro,
    .pontos-turisticos {
        padding: var(--space-lg);
    }
    
    .turismo-text p {
        font-size: 0.9375rem;
    }
    
    .turismo-lead {
        font-size: 1rem !important;
    }
    
    .turismo-feature-card {
        padding: var(--space-lg);
    }
    
    .turismo-reserva {
        padding: var(--space-xl);
    }
    
    .turismo-reserva-content h3 {
        font-size: 1.5rem;
    }
    
    .turismo-reserva-content p {
        font-size: 1rem;
    }
    
    .ponto-image {
        height: 180px;
    }
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: fixed;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    pointer-events: none;
}

.scroll-indicator-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 80px;
    height: 24px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-label.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-label-text {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.scroll-label-text.show {
    opacity: 1;
}

.scroll-indicator-track {
    width: 1.5px;
    height: 180px;
    background: rgba(139, 105, 20, 0.12);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-full);
    transition: height 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px rgba(139, 105, 20, 0.3);
}

.scroll-indicator-dots {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(139, 105, 20, 0.25);
    border: 1.5px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}

.scroll-indicator-dot:hover {
    background: var(--color-primary);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(139, 105, 20, 0.5);
}

.scroll-indicator-dot.active {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(139, 105, 20, 0.6);
}

.scroll-indicator-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    opacity: 0.2;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Label entre os dots - Desktop e Mobile (apenas um label dinâmico) */
.scroll-indicator-label-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    opacity: 0.8;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    pointer-events: none;
    margin: 6px 0;
    min-height: 50px;
    max-height: 60px;
    flex-shrink: 0;
}

/* Label mais visível quando próximo ao dot ativo */
.scroll-indicator-dot.active + .scroll-indicator-label-mobile {
    opacity: 1;
}

/* Responsive - Versão Mobile */
@media (max-width: 968px) {
    /* Ajustes para mobile */
    .scroll-indicator-label-mobile {
        font-size: 0.5625rem;
        letter-spacing: 0.8px;
        margin: 3px 0;
        min-height: 45px;
        max-height: 55px;
    }
    
    /* Reduzir espaçamento quando há nome após o dot ativo */
    .scroll-indicator-dot.active + .scroll-indicator-label-mobile {
        margin-top: 3px;
        opacity: 1;
    }
    
    .scroll-indicator-label-mobile + .scroll-indicator-dot {
        margin-top: 3px;
    }
    .scroll-indicator {
        position: fixed;
        right: var(--space-sm);
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        bottom: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 998;
        pointer-events: none;
        width: auto;
        padding: 0;
    }
    
    .scroll-indicator-label {
        display: none;
    }
    
    .scroll-label-text {
        display: none;
    }
    
    .scroll-indicator-track {
        display: none;
    }
    
    .scroll-indicator-progress {
        display: none;
    }
    
    .scroll-indicator-dots {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        position: relative;
    }
    
    /* Reduzir espaçamento quando há nome após o dot ativo */
    .scroll-indicator-dot.active + .scroll-indicator-label-mobile {
        margin-top: 2px;
    }
    
    .scroll-indicator-label-mobile + .scroll-indicator-dot {
        margin-top: 2px;
    }
    
    .scroll-indicator-dot {
        width: 6px;
        height: 6px;
        border-radius: var(--radius-full);
        background: rgba(139, 105, 20, 0.25);
        border: 1.5px solid transparent;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        pointer-events: auto;
        position: relative;
        flex-shrink: 0;
    }
    
    .scroll-indicator-dot:hover {
        background: var(--color-primary);
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(139, 105, 20, 0.5);
    }
    
    .scroll-indicator-dot.active {
        background: var(--color-primary);
        border-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.5);
        box-shadow: 0 0 10px rgba(139, 105, 20, 0.6);
    }
    
    .scroll-indicator-dot.active::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 14px;
        height: 14px;
        border-radius: var(--radius-full);
        background: var(--color-primary);
        opacity: 0.2;
        animation: pulse-dot 2.5s ease-in-out infinite;
    }
}

/* Mobile Pequeno - Ajustes adicionais */
@media (max-width: 640px) {
    .scroll-indicator {
        right: var(--space-xs);
        gap: 6px;
    }
    
    .scroll-indicator-dots {
        gap: 6px;
    }
    
    .scroll-indicator-dot {
        width: 5px;
        height: 5px;
    }
    
    .scroll-indicator-dot.active {
        transform: scale(1.4);
    }
    
    .scroll-label-text {
        font-size: 0.5625rem;
        letter-spacing: 0.8px;
    }
}

/* Mobile Muito Pequeno */
@media (max-width: 400px) {
    .scroll-indicator {
        right: 4px;
        gap: 5px;
    }
    
    .scroll-indicator-dots {
        gap: 5px;
    }
    
    .scroll-indicator-dot {
        width: 4px;
        height: 4px;
    }
    
    .scroll-indicator-dot.active {
        transform: scale(1.3);
    }
    
    .scroll-label-text {
        font-size: 0.5rem;
        letter-spacing: 0.6px;
    }
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 64px;
    height: 64px;
    background: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

/* ========================================
/* ========================================
   LIGHTBOX - Design Moderno e Responsivo
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    padding-top: calc(var(--space-xl) + 80px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Manter header visível quando lightbox está aberto */
body.lightbox-open .header {
    z-index: 10000;
    position: relative;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--color-white);
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
    left: var(--space-xl);
}

.lightbox-next {
    right: var(--space-xl);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop Grande (1440px+) - Padrão já aplicado */

/* Desktop Médio (1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .header-container {
        gap: var(--space-sm);
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .nav-list {
        gap: var(--space-md);
    }
}

/* Menu Mobile (1090px) - Esconder nav-list e mostrar nav-toggle */
@media (max-width: 1090px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid var(--color-border-light);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }
    
    .nav-link {
        padding: var(--space-sm);
        width: 100%;
        text-align: center;
        font-size: 0.9375rem;
    }
    
    .nav-toggle {
        display: flex;
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
        margin-right: var(--space-xs);
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .header-container {
        gap: var(--space-sm);
    }
    
    .logo {
        gap: var(--space-xs);
    }
    
    .logo-name {
        font-size: 1.125rem;
    }
    
    .logo-sub {
        font-size: 0.625rem;
        margin-top: 2px;
        padding-top: 2px;
        letter-spacing: 0.9px;
    }
    
    .logo-sub::before {
        width: 80%;
        top: 0;
        height: 1px;
    }
    
    .nav-list {
        gap: var(--space-md);
    }
    
    .btn-header-nav,
    .btn-header-whatsapp {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8125rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Intermediário (900px) */
@media (max-width: 900px) {
    .header-container {
        gap: var(--space-xs);
    }
    
    .logo-name {
        font-size: 1.15rem;
    }
    
    .nav-list {
        gap: var(--space-sm);
    }
    
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }
}

/* Tablet / Mobile Landscape (768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header {
        height: var(--header-height);
        box-shadow: none;
    }
    
    .header .header-container {
        padding: 0 8px;
    }
    
    .header-container {
        padding: 0 8px;
        gap: 4px;
        justify-content: space-between;
        min-width: 0;
    }
    
    .logo {
        flex: 0 0 auto;
        order: 1;
        min-width: 0;
        gap: 4px;
        flex-shrink: 1;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .header .logo-img,
    .logo-img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.625rem;
        margin-top: 3px;
        padding-top: 3px;
        letter-spacing: 0.8px;
    }
    
    .logo-sub::before {
        width: 80%;
        top: 0;
        height: 1px;
    }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid var(--color-border-light);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .header .nav-link,
    .nav-link {
        padding: var(--space-sm);
        width: 100%;
        text-align: center;
        font-size: 0.9375rem;
    }
    
    .nav-toggle {
        display: flex;
        flex: 0 0 auto;
        order: 2;
        margin-left: 4px;
        margin-right: 4px;
        width: 32px;
        height: 32px;
    }
    
    .header-actions {
        display: flex;
        gap: 4px;
        flex: 0 0 auto;
        order: 3;
        flex-shrink: 0;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 6px 10px;
        font-size: 0.6875rem;
        min-width: auto;
        justify-content: center;
        border-radius: var(--radius-full);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-width: 2px;
    }
    
    .btn-header-nav,
    .btn-header-como-chegar {
        background: var(--color-white);
        border-color: var(--color-primary);
    }
    
    .btn-header-whatsapp {
        background: var(--color-whatsapp);
        border-color: var(--color-whatsapp);
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        display: inline-block;
        font-size: 0.625rem;
        font-weight: 600;
        margin-left: 3px;
        white-space: nowrap;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 14px;
        height: 14px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .btn-header-nav:active,
    .btn-header-como-chegar:active,
    .btn-header-whatsapp:active {
        transform: scale(0.95);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }
    
    .hero {
        min-height: 80vh;
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    }
    
    .hero-content {
        padding: var(--space-2xl) var(--space-lg);
        max-width: 100%;
        backdrop-filter: blur(15px) saturate(150%);
        -webkit-backdrop-filter: blur(15px) saturate(150%);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .hero-badge {
        padding: var(--space-xs) var(--space-lg);
        font-size: 0.75rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-feature,
    .hero-feature-item {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.875rem;
    }
    
    .section {
        padding: var(--space-4xl) 0;
    }
    
    .quartos-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-row {
        grid-template-columns: 1fr;
    }
    
    .calc-form {
        padding: var(--space-xl);
    }
    
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-bottom: var(--space-lg);
    }
    
    .footer-brand {
        width: 100%;
        min-width: 0;
        gap: var(--space-md);
    }
    
    .footer-logo {
        width: 44px;
        height: 44px;
    }
    
    .footer-brand-text h3 {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .footer-brand-text p {
        font-size: 0.8125rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-contact {
        align-items: flex-start;
        gap: var(--space-md);
        width: 100%;
    }
    
    .footer-whatsapp {
        font-size: 0.875rem;
        padding: 8px 0;
    }
    
    .footer-whatsapp svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-instagram {
        font-size: 0.875rem;
        padding: 8px 0;
    }
    
    .footer-instagram svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-location {
        font-size: 0.8125rem;
        padding: 8px 0;
        margin-top: 4px;
    }
    
    .footer-bottom {
        padding-top: var(--space-md);
        font-size: 0.8125rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .footer-legal a {
        font-size: 0.8125rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Grande (640px) */
@media (max-width: 640px) {
    .header-container {
        padding: 0 10px;
        gap: 5px;
    }
    
    .header .header-container {
        padding: 0 10px;
    }
    
    .logo {
        gap: 5px;
    }
    
    .header .logo-img,
    .logo-img {
        width: 34px;
        height: 34px;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 0.9375rem;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.59375rem;
    }
    
    .nav-toggle {
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 7px 11px;
        font-size: 0.71875rem;
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        font-size: 0.59375rem;
        margin-left: 3px;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 15px;
        height: 15px;
    }
}

/* Mobile Médio (600px) */
@media (max-width: 600px) {
    .header-container {
        padding: 0 8px;
        gap: 4px;
    }
    
    .header .header-container {
        padding: 0 8px;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 6px 10px;
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 6px;
        gap: 3px;
    }
    
    .header .header-container {
        padding: 0 6px;
    }
    
    .logo {
        gap: 4px;
        flex-shrink: 1;
    }
    
    .header .logo-img,
    .logo-img {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 0.875rem;
        line-height: 1.2;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.5625rem;
        margin-top: 2px;
        padding-top: 2px;
    }
    
    .logo-sub::before {
        width: 80%;
        top: 0;
        height: 1px;
    }
    
    .nav-toggle {
        width: 28px;
        height: 28px;
        margin-left: 3px;
        margin-right: 3px;
    }
    
    .header-actions {
        gap: 3px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 6px 8px;
        min-width: auto;
        font-size: 0.625rem;
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        display: inline-block;
        font-size: 0.5625rem;
        margin-left: 2px;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 12px;
        height: 12px;
    }
    
    .btn-header-nav:active,
    .btn-header-como-chegar:active,
    .btn-header-whatsapp:active {
        transform: scale(0.92);
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-md);
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
        background: rgba(255, 255, 255, 0.92);
        border-radius: var(--radius-lg);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-title-main::after,
    .hero-title-sub::after {
        display: none;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--space-xl);
    }
    
    .hero-feature,
    .hero-feature-item {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .estrutura-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .galeria-item.galeria-large,
    .galeria-item.galeria-tall,
    .galeria-item:not(.galeria-large):not(.galeria-tall) {
        grid-row: span 20;
        aspect-ratio: 4/3;
    }
    
    .galeria-menu {
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding: var(--space-xs);
        margin-bottom: var(--space-2xl);
    }
    
    .galeria-menu-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.875rem;
    }
    
    .galeria-menu-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .lightbox {
        padding: var(--space-md);
        padding-top: calc(var(--space-md) + 70px);
    }
    
    .lightbox-content {
        max-width: 100vw;
        max-height: calc(100vh - 100px);
    }
    
    .lightbox-image {
        max-height: calc(100vh - 100px);
        border-radius: var(--radius-md);
    }
    
    .lightbox-close {
        top: var(--space-md);
        right: var(--space-md);
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: var(--space-md);
    }
    
    .lightbox-next {
        right: var(--space-md);
    }
    
    .lightbox-counter {
        bottom: var(--space-md);
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-md);
    }
}

/* Mobile Pequeno (400px) */
@media (max-width: 400px) {
    .header-container {
        padding: 0 5px;
        gap: 3px;
    }
    
    .header .header-container {
        padding: 0 5px;
    }
    
    .logo {
        gap: 3px;
    }
    
    .header .logo-img,
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 0.8125rem;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.53125rem;
    }
    
    .nav-toggle {
        width: 26px;
        height: 26px;
        margin-left: 2px;
        margin-right: 2px;
    }
    
    .header-actions {
        gap: 2px;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 5px 7px;
        font-size: 0.59375rem;
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        font-size: 0.53125rem;
        margin-left: 2px;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 11px;
        height: 11px;
    }
}

/* Mobile Muito Pequeno (360px) */
@media (max-width: 360px) {
    .header-container {
        padding: 0 4px;
        gap: 2px;
    }
    
    .header .header-container {
        padding: 0 4px;
    }
    
    .logo {
        gap: 2px;
    }
    
    .header .logo-img,
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 0.75rem;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.5rem;
    }
    
    .nav-toggle {
        width: 24px;
        height: 24px;
        margin-left: 2px;
        margin-right: 2px;
    }
    
    .header-actions {
        gap: 2px;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 5px 6px;
        font-size: 0.5625rem;
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        font-size: 0.5rem;
        margin-left: 1px;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Mínimo (320px) */
@media (max-width: 320px) {
    .header-container {
        padding: 0 3px;
        gap: 2px;
    }
    
    .header .header-container {
        padding: 0 3px;
    }
    
    .header .logo-img,
    .logo-img {
        width: 26px;
        height: 26px;
    }
    
    .header .logo-name,
    .logo-name {
        font-size: 0.6875rem;
    }
    
    .header .logo-sub,
    .logo-sub {
        font-size: 0.46875rem;
    }
    
    .nav-toggle {
        width: 22px;
        height: 22px;
    }
    
    .header .btn-header-nav,
    .header .btn-header-como-chegar,
    .header .btn-header-whatsapp,
    .btn-header-nav,
    .btn-header-como-chegar,
    .btn-header-whatsapp {
        padding: 4px 5px;
        font-size: 0.53125rem;
    }
    
    .btn-header-nav span,
    .btn-header-como-chegar span,
    .btn-header-whatsapp span {
        font-size: 0.46875rem;
    }
    
    .btn-header-nav svg,
    .btn-header-como-chegar svg,
    .btn-header-whatsapp svg {
        width: 9px;
        height: 9px;
    }
}

/* ========================================
   PERFORMANCE & ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

img {
    opacity: 1;
    transition: opacity 0.3s;
}

img.loaded {
    opacity: 1;
}

/* Garantir que imagens sempre apareçam */
img[src] {
    opacity: 1 !important;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .hero-scroll,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ========================================
   PÁGINAS DE POLÍTICAS LEGAIS
   ======================================== */
.politicas-page {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-section) 100%);
    position: relative;
}

.politicas-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.politicas-page .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.politicas-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.politicas-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary-gradient);
}

.politicas-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
}

.politicas-header .back-link:hover {
    color: var(--color-primary-dark);
    background: var(--color-accent);
    transform: translateX(-4px);
}

.politicas-header h1 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.politicas-date {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent-light);
    border-radius: var(--radius-full);
}

.politicas-content {
    background: var(--color-white);
    padding: var(--space-4xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.politicas-content section {
    margin-bottom: var(--space-3xl);
}

.politicas-content section:last-child {
    margin-bottom: 0;
}

.politicas-content h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    margin-top: var(--space-2xl);
    padding: var(--space-md) 0 var(--space-sm);
    border-bottom: 3px solid var(--color-primary);
    position: relative;
    padding-left: var(--space-lg);
}

.politicas-content h2:first-of-type {
    margin-top: 0;
}

.politicas-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: var(--space-md);
    bottom: var(--space-sm);
    width: 4px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-full);
}

.politicas-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    position: relative;
}

.politicas-content h3::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.politicas-content p {
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
}

.politicas-content ul {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
    line-height: 1.9;
    list-style: none;
}

.politicas-content ul li {
    margin-bottom: var(--space-md);
    color: var(--color-text);
    padding-left: var(--space-lg);
    position: relative;
    font-size: 1.0625rem;
}

.politicas-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.politicas-content ul li strong {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.politicas-content a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.politicas-content a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.politicas-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.politicas-content table th {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.politicas-content table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text);
}

.politicas-content table tr:last-child td {
    border-bottom: none;
}

.politicas-content table tr:nth-child(even) {
    background: var(--color-bg-alt);
}

.politicas-content table tr:hover {
    background: var(--color-accent-light);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .politicas-page {
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-2xl);
    }
    
    .politicas-header {
        padding: var(--space-xl);
        margin-bottom: var(--space-2xl);
    }
    
    .politicas-header h1 {
        font-size: 2rem;
    }
    
    .politicas-content {
        padding: var(--space-xl);
    }
    
    .politicas-content h2 {
        font-size: 1.5rem;
        padding-left: var(--space-md);
    }
    
    .politicas-content h2::before {
        width: 3px;
    }
    
    .politicas-content h3 {
        font-size: 1.25rem;
        padding-left: var(--space-md);
    }
    
    .politicas-content p,
    .politicas-content ul li {
        font-size: 1rem;
    }
    
    .politicas-content table {
        font-size: 0.875rem;
    }
    
    .politicas-content table th,
    .politicas-content table td {
        padding: var(--space-sm);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--space-xs);
        justify-content: center;
    }
    
    .footer-legal span {
        display: none;
    }
}
