/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #c5a059;       /* Deep Gold / Bronze */
    --primary-light: #e5c27d;
    --primary-dark: #9e7b39;
    --secondary: #d4af37;     /* Bright Gold */
    --dark: #121212;          /* Charcoal Background */
    --dark-surface: #1e1e1e;  /* Charcoal Cards/Panels */
    --dark-border: #2c2c2c;
    --light: #faf8f5;         /* Cream Background */
    --light-surface: #ffffff; /* White Panels */
    --light-border: #e9e5dc;
    --text-dark: #2c2c2c;     /* Main Body Text (Light Mode) */
    --text-light: #f5f5f5;    /* Main Body Text (Dark Mode) */
    --text-muted: #777777;    
    --whatsapp: #25d366;      /* Brand WhatsApp Green */
    --whatsapp-dark: #128c7e;
    
    /* Typography */
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Layout Properties */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.2);
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography & Basic Layout Components
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    font-weight: 700;
    line-height: 1.2;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-top: 10px;
    font-weight: 800;
}

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

.section-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--whatsapp);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    display: flex;
    width: 100%;
}

/* Button Shine Effect */
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    z-index: -1;
}

.btn-shine:hover::after {
    left: 120%;
    transition: all 0.8s ease-in-out;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-border);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(250, 248, 245, 0.98);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    font-size: 2.1rem;
    color: var(--primary);
}

.logo-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text .accent {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.15rem;
}

.logo-slogan {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 8px;
}

.lang-link {
    color: var(--dark);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.lang-link:hover {
    color: var(--primary);
    background-color: rgba(197, 160, 89, 0.1);
}

.lang-link.active {
    color: var(--primary-dark);
    border-color: var(--primary);
    background-color: rgba(197, 160, 89, 0.05);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-headers);
}

.hero-tagline i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Floating Booking Card */
.hero-floating-card {
    position: relative;
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    overflow: visible;
}

.badge-discount {
    position: absolute;
    top: -24px;
    right: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #c5a059 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
    transform: rotate(10deg);
}

.badge-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-val {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.badge-desc {
    font-size: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.hero-floating-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: white;
    font-weight: 700;
}

.departure-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.departure-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.departure-info i {
    color: var(--primary);
    font-size: 1.1rem;
}

.card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.card-price-promo {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.card-price-promo .price-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-headers);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--light);
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-section {
    padding: 120px 0;
    background-color: var(--light);
}

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

.experience-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.3);
}

.card-icon-container {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.card-icon-container i {
    font-size: 1.6rem;
    color: var(--primary);
}

.experience-card:hover .card-icon-container {
    background-color: var(--primary);
}

.experience-card:hover .card-icon-container i {
    color: white;
}

.experience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.experience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Mid-Banner CTA
   ========================================================================== */
.banner-cta {
    position: relative;
    padding: 80px 0;
    background-image: url('assets/interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.75);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-text {
    max-width: 700px;
}

.banner-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* ==========================================================================
   Packages & Pricing Section
   ========================================================================== */
.packages-section {
    padding: 120px 0;
    background-color: #f3f0e7; /* Margim cream tone */
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 60px;
}

.package-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.package-card:hover {
    box-shadow: var(--shadow-md);
}

.package-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.package-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 24px;
}

.package-card.popular .package-header {
    border-bottom-color: rgba(197, 160, 89, 0.2);
}

.package-header h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.package-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.package-price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-price {
    display: flex;
    align-items: baseline;
}

.package-price .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-right: 4px;
}

.package-price .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    font-family: var(--font-headers);
}

.package-price .cents {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    align-self: flex-start;
    margin-top: 6px;
}

.package-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.package-price-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
    font-family: var(--font-headers);
}

.package-card.popular .package-price-sub {
    color: #e5c27d;
}

.package-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(44, 44, 44, 0.9);
}

.package-features i {
    font-size: 1rem;
    margin-top: 3px;
}

.package-features .fa-circle-check {
    color: var(--primary);
}

