/* ============================================
   RINCÃO RESORT - CSS PREMIUM AVANÇADO
   
   Práticas de Mercado: Glassmorphism, Neumorphism,
   Animações Sofisticadas, Transições Elegantes
   Paleta: Ouro #D4A574, Verde Escuro #0A3D32, Bege #F5F1E8
   ============================================ */

:root {
    --primary-color: #D4A574;
    --primary-light: #E8C69F;
    --primary-dark: #B89354;
    --dark-color: #0A3D32;
    --light-color: #F5F1E8;
    --secondary-color: #0A3D32;
    --gray-color: #8B8B8B;
    --gray-light: #D4D4D4;
    --border-color: #E8E4DB;
    
    /* Transições Sofisticadas */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-out;
    --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-elastic: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Sombras com Profundidade */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(245, 241, 232, 0.75);
    --glass-border: rgba(212, 165, 116, 0.2);
    --glass-blur: blur(10px);
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remover barra de scroll */
html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* ============================================
   BOOTSTRAP GRID - RESPONSIVIDADE APRIMORADA
   ============================================ */

/* Garantir que o grid funcione em dispositivos pequenos */
@media (max-width: 991px) {
    .col-lg-4,
    .col-lg-3 {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .col-md-6,
    .col-md-4 {
        width: 100% !important;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Espaço para navbar fixa */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Scroll Bar Customization */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   NAVIGATION - PREMIUM NAVBAR
   ============================================ */

.navbar-custom {
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.98) 0%, rgba(5, 31, 26, 1) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
    position: fixed !important; /* Fixa a navbar no topo */
    top: 0;
    left: 0;
    width: 100%;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    will-change: box-shadow, padding;
}

.navbar-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.85) 0%, rgba(5, 31, 26, 0.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.navbar-custom.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 0.6rem 0;
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.99) 0%, rgba(5, 31, 26, 0.99) 100%);
    /* manter visível mesmo quando a classe scrolled for adicionada */
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-custom.show-on-hover {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.99) 0%, rgba(5, 31, 26, 0.99) 100%) !important;
    padding: 0.6rem 0 !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.navbar-brand:hover {
    transform: scale(1.08);
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    will-change: height, filter;
}

.navbar-custom.scrolled .navbar-logo {
    height: 48px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 var(--spacing-xs);
    transition: all 0.3s ease-out;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem !important;
    will-change: transform, color;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-light) !important;
    transform: translateY(-3px);
}

.navbar-nav .nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
    border-radius: 4px;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.725rem 1.75rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    /* Transição suave */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
    will-change: transform, box-shadow;
    
    /* Efeito de glow */
    border: 2px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), 
                height 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: width, height;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    width: 200px;
    height: 200px;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
    color: var(--dark-color);
}

.btn-primary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-resort-pool.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomIn 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.4) 0%, rgba(5, 31, 26, 0.6) 100%);
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: slideInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 800px;
    padding: var(--spacing-lg);
    will-change: transform, opacity;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2.5s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   SECTIONS - SPACING & SEPARATION
   ============================================ */

section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
    position: relative;
    margin: 1.5rem 0;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
}

section:last-child::after {
    display: none;
}

#accommodations {
    background-color: var(--light-color);
}

#experiences {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

#gallery {
    background-color: var(--light-color);
}

#booking {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* ============================================
   ACCOMMODATIONS - PREMIUM CARDS
   ============================================ */

#accommodations .row {
    gap: 2.5rem;
    row-gap: 2.5rem;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    will-change: transform, box-shadow;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.room-card:hover::before {
    transform: scaleX(1);
}

.room-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-12px);
    border-color: var(--primary-light);
}

.room-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.room-gradient {
    background: linear-gradient(135deg, #E8C69F 0%, #D4A574 100%);
}

.room-suite {
    background-image: url('../images/suite.png');
    background-size: cover;
    background-position: center;
    background-color: #E8C69F;
    position: relative;
}

.room-suite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 198, 159, 0.3) 0%, rgba(212, 165, 116, 0.3) 100%);
    pointer-events: none;
}

.room-luxury {
    background-image: url('../images/luxury-room.png');
    background-size: cover;
    background-position: center;
    background-color: #D4A574;
    position: relative;
}

