/* ===============================================
   ROTAS DA RAY - Main Stylesheet
   =============================================== */

/* CSS Variables */
:root {
    --primary: #0a1a3a;
    --primary-light: #1e3a5f;
    --primary-dark: #051020;
    --secondary: #f97316;
    --secondary-light: #fb923c;
    --secondary-dark: #ea580c;
    --accent: #0ea5e9;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================================
   HEADER
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    line-height: 1.1;
}

.logo-text small {
    font-size: 11px;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--secondary);
}

.logo-text strong {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    padding: 8px;
}

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

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

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

.hero-content {
    color: var(--white);
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

/* ===============================================
   HERO PHONE SECTION - Dynamic Phone Mockup
   =============================================== */
.hero-phone-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 30px;
    right: 20px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    animation-delay: -1s;
}

.floating-card-3 {
    bottom: 80px;
    right: 0;
    animation-delay: -2s;
}

.floating-card-4 {
    bottom: 20px;
    left: 20px;
    animation-delay: -3s;
}

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

.floating-card-2 {
    animation: floatCard2 4s ease-in-out infinite;
    animation-delay: -1s;
}

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

.floating-card-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.floating-card-icon.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.floating-card-icon.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.floating-card-icon.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.floating-card-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.floating-card-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 5;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 15;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 30px;
    overflow: hidden;
    padding: 40px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* App Header */
.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.app-logo {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.app-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.8s ease 0.3s both;
}

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

.booking-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
}

.booking-header i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

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

.booking-destination {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.booking-destination img {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-place {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-800);
}

.booking-dates {
    font-size: 11px;
    color: var(--gray-500);
}

.booking-details {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px dashed var(--gray-200);
    border-bottom: 1px dashed var(--gray-200);
    margin-bottom: 12px;
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-600);
}

.booking-detail i {
    color: var(--secondary);
    font-size: 12px;
}

.booking-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-price .price-label {
    font-size: 11px;
    color: var(--gray-500);
}

.booking-price .price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