.package-features .disabled {
    color: #b0aba0;
}

.package-features .fa-circle-xmark {
    color: #c0bba9;
}

/* ==========================================================================
   Booking Simulator Section
   ========================================================================== */
.simulator-section {
    padding: 120px 0;
    background-color: var(--light);
}

.simulator-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.simulator-info h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 800;
}

.simulator-info > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.steps-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-desc {
    font-size: 1rem;
    color: var(--text-dark);
    padding-top: 6px;
    font-weight: 600;
}

.simulator-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.simulator-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.col-6 {
    flex: 0 0 calc(50% - 10px);
}

.form-group label {
    display: block;
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 4px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #faf9f6;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    height: 50px;
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 50px;
    height: 100%;
    background-color: #eae5db;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: #dfd8cb;
}

.quantity-selector input {
    flex-grow: 1;
    border: none;
    height: 100%;
    background-color: white;
}

/* Calculations Display */
.calculation-summary {
    background-color: #f7f5ef;
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin: 30px 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.calc-row.discount {
    color: var(--primary-dark);
    font-weight: 600;
}

.calc-divider {
    height: 1px;
    background-color: var(--light-border);
    margin: 12px 0;
}

.calc-row.total {
    margin-bottom: 0;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
}

.calc-row.total span:last-child {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.secure-footer {
    text-align: center;
    margin-top: 16px;
}

.secure-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.secure-footer i {
    color: var(--primary);
    margin-right: 4px;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.2) 60%, rgba(18, 18, 18, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: opacity var(--transition-normal);
}

.overlay-text {
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    color: white;
}

.overlay-text h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.overlay-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

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

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: #f3f0e7;
}

.slider-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--light-surface);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    font-size: 2.2rem;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 650px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.stars .font-half {
    position: relative;
    display: inline-block;
}

.testimonial-user h4 {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.slider-btn {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

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

.dot {
    width: 10px;
    height: 10px;
    background-color: #d1cbc0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 700;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-footer-cta {
    margin-top: 60px;
}

.faq-footer-cta p {
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--dark);
}

/* ==========================================================================
   Security Badges & Trust Area
   ========================================================================== */
.security-badges {
    padding: 60px 0;
    background-color: #faf7f0;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-item i {
    font-size: 2.2rem;
    color: var(--primary);
}

.badge-item h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.badge-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-slogan {
    color: rgba(255, 255, 255, 0.5);
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

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

.footer-links h3, .footer-contact h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 30px 0;
    background-color: #0b0b0b;
    font-size: 0.8rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom i.accent {
    color: #e24b4b;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1), opacity 0.8s ease;
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="bottom"] {
    transform: translateY(40px);
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Laptop / Small Desktop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    .experience-grid, .packages-grid {
        gap: 20px;
    }
}

/* Tablet (Portrait & Landscape) */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero */
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-floating-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Experience */
    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Banner CTA */
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 50px auto 0;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    /* Simulator */
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 20px;
    }
    
    .gallery-item:last-child {
        grid-column: span 2;
        height: 250px;
    }
    
    /* Badges */
    .badges-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile & Hamburger Menu Menu Logic */
@media (max-width: 767px) {
    /* Header & Mobile Nav */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-surface);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 32px;
        transition: left var(--transition-normal);
        border-top: 1px solid var(--light-border);
    }
    
    .main-header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-btn {
        width: 80%;
        padding: 14px 0;
    }
    
    .main-header.open-menu .mobile-menu-toggle .open-icon {
        display: none;
    }
    
    .main-header.open-menu .mobile-menu-toggle .close-icon {
        display: block;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Experience */
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        padding: 30px;
    }
    
    /* Simulator */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .col-6 {
        flex: 0 0 100%;
    }
    
    .simulator-card {
        padding: 30px 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:last-child {
        grid-column: span 1;
    }
    
    /* Testimonials */
    .testimonial-slide {
        padding: 30px 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-slider {
        height: 380px;
    }
    
    /* Footer bottom */
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Checkout Wizard & E-commerce Styles (Version 2)
   ========================================================================== */
.checkout-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-stepper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--light-border);
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #dfd8cb;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
    transition: var(--transition-fast);
}