.room-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(139, 111, 71, 0.2) 100%);
    pointer-events: none;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.room-card:hover .room-image {
    transform: scale(1.08);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.room-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.room-card:hover .room-content h3 {
    color: var(--primary-color);
}

.room-description {
    color: var(--gray-color);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.room-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    flex-wrap: wrap;
}

.room-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.room-card:hover .room-info span {
    transform: translateX(3px);
}

.room-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.room-amenities small {
    color: var(--dark-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}

.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.room-card:hover .room-price {
    font-size: 1.6rem;
}

/* ============================================
   EXPERIENCES - PREMIUM CARDS
   ============================================ */

#experiences .row {
    gap: 2.5rem;
    row-gap: 2.5rem;
}

.experience-card {
    padding: 2.5rem 2rem;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.03) 100%);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    transform: translate(0, 0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.experience-card:hover::before {
    transform: translate(-20%, -20%);
}

.experience-card i {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 6px 12px rgba(212, 165, 116, 0.2));
    position: relative;
    z-index: 1;
    will-change: transform, filter;
}

.experience-card:hover i {
    transform: scale(1.2) translateY(-8px);
    filter: drop-shadow(0 10px 20px rgba(212, 165, 116, 0.35));
}

.experience-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.experience-card:hover h3 {
    color: var(--primary-light);
    transform: translateX(4px);
}

.experience-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.experience-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.experience-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    box-shadow: 0 16px 50px rgba(212, 165, 116, 0.25);
}

/* Closing Message Style */
.closing-message {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    padding-bottom: 66.66%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: var(--gray-light);
    transition: box-shadow 0.4s ease;
}

.gallery-main:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.25);
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--dark-color);
    border: 2px solid var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    will-change: transform, box-shadow;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.5);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-caption {
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-prev {
        left: 15px;
    }
    .gallery-next {
        right: 15px;
    }
}

/* ============================================
   ROOM DETAILS MODALS
   ============================================ */

.modal-content {
    background: var(--light-color);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-body {
    padding: 2.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    gap: 1rem;
}

.room-detail-image {
    height: 300px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    background-size: cover;
    background-position: center;
}

.room-detail-suite {
    background-image: url('../images/suite.png');
    background-color: #E8C69F;
}

.room-detail-premium {
    background-image: url('../images/luxury-room.png');
    background-color: #D4A574;
}

.room-detail-luxury {
    background-image: url('../images/luxury-room.png');
    background-color: #D4A574;
}

.modal-body h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-top: 1.5rem;
}

