:root{--primary: #12b886;--secondary: #1f3d2b;--accent: #cffaea;--dark: #0b0f0e;--bg: #f3f4f6;--white: #ffffff;--border: #e2e8f0;--text: #0b0f0e;--text-light: #64748b;--danger: #dc2626;--shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1)}body{margin:0;font-family:Quicksand;background-color:var(--bg);color:var(--text);line-height:1.4;font-size:14px}.container{max-width:98vw;margin:.5rem auto;padding:0 1rem}.nav-container{max-width:98vw;margin:0 auto;padding:0 1rem;display:flex;justify-content:space-between;align-items:center}header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.25rem}h1{font-size:1.8rem;font-weight:700;margin:0;background:linear-gradient(135deg,var(--secondary),var(--primary));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}header p{margin:.2rem 0 0;color:var(--text-light);font-size:.9rem}.btn-primary{background:var(--primary);color:#fff;border:none;padding:.5rem 1.25rem;border-radius:10px;font-weight:600;cursor:pointer;transition:all .2s;box-shadow:0 4px 12px #12b88633;font-size:.85rem}.btn-primary:hover{background:var(--secondary);transform:translateY(-2px)}.btn-secondary{background:#f1f3f5;color:#495057;border:1px solid #dee2e6;padding:.5rem 1.25rem;border-radius:10px;font-weight:600;cursor:pointer;transition:all .2s;font-size:.85rem}.btn-secondary:hover{background:#e9ecef;border-color:#ced4da}.btn-submit{background:var(--dark);color:#fff;border:none;padding:.8rem 2rem;border-radius:10px;font-weight:600;cursor:pointer;width:100%;transition:background .2s}.btn-submit:hover{background:var(--secondary)}.btn-icon{background:none;border:none;cursor:pointer;padding:.4rem;border-radius:8px;transition:background .2s;font-size:1rem}.btn-icon:hover{background:var(--bg)}.form-card{background:var(--white);padding:1.25rem;border-radius:16px;box-shadow:var(--shadow);margin-bottom:1.25rem;border:1px solid var(--border)}.form-card h2{margin:0 0 1.5rem;font-size:1.25rem}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-bottom:1rem}.form-group{display:flex;flex-direction:column;gap:.5rem}label{font-size:.9rem;font-weight:600;color:var(--text-light)}input,select,textarea{padding:.5rem .75rem;border:1px solid var(--border);border-radius:8px;font-size:.9rem;font-family:Quicksand;transition:all .2s}input:focus,select:focus,textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px var(--accent)}textarea{min-height:100px;resize:vertical}.checkbox-group{display:flex;align-items:center;justify-content:center}.checkbox-container{display:flex;align-items:center;gap:.75rem;cursor:pointer;-webkit-user-select:none;user-select:none;font-weight:600}.table-container{background:var(--white);border-radius:20px;box-shadow:var(--shadow);border:1px solid var(--border);overflow-x:auto;-webkit-overflow-scrolling:touch}table{width:100%;border-collapse:collapse;text-align:left;min-width:600px}th{background:#f8fafc;padding:.75rem 1rem;font-weight:600;color:var(--text-light);font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;white-space:nowrap}td{padding:.75rem 1rem;border-bottom:1px solid var(--border)}tr:last-child td{border-bottom:none}tr:hover{background-color:var(--bg)}.badge{padding:.25rem .75rem;border-radius:20px;font-size:.8rem;font-weight:600;white-space:nowrap}.badge.id{background:var(--bg);color:var(--text-light)}.status.Borrador{background:#fee2e2;color:var(--danger)}.status.Activo{background:var(--accent);color:var(--secondary)}.status.Cerrado{background:var(--border);color:var(--text-light)}.status.Inactivo{background:#fee2e2;color:var(--danger)}.user-info{display:flex;align-items:center;gap:1rem;min-width:150px}.avatar{flex-shrink:0;width:32px;height:32px;background:var(--accent);color:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}.role-text{font-weight:600;color:var(--secondary)}.loader-container{display:flex;flex-direction:column;align-items:center;padding:4rem;color:var(--text-light)}.loader{width:40px;height:40px;border:3px solid var(--border);border-top-color:var(--primary);border-radius:50%;animation:spin 1s linear infinite;margin-bottom:1rem}@keyframes spin{to{transform:rotate(360deg)}}.main-nav{background:var(--white);border-bottom:1px solid var(--border);padding:1rem 0;position:sticky;top:0;z-index:100;box-shadow:0 2px 10px #00000005}.logo{font-size:1.5rem;font-weight:700;text-decoration:none;color:var(--secondary);letter-spacing:-.02em}.logo span{color:var(--primary)}.nav-links{display:flex;gap:1.5rem}.nav-links a{text-decoration:none;color:var(--text-light);font-weight:600;transition:all .2s;font-size:.9rem}.nav-links a:hover{color:var(--primary)}.nav-links a.active{color:var(--secondary);position:relative}.nav-links a.active:after{content:"";position:absolute;bottom:-4px;left:0;width:100%;height:2px;background:var(--primary);border-radius:2px}.block{display:block}.hidden{display:none}.flex{display:flex}.flex-col{display:flex;flex-direction:column}.flex-wrap{flex-wrap:wrap}.grow{flex-grow:1}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.items-start{align-items:flex-start}.items-center{align-items:center}.items-end{align-items:flex-end}.items-stretch{align-items:stretch}.flex-center{display:flex;align-items:center;justify-content:center}.flex-between{display:flex;align-items:center;justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-12{gap:3rem}.m-0{margin:0}.m-auto{margin:auto}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:.75rem}.mb-6{margin-bottom:1rem}.mb-8{margin-bottom:1.25rem}.ms-1{margin-left:.25rem}.ms-2{margin-left:.5rem}.ms-4{margin-left:1rem}.me-1{margin-right:.25rem}.me-2{margin-right:.5rem}.me-4{margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.p-0{padding:0}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-4{padding-left:1rem;padding-right:1rem}.py-4{padding-top:1rem;padding-bottom:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-bold{font-weight:700}.text-semibold{font-weight:600}.text-regular{font-weight:400}.text-light-weight{font-weight:300}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-primary{color:var(--primary)}.text-secondary{color:var(--secondary)}.text-light{color:var(--text-light)}.text-white{color:var(--white)}.text-error{color:#dc2626}.text-success{color:#166534}.w-full{width:100%}.w-auto{width:auto}.h-full{height:100%}.h-screen{height:100vh}.alert{padding:1rem 1.25rem;border-radius:12px;margin-bottom:1.5rem;display:flex;align-items:center;gap:.75rem;font-weight:500;border:1px solid transparent}.alert-success{background:var(--accent);color:var(--secondary);border-color:var(--primary)}.alert-error{background:#fee2e2;color:var(--danger);border-color:#fca5a5}.alert-info{background:#e0f2fe;color:#0369a1;border-color:#7dd3fc}.empty-state{padding:4rem 2rem;text-align:center;background:var(--white);border-radius:20px;border:2px dashed var(--border);display:flex;flex-direction:column;align-items:center;gap:1rem}.empty-state-icon{font-size:3rem;opacity:.5}.search-bar{position:relative;width:100%;max-width:400px;margin-bottom:1rem}.search-bar input{width:100%;padding-left:2.75rem;background:var(--white)}.search-bar:before{content:"";position:absolute;left:1rem;top:50%;transform:translateY(-50%);width:16px;height:16px;background-color:var(--text-light);mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.3-4.3'%3E%3C/path%3E%3C/svg%3E") no-repeat center;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.3-4.3'%3E%3C/path%3E%3C/svg%3E") no-repeat center;mask-size:contain;-webkit-mask-size:contain;pointer-events:none;opacity:.5}.skeleton{background:linear-gradient(90deg,#f1f5f9 25%,#e2e8f0,#f1f5f9 75%);background-size:200% 100%;animation:skeleton-loading 1.5s infinite;border-radius:8px}@keyframes skeleton-loading{0%{background-position:200% 0}to{background-position:-200% 0}}.tooltip{position:relative;cursor:help}.tooltip:hover:after{content:attr(data-tip);position:absolute;bottom:100%;left:50%;transform:translate(-50%);background:var(--dark);color:#fff;padding:.4rem .8rem;border-radius:6px;font-size:.75rem;white-space:nowrap;z-index:1000;margin-bottom:5px}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;margin-bottom:2rem}.stat-card{background:var(--white);padding:1rem;border-radius:16px;box-shadow:var(--shadow);border:1px solid var(--border);display:flex;align-items:center;gap:1rem;transition:all .3s cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden}.stat-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px -5px #0000001a;border-color:var(--primary)}.stat-icon{width:44px;height:44px;border-radius:12px;background:var(--accent);color:var(--primary);display:flex;align-items:center;justify-content:center;font-size:1.4rem;transition:transform .3s ease;flex-shrink:0}.stat-card:hover .stat-icon{transform:scale(1.1) rotate(5deg)}.stat-info{display:flex;flex-direction:column;gap:1px}.stat-info .label{color:var(--text-light);font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.02em}.stat-info .value{font-size:1.4rem;font-weight:800;color:var(--secondary);line-height:1}.stat-trend{font-size:.75rem;font-weight:700;padding:2px 8px;border-radius:10px;margin-top:4px;display:inline-flex;align-items:center;gap:4px}.stat-trend.up{background:#dcfce7;color:#166534}.stat-trend.down{background:#fee2e2;color:#991b1b}*{box-sizing:border-box}::selection{background:var(--primary);color:#fff}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--bg)}::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px}::-webkit-scrollbar-thumb:hover{background:var(--text-light)}.timeline{position:relative;padding-left:2rem;margin:2rem 0}.timeline:before{content:"";position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--border)}.timeline-item{position:relative;margin-bottom:2rem}.timeline-item:after{content:"";position:absolute;left:calc(-2rem - 5px);top:5px;width:12px;height:12px;border-radius:50%;background:var(--primary);border:3px solid var(--white);box-shadow:0 0 0 3px var(--accent)}.timeline-item h4{margin:0 0 .5rem;color:var(--secondary)}.timeline-item p{margin:0;font-size:.9rem;color:var(--text-light)}.flight-card{background:var(--bg);border-radius:12px;padding:1.25rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin-bottom:1rem;border:1px solid var(--border)}.flight-point{text-align:center}.flight-point .time{font-size:1.25rem;font-weight:700;color:var(--secondary)}.flight-point .code{font-size:.85rem;font-weight:600;color:var(--text-light)}.flight-path{flex:1;position:relative;display:flex;flex-direction:column;align-items:center}.flight-path:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:20px;height:20px;background-color:var(--text-light);mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;mask-size:contain;-webkit-mask-size:contain;z-index:1;background-color:var(--primary)}.flight-path:before{content:"";position:absolute;top:50%;left:0;right:0;height:1px;border-top:2px dashed var(--border)}.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin:2rem 0}.pricing-card{background:var(--white);padding:2.5rem 2rem;border-radius:24px;border:1px solid var(--border);text-align:center;transition:transform .3s}.pricing-card:hover{transform:translateY(-10px)}.pricing-card.popular{border-color:var(--primary);box-shadow:0 20px 40px #12b8861a;position:relative}.pricing-card.popular:before{content:"RECOMENDADO";position:absolute;top:1rem;left:50%;transform:translate(-50%);background:var(--primary);color:#fff;padding:.25rem .75rem;border-radius:20px;font-size:.7rem;font-weight:700}.pricing-price{font-size:3rem;font-weight:800;color:var(--secondary);margin:1.5rem 0}.pricing-price span{font-size:1rem;color:var(--text-light);font-weight:400}.pricing-features{list-style:none;padding:0;margin:2rem 0;text-align:left}.pricing-features li{margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem;font-size:.95rem}.pricing-features li:before{content:"✓";color:var(--primary);font-weight:800}.styleguide-section{background:var(--white);padding:3rem;border-radius:24px;margin-bottom:3rem;box-shadow:var(--shadow)}.styleguide-section h2{margin-top:0;border-bottom:2px solid var(--bg);padding-bottom:1rem;margin-bottom:2rem;color:var(--secondary)}.code-preview{background:#1e1e1e;color:#d4d4d4;padding:1.5rem;border-radius:12px;font-family:Courier New,Courier,monospace;font-size:.9rem;overflow-x:auto;margin-top:1.5rem}.color-swatch{display:flex;flex-direction:column;gap:.5rem;text-align:center}.color-box{height:80px;border-radius:12px}.itinerary-hero{position:relative;height:60vh;min-height:400px;border-radius:24px;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;padding-bottom:4rem;margin-bottom:-2rem;z-index:1;background-size:cover;background-position:center}.itinerary-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.8),transparent)}.hero-content{position:relative;z-index:2;text-align:center;color:#fff;max-width:800px;padding:0 1rem}.hero-title{font-size:3.5rem;font-weight:800;margin:0 0 1rem;line-height:1.1}.hero-subtitle{font-size:1.25rem;font-weight:500;opacity:.9}.itinerary-header{position:sticky;top:1rem;z-index:90;background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid var(--border);border-radius:16px;padding:1rem 1.5rem;margin:0 auto 3rem;max-width:90%;box-shadow:0 10px 30px -10px #0000001a;display:flex;justify-content:space-between;align-items:center}.gallery-carousel{display:flex;gap:1rem;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:1rem;margin:2rem 0}.gallery-item{scroll-snap-align:start;flex:0 0 80%;max-width:400px;height:250px;border-radius:16px;overflow:hidden;position:relative}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.gallery-item:hover img{transform:scale(1.05)}.timeline-detailed{position:relative;padding-left:3rem;margin:3rem 0}.timeline-detailed:before{content:"";position:absolute;left:11px;top:20px;bottom:0;width:2px;background:var(--border)}.day-card{position:relative;background:var(--white);border:1px solid var(--border);border-radius:20px;padding:2rem;margin-bottom:3rem;box-shadow:var(--shadow)}.day-card:after{content:"";position:absolute;left:calc(-3rem + 2px);top:2rem;width:20px;height:20px;border-radius:50%;background:var(--primary);border:4px solid var(--white);box-shadow:0 0 0 4px var(--accent)}.day-header{display:flex;justify-content:space-between;align-items:baseline;border-bottom:1px solid var(--bg)}.day-number{font-size:.9rem;font-weight:800;color:var(--primary);text-transform:uppercase;letter-spacing:.1em}.day-title{font-size:1.5rem;font-weight:700;color:var(--secondary);margin:0}.day-meta{display:flex;gap:1rem;font-size:.85rem;color:var(--text-light)}.service-card{display:flex;gap:1.5rem;background:var(--bg);border-radius:16px;padding:1.5rem;margin-bottom:1rem;border:1px solid transparent;transition:all .2s}.service-card:hover{background:var(--white);border-color:var(--primary);box-shadow:var(--shadow)}.service-img{width:120px;height:120px;border-radius:12px;object-fit:cover;flex-shrink:0}.service-details{flex:1}.service-type{font-size:.75rem;font-weight:700;text-transform:uppercase;color:var(--primary);margin-bottom:.25rem}.service-title{font-size:1.1rem;font-weight:700;color:var(--secondary);margin:0 0 .5rem}.amenities-grid{display:flex;gap:.75rem;margin-top:.75rem;flex-wrap:wrap}.amenity{font-size:.8rem;background:var(--white);padding:.25rem .5rem;border-radius:6px;border:1px solid var(--border)}.list-check{list-style:none;padding:0}.list-check li{position:relative;padding-left:1.75rem;margin-bottom:.5rem}.list-check li:before{content:"";position:absolute;left:0;top:4px;width:14px;height:14px;background-color:var(--primary);mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;mask-size:contain;-webkit-mask-size:contain}.logistics-bar{display:flex;gap:2rem;padding:1rem;background:var(--dark);color:#fff;border-radius:12px;margin-top:2rem;justify-content:center}.logistic-item{display:flex;flex-direction:column;align-items:center;gap:.25rem;font-size:.85rem}.logistic-icon{font-size:1.25rem}@media(max-width:768px){.itinerary-hero{height:50vh}.hero-title{font-size:2rem}.gallery-item{flex:0 0 90%}.timeline-detailed{padding-left:0;border-left:3px solid var(--border)}.timeline-detailed:before{display:none}.day-card:after{display:none}.day-card{border-left:none;border-radius:0 20px 20px 0;margin-left:1rem}.service-card{flex-direction:column}.service-img{width:100%;height:180px}}@media(max-width:1024px){.container,.nav-container{max-width:100vw;padding:0 1rem}h1{font-size:2.2rem}.grid{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}}@media(max-width:768px){.container,.nav-container{max-width:100vw}header{flex-direction:column;align-items:stretch;text-align:center;gap:1.25rem}.nav-container{flex-direction:column;gap:1rem}.nav-links{width:100%;justify-content:center}.search-bar{max-width:100%}.styleguide-section{padding:1.5rem}.flight-card{flex-direction:column;gap:1rem;text-align:center}}.filters-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem}.filter-item{display:flex;flex-direction:column}.filter-label{font-size:.75rem;font-weight:600;margin-bottom:.25rem}.btn-scrollTop.svelte-12qhfyh{position:fixed;bottom:2rem;right:2rem;width:50px;height:50px;border-radius:50%;background:var(--primary);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 15px #12b88666;z-index:1000;transition:all .3s cubic-bezier(.4,0,.2,1)}.btn-scrollTop.svelte-12qhfyh:hover{transform:translateY(-5px);box-shadow:0 6px 20px #12b88699;background:#0ca678}.btn-scrollTop.svelte-12qhfyh:active{transform:scale(.9)}