.step-indicator.active .step-dot {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.step-indicator.completed .step-dot {
    background-color: var(--whatsapp);
    color: white;
}

.step-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-headers);
}

.step-indicator.active .step-label {
    color: var(--dark);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease;
}

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

.passenger-card {
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    background-color: #faf9f6;
}

.passenger-card h4 {
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-headers);
    font-weight: 700;
}

.payment-methods-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-tab {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    background: #faf9f6;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.payment-tab:hover {
    background-color: #eae5db;
}

.payment-tab.active {
    background: white;
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
    animation: panelFadeIn 0.3s ease;
}

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

.pix-details {
    text-align: center;
    padding: 10px 0;
}

.pix-qr-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    border: 1px solid var(--light-border);
    padding: 8px;
    background: white;
    border-radius: var(--border-radius-sm);
}

.pix-qr-container img {
    width: 100%;
    height: 100%;
}

.pix-copypaste-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.pix-code-input {
    flex-grow: 1;
    background: #f1ede4;
    border: 1px solid var(--light-border);
    padding: 0 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    height: 40px;
    outline: none;
}

.btn-copy {
    padding: 0 16px;
    height: 40px;
    font-size: 0.85rem;
}

.ticket-card {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    text-align: left;
}

.ticket-header {
    background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 3px double var(--primary);
}

.ticket-header h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ticket-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.ticket-body {
    padding: 24px;
    background-image: radial-gradient(#faf7f0 30%, transparent 30%);
    background-size: 4px 4px;
    background-color: #fdfbf7;
}

.ticket-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.route-point h5 {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 800;
}

.route-point span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.route-connector {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.route-connector i {
    color: var(--primary);
    font-size: 1.2rem;
    background: #fdfbf7;
    padding: 0 10px;
    z-index: 2;
}

.route-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 1px;
    border-top: 2px dashed var(--primary);
    z-index: 1;
}

.ticket-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    border-top: 1px dashed var(--light-border);
    border-bottom: 1px dashed var(--light-border);
    padding: 16px 0;
}

.meta-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

.meta-item strong {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 700;
}

.ticket-passengers {
    margin-bottom: 20px;
}

.ticket-passengers span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.ticket-passengers ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticket-passengers li {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    background: #faf9f6;
    padding: 6px 12px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.ticket-footer {
    border-top: 2px dashed var(--primary);
    padding: 20px;
    text-align: center;
    background: #fdfbf7;
}

.ticket-barcode {
    max-width: 220px;
    margin: 0 auto 10px;
    height: 45px;
    background-image: repeating-linear-gradient(90deg, #111 0px, #111 2px, transparent 2px, transparent 5px, #111 5px, #111 6px, transparent 6px, transparent 10px);
}

.ticket-barcode-num {
    font-family: monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.ticket-card::after, .ticket-card::before {
    content: '';
    position: absolute;
    bottom: 95px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--light);
    z-index: 10;
}

.ticket-card::before { left: -10px; border-right: 2px solid var(--primary); }
.ticket-card::after { right: -10px; border-left: 2px solid var(--primary); }

.checkout-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(197, 160, 89, 0.1);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: checkoutSpin 1s linear infinite;
    margin-bottom: 20px;
}

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

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-floating:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
    color: white;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--dark-surface);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-headers);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-surface);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   Premium Design Enhancements
   ========================================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

.btn-primary, .btn-secondary {
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    animation: pulseSecondary 2.5s infinite;
}

@keyframes pulseSecondary {
    0% { transform: scale(1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2); }
}

.logo-text .accent, .section-subtitle, .price-val, .calc-row.total span:last-child {
    background: linear-gradient(135deg, #e5c27d 0%, #c5a059 50%, #9e7b39 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline-block;
}

.experience-card, .package-card, .simulator-card, .hero-floating-card {
    border: 1px solid rgba(197, 160, 89, 0.15) !important;
    backdrop-filter: blur(10px);
}

.package-card.popular {
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-gold) !important;
}