.modal-body h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.modal-body .list-unstyled li {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.modal-body .text-primary {
    color: var(--primary-color) !important;
}

.modal-body .text-success {
    color: #28a745 !important;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* ============================================
   BOOKING FORM
   ============================================ */

.booking-form {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.booking-form .form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.booking-form .form-control,
.booking-form .form-select {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(212, 165, 116, 0.4);
    color: white;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    padding: 0.75rem 1rem;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: none;
    color: white;
    outline: none;
}

.booking-form .form-select option {
    background: #1a5a4a;
    color: white;
    padding: 8px 12px;
    text-shadow: none;
    border: none;
    outline: none;
}

.booking-form .form-select option:first-child {
    background: #1a5a4a;
    color: rgba(255, 255, 255, 0.7);
}

.booking-form .form-select option:hover {
    background: #2a7a6a;
    color: white;
}

.booking-form .form-select option:checked {
    background: linear-gradient(#2a7a6a, #1a5a4a);
    color: white;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-left-color: var(--primary-dark);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.stars i {
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefit-card {
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translate3d(-60px, 0, 0);
}

.benefit-card.animate {
    animation: slideInLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.benefit-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.benefit-card.animate:nth-child(3) {
    animation-delay: 0.5s;
}

.benefit-card.animate:nth-child(4) {
    animation-delay: 0.7s;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.15) rotateZ(-5deg);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(212, 165, 116, 0.12);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.95) 0%, rgba(5, 31, 26, 1) 100%);
    color: white;
    border-top: 2px solid rgba(212, 165, 116, 0.2);
}

footer h5 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

footer a {
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-dark {
    background: linear-gradient(135deg, rgba(10, 61, 50, 0.95) 0%, rgba(5, 31, 26, 1) 100%) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-title::after {
        width: 50px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.8px;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .room-amenities {
        grid-template-columns: 1fr;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .room-footer .btn {
        width: 100%;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .experience-card,
    .benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .room-card {
        margin-bottom: 1rem;
    }
    
    .gallery-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .navbar-custom {
        padding: 0.75rem 0;
    }
    
    .navbar-logo {
        height: 50px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1023px)
   ============================================ */

@media (min-width: 576px) and (max-width: 1023px) {
    /* Grid - 2 colunas em tablet */
    #accommodations .row {
        gap: 1.5rem;
        row-gap: 1.5rem;
    }
    
    #experiences .row {
        gap: 1.5rem;
        row-gap: 1.5rem;
    }
    
    .col-4 {
        flex: 0 0 calc(50% - 0.75rem) !important;
        width: calc(50% - 0.75rem) !important;
        max-width: calc(50% - 0.75rem) !important;
    }
    
    .col-3 {
        flex: 0 0 calc(50% - 0.75rem) !important;
        width: calc(50% - 0.75rem) !important;
        max-width: calc(50% - 0.75rem) !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .room-image {
        height: 160px;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 576px)
   ============================================ */

@media (max-width: 575px) {
    /* Grid - 1 coluna em mobile */
    .col-4,
    .col-3 {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Remove gaps em mobile */
    #accommodations .row {
        gap: 1rem;
        row-gap: 1rem;
    }
    
    #experiences .row {
        gap: 1rem;
        row-gap: 1rem;
    }
    
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .hero-section {
        height: 60vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .room-card {
        margin-bottom: 0;
    }
    
    .room-image {
        height: 140px;
    }
    
    .room-content {
        padding: 1.25rem;
    }
    
    .room-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .room-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .room-amenities {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .room-amenities small {
        font-size: 0.8rem;
    }
    
    .room-info {
        font-size: 0.8rem;
        gap: 1rem;
    }
    
    .experience-card,
    .testimonial-card,
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card h3,
    .experience-card h3,
    .testimonial-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card i,
    .experience-card i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .booking-form {
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .booking-form .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .booking-form .form-control,
    .booking-form .form-select {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        line-height: 1.5;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .btn-sm {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .navbar-custom {
        padding: 0.5rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0 !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .container-fluid,
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Modal responsivo em mobile */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .room-detail-image {
        height: 200px !important;
        margin-bottom: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.25rem;
        margin-top: 1rem;
    }
    
    .modal-body h5 {
        font-size: 1rem;
    }
}

/* ============================================
   ANIMAÇÕES SOFISTICADAS - MARKET PRACTICES
   ============================================ */

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animações de Parallax */
@keyframes parallaxMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

/* Animações de Hover Sofisticadas */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Morph Shape - Transições Suaves */
@keyframes morphShape {
    0%, 100% {
        border-radius: 20% 80% 30% 70% / 60% 40% 60% 40%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 40% 40% 60% 50%;
    }
    75% {
        border-radius: 70% 30% 66% 33% / 33% 33% 66% 66%;
    }
}

/* Animações de Loading */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-60px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Animação de Rotação Suave */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Glassmorphism Reveal */
@keyframes glassReveal {
    from {
        opacity: 0;
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* Efeitos de Ripple */
.ripple::after {
    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%);
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ============================================
   REVEAL ON SCROLL - Classes para JS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.reveal.fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.reveal.scaleUp {
    animation: scaleUp 0.8s ease-out forwards;
}

/* ============================================
   ELEMENTOS COM HOVER SOFISTICADO
   ============================================ */

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.hover-scale {
    transition: var(--transition-smooth);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: all 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
}

/* Glassmorphism */
.glassmorphic {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* ============================================
   ABOUT HOTEL SECTION
   ============================================ */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-color);
    text-align: justify;
    transition: var(--transition-smooth);
    padding: 1rem;
    margin: 0;
    border-left: 4px solid transparent;
    background: rgba(212, 165, 116, 0.02);
    border-radius: 4px;
}

.about-paragraph:hover {
    border-left-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.08);
    transform: translateX(8px);
}

.about-paragraph:first-child {
    animation: slideInLeft 0.6s ease-out;
}

.about-paragraph:nth-child(2) {
    animation: slideInLeft 0.8s ease-out;
}

.about-paragraph:nth-child(3) {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Value Cards */
.about-value-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease;
    z-index: 0;
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.2);
}

.about-value-card:hover::before {
    height: 4px;
    opacity: 1;
}

.about-value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--primary-dark);
}

.about-value-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-value-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.about-value-card:hover .about-value-content h3 {
    color: var(--primary-dark);
}

.about-value-content p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-paragraph {
        font-size: 0.95rem;
        text-align: left;
        padding: 0.75rem;
    }
    
    .about-value-card {
        padding: 1.5rem;
    }
    
    .about-value-icon {
        font-size: 2rem;
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .about-content {
        gap: 1rem;
    }
    
    .about-paragraph {
        font-size: 0.9rem;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .about-value-card {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-value-icon {
        min-width: auto;
    }
}

/* ============================================
   GASTRONOMY SECTION
   ============================================ */

.gastronomy-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gastronomy-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-color);
    text-align: justify;
    transition: var(--transition-smooth);
    padding: 1rem;
    margin: 0;
    border-left: 4px solid transparent;
    background: rgba(212, 165, 116, 0.02);
    border-radius: 4px;
}

.gastronomy-paragraph:hover {
    border-left-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.08);
    transform: translateX(8px);
}

.gastronomy-paragraph:first-child {
    animation: slideInLeft 0.6s ease-out;
}

.gastronomy-paragraph:nth-child(2) {
    animation: slideInLeft 0.8s ease-out;
}

.gastronomy-paragraph:nth-child(3) {
    animation: slideInLeft 1s ease-out;
}

/* Gastronomy Feature Cards */
.gastronomy-feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.gastronomy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease;
    z-index: 0;
}

.gastronomy-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.2);
}

.gastronomy-feature-card:hover::before {
    height: 4px;
    opacity: 1;
}

.gastronomy-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.gastronomy-feature-card:hover .gastronomy-feature-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--primary-dark);
}

.gastronomy-feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.gastronomy-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.gastronomy-feature-card:hover .gastronomy-feature-content h3 {
    color: var(--primary-dark);
}

.gastronomy-feature-content p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gastronomy-paragraph {
        font-size: 0.95rem;
        text-align: left;
        padding: 0.75rem;
    }
    
    .gastronomy-feature-card {
        padding: 1.5rem;
    }
    
    .gastronomy-feature-icon {
        font-size: 2rem;
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .gastronomy-content {
        gap: 1rem;
    }
    
    .gastronomy-paragraph {
        font-size: 0.9rem;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .gastronomy-feature-card {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .gastronomy-feature-icon {
        min-width: auto;
    }
}

/* ============================================
   RESERVAS E GARANTIAS SECTION
   ============================================ */

.accordion-dark {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-item {
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid var(--primary-color) !important;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
}

.accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.accordion-button:hover::before {
    width: 100%;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: rgba(212, 165, 116, 0.15);
    border-top: 2px solid var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    color: var(--primary-light);
}

.accordion-body {
    padding: 1.5rem;
    border-top: 1px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body li {
    padding: 0.5rem 0;
    border-bottom: 0.5px solid rgba(212, 165, 116, 0.2);
    padding-left: 1rem;
}

.accordion-body li:last-child {
    border-bottom: none;
}

/* ============================================
   COMO CHEGAR / LOCATION SECTION
   ============================================ */

.location-map-container {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8E4DB 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    height: 400px;
}

.location-map-container iframe {
    border: 0;
    margin: 0;
    padding: 0;
}

.location-map-container:hover {
    box-shadow: 0 16px 48px rgba(212, 165, 116, 0.25);
    transform: translateY(-4px);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    border-left: 4px solid var(--primary-color);
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.05) 100%);
    pointer-events: none;
}

.location-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2) !important;
    background: rgba(245, 241, 232, 1);
}

.location-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.location-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-card a {
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
}

.location-card a:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline;
}

/* Navigation Buttons */
.location-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-navigation .btn {
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-navigation .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.location-navigation .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border-color: var(--primary-dark);
}

.location-navigation .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.location-navigation .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.location-navigation .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.location-navigation .btn-outline-secondary {
    border-color: var(--gray-color);
    color: var(--gray-color);
}

.location-navigation .btn-outline-secondary:hover {
    background-color: var(--gray-color);
    border-color: var(--gray-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 139, 139, 0.4);
}

/* Travel Information Cards */
.travel-info-card {
    background: white;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.travel-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.travel-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.25) !important;
}

.travel-info-card:hover::after {
    transform: scaleX(1);
}

.travel-info-card i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
}

.travel-info-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.travel-icon {
    font-size: 2.5rem;
}

.travel-info-card h5 {
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.travel-info-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .location-map-container {
        height: 300px !important;
    }
    
    .location-info {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .location-map-container {
        height: 250px !important;
    }
    
    .location-card {
        padding: 1.5rem !important;
    }
    
    .travel-info-card {
        padding: 2rem 1rem !important;
    }
    
    .travel-info-card i {
        font-size: 2rem !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar-custom,
    .scroll-indicator,
    .gallery-btn {
        display: none;
    }
    
    .hero-section {
        height: auto;
        margin-top: 0;
    }
    
    body {
        background: white;
    }
}

/* ============================================
   VÍDEO INSTITUCIONAL
   ============================================ */

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.video-container video:hover {
    transform: scale(1.02);
}

/* Responsividade para vídeo */
@media (max-width: 767px) {
    .video-container video {
        max-height: 50vh;
    }
}

/* Apple Maps Compatibility */
.apple-maps-btn.disabled-maps {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.apple-maps-btn.disabled-maps::after {
    content: ' (Apenas Apple)';
    font-size: 0.8em;
    color: #6c757d;
    font-weight: normal;
}