/* Progress Animation */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s ease 0.6s both;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.progress-step i {
    width: 28px;
    height: 28px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.progress-step.completed i {
    background: var(--success);
    color: var(--white);
}

.progress-step.active i {
    animation: bounceIn 0.5s ease;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

@keyframes bounceIn {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.progress-step span {
    font-size: 9px;
    color: var(--gray-500);
    font-weight: 500;
}

.progress-step.completed span {
    color: var(--success);
}

.progress-line {
    width: 20px;
    height: 2px;
    background: var(--gray-200);
    margin-bottom: 18px;
}

.progress-line.completed {
    background: var(--success);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===============================================
   SECTIONS
   =============================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-title.text-white {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.text-light {
    color: rgba(255, 255, 255, 0.7);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===============================================
   SEARCH SECTION
   =============================================== */
.search-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.search-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 16px;
    display: flex;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.search-form-page {
    margin-bottom: 40px;
}

.search-input-group {
    flex: 1;
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 18px;
}

.search-input-group input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: var(--transition);
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--secondary);
}

/* ===============================================
   PACKAGE CARDS
   =============================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.package-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 48px;
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 58, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.package-content {
    padding: 20px;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.package-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.package-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 14px;
}

.package-info i {
    color: var(--secondary);
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--gray-500);
}

.price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

/* ===============================================
   PROMO CARDS
   =============================================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.promo-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.promo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 48px;
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--error);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
}

.promo-content {
    padding: 20px;
}

.promo-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.promo-price {
    margin-bottom: 16px;
}

/* Promo Card Large */
.promo-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promo-card-large {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.promo-card-image {
    position: relative;
    min-height: 300px;
}

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

.promo-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 64px;
}

.promo-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--error);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.discount-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.discount-label {
    font-size: 12px;
    font-weight: 600;
}

.promo-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.promo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.promo-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
}

.promo-countdown {
    text-align: right;
}

.countdown-label {
    font-size: 12px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

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

.countdown-value {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    min-width: 45px;
}

.countdown-unit {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}

.countdown-expired {
    color: var(--error);
    font-weight: 600;
}

.promo-card-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex: 1;
}

.promo-package-info {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.package-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.package-mini i {
    color: var(--secondary);
}

.promo-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.promo-price-box {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 12px;
    color: var(--gray-500);
}

.price-old {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-final {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.promo-actions {
    display: flex;
    gap: 12px;
}

/* ===============================================
   DESTINATIONS CAROUSEL
   =============================================== */
.destinations-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.destinations-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.destinations-track::-webkit-scrollbar {
    display: none;
}

.destination-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.destination-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary);
    transition: var(--transition);
}

.destination-circle:hover {
    transform: scale(1.1);
    border-color: var(--white);
}

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

.destination-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 32px;
}

.destination-name {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

/* ===============================================
   DESTINATION GROUPS
   =============================================== */
.destination-group {
    margin-bottom: 50px;
}

.destination-group:last-child {
    margin-bottom: 0;
}

.destination-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.destination-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-800);
}

.destination-title i {
    color: var(--secondary);
}

.destination-count {
    color: var(--gray-500);
    font-size: 14px;
}

/* ===============================================
   CTA SECTION
   =============================================== */
.section-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================================
   NEWSLETTER SECTION
   =============================================== */
.section-newsletter {
    padding: 60px 0;
}

.newsletter-box {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.newsletter-icon {
    font-size: 48px;
    color: var(--secondary);
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.newsletter-text {
    color: var(--gray-500);
}

.newsletter-form-inline {
    display: flex;
    gap: 12px;
}

.newsletter-form-inline input {
    padding: 16px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 15px;
    width: 300px;
    transition: var(--transition);
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: var(--secondary);
}

/* ===============================================
   PAGE HEADER
   =============================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-promo {
    padding-bottom: 60px;
}

.page-header-content {
    position: relative;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.search-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--secondary);
}

/* ===============================================
   PACKAGE DETAIL
   =============================================== */
.page-header-package {
    padding-bottom: 40px;
}

.package-detail-section {
    padding-top: 40px;
}

.package-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.package-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.package-detail-image .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.package-placeholder-large {
    width: 100%;
    height: 500px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 80px;
}

.package-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-detail-info {
    position: sticky;
    top: 100px;
}

.package-detail-header {
    margin-bottom: 24px;
}

.package-location-large {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.package-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.package-highlights {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 500;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 20px;
}

.package-description,
.package-includes {
    margin-bottom: 24px;
}

.package-description h3,
.package-includes h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.package-description p {
    color: var(--gray-600);
    line-height: 1.7;
}

.includes-list {
    display: grid;
    gap: 10px;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.includes-list i {
    color: var(--success);
}

.package-price-box {
    background: var(--primary);
    padding: 30px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.price-info {
    margin-bottom: 24px;
}

.price-info .price-label {
    color: rgba(255, 255, 255, 0.7);
}

.price-old-large {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    display: block;
}

.price-value-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.price-per {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===============================================
   ABOUT PAGE
   =============================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    white-space: pre-line;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.feature-content p {
    color: var(--gray-500);
    font-size: 14px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    opacity: 0.9;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ===============================================
   EMPTY STATE
   =============================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

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

.logo-footer .logo-icon {
    background: var(--secondary);
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--secondary);
}

.footer-list i {
    font-size: 18px;
}

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

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

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

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

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

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

/* ===============================================
   WHATSAPP FLOATING BUTTON
   =============================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

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

/* ===============================================
   FLASH MESSAGES
   =============================================== */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.flash-success {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.flash-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.flash-close:hover {
    opacity: 1;
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 1280px) {
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .floating-card {
        padding: 10px 14px;
    }
    
    .floating-card-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .floating-card-value {
        font-size: 15px;
    }
    
    .floating-card-label {
        font-size: 10px;
    }
    
    .floating-card-2 {
        left: -10px;
    }
    
    .floating-card-3 {
        right: -10px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-phone-section {
        display: none;
    }
    
    .package-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-wrapper img {
        height: 400px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-card-large {
        grid-template-columns: 1fr;
    }
    
    .promo-card-image {
        min-height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .btn-whatsapp {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 100px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form-inline input {
        width: 100%;
    }
    
    .promo-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .promo-actions {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .package-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}