.card-icon-container {
    background-color: rgba(197, 160, 89, 0.08);
}

/* ==========================================================================
   Campo das Vertentes Guide Section
   ========================================================================== */
.guide-section {
    padding: 100px 0;
    background-color: #faf9f6;
}

.vertentes-tabs-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vertentes-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
}

.vertentes-tab-btn {
    background: none;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vertentes-tab-btn:hover {
    background-color: rgba(197, 160, 89, 0.05);
    color: var(--primary);
}

.vertentes-tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.vertentes-tab-btn i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.vertentes-tab-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.city-panel {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.city-panel.active {
    display: block;
}

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

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--light-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.city-header h3 {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 800;
}

.city-distance {
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-headers);
}

.city-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.city-info h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.city-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.attractions-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.attractions-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.attractions-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.city-image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.city-image-container img {
    width: 100%;
    height: 250px;
    flex-grow: 1;
    object-fit: cover;
    display: block;
}

.city-curiosity {
    position: relative;
    background: rgba(20, 52, 5, 0.95);
    color: white;
    padding: 20px;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: justify;
    margin-top: auto;
    flex-shrink: 0;
}

.city-curiosity strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 991px) {
    .vertentes-tabs-container {
        grid-template-columns: 1fr;
    }
    .vertentes-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
        white-space: nowrap;
    }
    .vertentes-tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .vertentes-tab-btn i {
        display: none;
    }
    .city-grid {
        grid-template-columns: 1fr;
    }
    .city-image-container {
        min-height: 200px;
    }
}

/* ==========================================================================
   Wineries Section
   ========================================================================== */
.wineries-section {
    padding: 100px 0;
    background-color: white;
}

.wineries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.winery-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.winery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.winery-img {
    height: 200px;
    position: relative;
}

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

.winery-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(20, 52, 5, 0.9);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-headers);
}

.winery-body {
    padding: 25px;
}

.winery-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.winery-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.winery-details {
    font-size: 0.85rem;
    color: var(--text-dark);
    border-top: 1px solid var(--light-border);
    padding-top: 12px;
}

@media (max-width: 991px) {
    .wineries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Events & Calendar Section
   ========================================================================== */
.events-section {
    padding: 100px 0;
    background-color: #f3f0e7;
}

.events-container {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 20px;
}

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

.event-date-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.event-date-badge .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-headers);
    line-height: 1;
}

.event-date-badge .year {
    font-size: 0.65rem;
    opacity: 0.8;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 800;
}

.event-info .event-meta {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 575px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .event-date-badge {
        width: 100%;
        height: 60px;
        flex-direction: row;
        gap: 10px;
    }
    .event-date-badge .day {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Itineraries Timeline Section
   ========================================================================== */
.itineraries-section {
    padding: 100px 0;
    background-color: white;
}

.itineraries-tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.itinerary-btn {
    border: 1px solid var(--light-border);
    background-color: var(--light-surface);
    color: var(--text-dark);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-headers);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.itinerary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.itinerary-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.itinerary-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.itinerary-panel {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.itinerary-panel.active {
    display: block;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background-color: var(--light-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

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

.timeline-badge {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.itinerary-panel.active .timeline-item:nth-child(even) .timeline-badge {
    border-color: var(--secondary);
    color: var(--secondary);
}

.timeline-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.timeline-card h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.timeline-card .subtitle {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Balonismo & Receptivo Callout Cards
   ========================================================================== */
.promo-callout {
    background: linear-gradient(135deg, rgba(20, 52, 5, 0.95) 0%, rgba(10, 30, 2, 0.98) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: var(--shadow-lg);
}

.promo-callout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.promo-callout-info h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
}

.promo-callout-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.promo-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
}

.promo-feature-item i {
    color: var(--secondary);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .promo-callout-grid {
        grid-template-columns: 1fr;
    }
}



