/* ===== EXPERIENCE DETAIL PAGE STYLES ===== */
/* Estilos específicos para a página de detalhes da experiência */

/* Container principal */
.experience-details-upgrade {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Layout Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Header Section */
.header-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .experience-title {
        font-size: 2rem;
    }
}

.experience-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Location and Rating */
.location-rating {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 1rem;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: #ff8a00;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #d1d5db;
}

.star.filled {
    color: #fbbf24;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.rating-value {
    font-weight: 600;
    color: #1f2937;
}

.review-count {
    color: #6b7280;
}

.google-icon {
    background: #4285f4;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Image Section */
.image-section {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: #f9fafb;
  padding: 32px;
  margin-bottom: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .main-image {
        height: 250px;
    }
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    padding: 12px;
    background: #f9fafb;
}

.mini-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.mini-gallery img:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #ff6b35);
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }
}

/* Highlights Section */
.highlights-section {
    margin-bottom: 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #ff8a00;
    position: relative;
    overflow: hidden;
}

.highlights-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.highlights-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.highlights-title::before {
    content: '✨';
    font-size: 1.2em;
    animation: pulse 2s ease-in-out infinite;
}

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

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.highlights-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.highlights-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Smart Content Formatting */
.smart-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.smart-content .content-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 24px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.smart-content .content-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff8a00;
}

.smart-content .content-subtitle {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 20px 0 12px 0;
    color: #4b5563;
}

.smart-content .content-paragraph {
    margin: 0 0 16px 0;
    text-align: justify;
    line-height: 1.7;
}

.smart-content .content-list {
    margin: 16px 0;
    padding-left: 20px;
}

.smart-content .content-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.smart-content .price-highlight {
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #f59e0b;
}

.smart-content .time-highlight {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #3b82f6;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Booking Card */
.booking-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.price-section {
    margin-bottom: 20px;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
}

.price-label {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-unit {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 400;
}

.reserve-btn {
    background: linear-gradient(135deg, #ff8a00, #ff6b35);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    display: block;
    box-shadow: 0 4px 16px rgba(255, 138, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.reserve-btn:hover::before {
    left: 100%;
}

.reserve-btn:hover {
    background: linear-gradient(135deg, #e67e00, #e55a2b);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.4);
}

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

.booking-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.booking-features li:last-child {
    border-bottom: none;
}

.booking-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Calendar Section */
.calendar-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 16px;
    height: auto;
    min-height: 350px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.calendar-section::-webkit-scrollbar {
    width: 8px;
}

.calendar-section::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.calendar-section::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.calendar-section::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.calendar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #10b981;
    border-radius: 1px;
}

/* FareHarbor Calendar Styles */
.fareharbor-calendar {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fareharbor-calendar iframe {
    border: none;
    border-radius: 8px;
    min-height: 400px;
}

.fareharbor-calendar-script {
    min-height: 300px;
}

/* Modal Styles */
.modal-fh {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.modal-content-fh {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header-fh {
    background: linear-gradient(135deg, #ff8a00, #ff6b35);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-fh {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-fh {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-fh:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body-fh {
    padding: 0;
    height: 60vh;
    overflow: hidden;
}

/* Fixed Booking Button */
.fixed-booking-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff8a00, #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
    display: none;
}

.fixed-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 0, 0.5);
}

@media (max-width: 1024px) {
    .fixed-booking-btn {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience-details-upgrade {
        padding: 16px;
    }
    
    .location-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .highlights-section {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .highlights-title {
        font-size: 1.2rem;
    }
    
    .highlights-list li {
        padding: 6px 10px;
        font-size: 0.95rem;
    }
    
    .smart-content {
        font-size: 1rem;
    }
    
    .smart-content .content-title {
        font-size: 1.3rem;
        margin: 20px 0 12px 0;
    }
    
    .smart-content .content-subtitle {
        font-size: 1.1rem;
        margin: 16px 0 8px 0;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .reserve-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-details-upgrade {
        padding: 12px;
    }
    
    .experience-title {
        font-size: 1.75rem;
    }
    
    .content-grid {
        gap: 20px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .highlights-section {
        padding: 12px;
    }
    
    .highlights-list li {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .highlights-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .booking-card {
        padding: 16px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff8a00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.reserve-btn:focus,
.fixed-booking-btn:focus {
    outline: 2px solid #ff8a00;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .sidebar,
    .fixed-booking-btn,
    .modal-fh {
        display: none !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}

/* Dark Mode Support - DESATIVADO */
/* Dark mode foi desativado para manter consistência visual
   O site sempre usará tema claro (light mode) */

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-up {
    animation: slideUp 0.4s ease-out;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Custom Scrollbar for Content */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Enhanced Visual Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-text {
    background: linear-gradient(135deg, #ff8a00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Content Enhancement */
.enhanced-content {
    position: relative;
}

.enhanced-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff8a00, #ff6b35);
    border-radius: 2px;
    opacity: 0.6;
}

/* Interactive Elements */
.interactive-element {
    transition: all 0.2s ease;
    cursor: pointer;
}

.interactive-element:hover {
    transform: scale(1.02);
}

.interactive-element:active {
    transform: scale(0.98);
}

/* Status Indicators */
.status-available {
    color: #10b981;
    font-weight: 600;
}

.status-limited {
    color: #f59e0b;
    font-weight: 600;
}

.status-unavailable {
    color: #ef4444;
    font-weight: 600;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: #ff8a00;
    color: white;
}

.badge-secondary {
    background: #6b7280;
    color: white;
}

.badge-success {
    background: #10b981;
    color: white;
}

.badge-warning {
    background: #f59e0b;
    color: white;
}

.badge-danger {
    background: #ef4444;
    color: white;
}

/* Final Responsive Adjustments */
@media (max-width: 320px) {
    .experience-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .reserve-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .highlights-list li {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
}