:root {
    --bg: #DED6CC;
    --bg2: #D7C6B3;
    --sky: #7C5136;
    --sky-light: #A97F60;
    --gold: #A97F60;
    --gold-light: #C8A88D;
    --coral: #7C5136;
    --emerald: #A97F60;
    --white: #FFF8EE;
    --ink: #4A2F1C;
    --ink-deep: #2E1B0E;
    --text: rgba(60, 40, 25, 0.9);
    --text-dim: rgba(60, 40, 25, 0.6);
    --card: rgba(124, 81, 54, 0.04);
    --card-border: rgba(124, 81, 54, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(200, 168, 141, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(169, 127, 96, 0.3) 0%, transparent 60%),
        var(--bg);
    color: var(--text);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.2;
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169, 127, 96,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: left 0.15s ease, top 0.15s ease;
    transform: translate(-50%, -50%);
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(124, 81, 54,0.4);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 40%; animation-delay: 0.5s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 30%; top: 60%; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; top: 30%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; top: 70%; animation-delay: 2s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 60%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; top: 80%; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-delay: 1.8s; width: 3px; height: 3px; }
.particle:nth-child(9) { left: 90%; top: 65%; animation-delay: 1.2s; }
.particle:nth-child(10) { left: 15%; top: 85%; animation-delay: 0.3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(222, 214, 204,0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
}

.logo-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-accent {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(169, 127, 96,0.4);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(124, 81, 54,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.hero-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--sky);
    top: -10%;
    right: -5%;
}

.hero-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: 10%;
    left: -8%;
}

.hero-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    background: var(--coral);
    top: 40%;
    right: 20%;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-content {
    animation: fadeUp 0.8s ease-out;
}

.hero-flags {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(169, 127, 96,0.05);
    border: 1px solid rgba(169, 127, 96,0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold-light);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.hero-badge svg {
    color: var(--gold);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.3s backwards;
}

.hero-title-main {
    display: block;
    color: var(--ink-deep);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 100%;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-subtitle {
        max-width: 540px;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.5s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(169, 127, 96,0.4);
    background: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--card-border);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.6s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.hero-map {
    animation: mapIn 1s ease-out 0.3s backwards;
}

.hero-map svg {
    width: 100%;
    height: auto;
}

.honduras-highlight {
    animation: hondurasPulse 3s ease-in-out infinite;
}

@keyframes hondurasPulse {
    0%, 100% { fill-opacity: 0.35; }
    50% { fill-opacity: 0.5; }
}

.marker-pulse {
    animation: pulse 2s ease-out infinite;
}

.miami-pulse {
    animation-delay: 0s;
}

.hn-pulse {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        r: 35;
        opacity: 0.6;
    }
    100% {
        r: 50;
        opacity: 0;
    }
}

.marker-ring {
    animation: ring 2s ease-out infinite;
}

@keyframes ring {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.flight-route {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawRoute 3s ease-in-out infinite;
}

@keyframes drawRoute {
    0% { stroke-dashoffset: 800; }
    100% { stroke-dashoffset: 0; }
}

/* Animaciones de rutas orbitales */
.orbital-route {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawOrbital 4s ease-in-out infinite;
}

.route-1 {
    animation-delay: 0s;
}

.route-2 {
    animation-delay: 2s;
}

@keyframes drawOrbital {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0.3;
    }
}

/* Animaciones de aviones */
.plane-animation text {
    filter: drop-shadow(0 0 8px rgba(124, 81, 54,0.6));
}

.plane-1 {
    animation: planeRotate1 10s linear infinite;
}

.plane-2 {
    animation: planeRotate2 10s linear infinite;
    animation-delay: 5s;
}

.plane-3 {
    animation: planeRotate3 15s linear infinite;
    animation-delay: 2.5s;
}

@keyframes planeRotate1 {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    50% { transform: rotate(-40deg); }
    75% { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

@keyframes planeRotate2 {
    0% { transform: rotate(180deg); }
    25% { transform: rotate(160deg); }
    50% { transform: rotate(140deg); }
    75% { transform: rotate(160deg); }
    100% { transform: rotate(180deg); }
}

@keyframes planeRotate3 {
    0% { transform: rotate(90deg) scale(0.8); }
    50% { transform: rotate(-90deg) scale(0.8); }
    100% { transform: rotate(-270deg) scale(0.8); }
}

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

@keyframes mapIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateX(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.65rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 100%;
    margin-bottom: 4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .section-subtitle {
        max-width: 680px;
    }
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.route-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--sky) 100%);
    opacity: 0.2;
}

.route-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.route-card:hover .route-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(169, 127, 96,0.5);
}

.route-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.route-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(169, 127, 96,0.1) 0%, rgba(124, 81, 54,0.05) 100%);
    border: 1.5px solid rgba(169, 127, 96,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.route-icon svg {
    color: var(--gold);
}

.route-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(169, 127, 96,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--sky) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 81, 54,0.05) 0%, rgba(124, 81, 54,0.02) 100%);
    border: 1.5px solid var(--icon-color, var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--icon-color);
}

.service-icon svg {
    color: var(--icon-color);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    font-size: 0.98rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 81, 54,0.03);
    border: 1px solid rgba(124, 81, 54,0.08);
    border-radius: 100px;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 500;
}

.service-tag svg {
    color: var(--emerald);
}

.calculator-section {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 81, 54,0.02) 100%);
}

.calculator-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.calculator-input-group {
    margin-bottom: 2rem;
}

.calculator-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.calculator-input-row {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 1rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.calculator-input {
    padding: 1.2rem 1.5rem;
    background: rgba(255, 248, 238, 0.85);
    border: 2px solid rgba(124, 81, 54,0.3);
    border-radius: 12px;
    color: var(--ink-deep);
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.calculator-input:focus {
    border-color: var(--sky);
    background: rgba(124, 81, 54,0.08);
    box-shadow: 0 0 0 4px rgba(124, 81, 54,0.1);
}

.calculator-input::placeholder {
    color: var(--text-dim);
}

.calculator-btn {
    width: 56px;
    height: 56px;
    background: var(--sky);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.calculator-btn:hover {
    background: var(--sky-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 81, 54,0.4);
}

.calculator-btn:active {
    transform: translateY(-1px);
}

.calculator-btn svg {
    color: var(--white);
}

.calculator-result {
    padding: 1.2rem 1.5rem;
    background: rgba(255, 248, 238, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink-deep);
    text-align: right;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.calculator-breakdown {
    background: rgba(169, 127, 96,0.12);
    border: 1px solid rgba(169, 127, 96,0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    animation: slideDown 0.4s ease-out;
    width: 100%;
    box-sizing: border-box;
}

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

.calculator-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator-close:hover {
    background: rgba(239, 68, 68, 0.25);
    transform: rotate(90deg);
}

.calculator-close svg {
    color: rgba(239, 68, 68, 0.9);
}

.breakdown-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(169, 127, 96,0.2);
    width: 100%;
    box-sizing: border-box;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-label {
    font-size: 0.85rem;
    color: rgba(169, 127, 96,0.8);
    font-weight: 600;
}

.breakdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.breakdown-totals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.breakdown-total {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-total-label {
    font-size: 0.9rem;
    color: rgba(169, 127, 96,0.9);
    font-weight: 600;
}

.breakdown-total-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.calculator-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(124, 81, 54,0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.calculator-info p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin: 0.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.calculator-info strong {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.calculator-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    color: rgba(239, 68, 68, 0.9);
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

.cta-section {
    text-align: center;
    padding: 8rem 0;
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(169, 127, 96,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-button-wrapper {
    margin: 3rem 0;
}

.contact-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    background: rgba(124, 81, 54,0.02);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-pill:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    background: rgba(169, 127, 96,0.05);
}

.contact-pill svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--card-border);
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    box-sizing: border-box;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-block-right {
    align-items: flex-end;
    text-align: right;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-businesses {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-owner {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}

.footer-owner strong {
    color: var(--coral);
    font-weight: 700;
}

.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink);
    font-weight: 500;
}

.footer-location svg {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text);
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(169, 127, 96,0.1);
}

.footer-social a:hover svg {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets & iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-map {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .route-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .route-line {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }
}

/* Móviles grandes - Samsung Galaxy, iPhone Pro Max (481px - 768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-container {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-flags {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-map {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-trust {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.82rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .route-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .route-card {
        padding: 1.8rem 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .calculator-wrapper {
        padding: 0;
        width: 100%;
    }

    .calculator-input-group {
        width: 100%;
    }

    .calculator-input-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .calculator-input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .calculator-btn {
        width: 100%;
        height: 50px;
    }

    .calculator-result {
        text-align: center;
        font-size: 1.6rem;
    }

    .breakdown-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .breakdown-totals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-pills {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .contact-pill {
        padding: 0.9rem 1.5rem;
        justify-content: center;
    }
}

/* iPhone, Samsung Galaxy S - Móviles pequeños (320px - 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-flags {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 0.9rem;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge svg {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .hero-map {
        padding: 0;
    }

    .hero-map svg {
        max-height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    .section-tag {
        font-size: 0.6rem;
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }

    .section-tag svg {
        width: 14px;
        height: 14px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .route-card {
        padding: 1.5rem 1.2rem;
    }

    .route-label {
        font-size: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .route-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.2rem;
    }

    .route-icon svg {
        width: 24px;
        height: 24px;
    }

    .route-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .route-card p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.8rem 1.3rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.2rem;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.92rem;
        margin-bottom: 1.2rem;
    }

    .service-tag {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .calculator-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .calculator-input {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
    }

    .calculator-result {
        padding: 1rem;
        font-size: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .calculator-breakdown {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .breakdown-label {
        font-size: 0.8rem;
    }

    .breakdown-value {
        font-size: 1rem;
    }

    .breakdown-total-label {
        font-size: 0.85rem;
    }

    .breakdown-total-value {
        font-size: 1.2rem;
    }

    .calculator-info {
        padding: 1.2rem;
    }

    .calculator-info p {
        font-size: 0.88rem;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .btn-large {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .contact-pill {
        font-size: 0.85rem;
        padding: 0.85rem 1.3rem;
    }

    .contact-pill svg {
        width: 16px;
        height: 16px;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .footer-container {
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .footer-block,
    .footer-block-right {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
    }

    .footer-copy {
        font-size: 0.78rem;
        text-align: center;
    }

    .footer-businesses {
        font-size: 0.85rem;
    }

    .footer-owner,
    .footer-location {
        font-size: 0.7rem;
    }
}

/* Extra pequeño - iPhone SE, Samsung Galaxy pequeños (hasta 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .calculator-result {
        font-size: 1.3rem;
    }
}

/* Asegurar que todo el contenido se ajuste al viewport */
@media (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .section-container,
    .hero-container,
    .nav-container,
    .footer-container,
    .calculator-wrapper,
    .calculator-input-group,
    .calculator-input-row,
    .calculator-breakdown,
    .calculator-info,
    .breakdown-row,
    .breakdown-totals {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* === Calculadora multi-línea === */
.hero-calc {
    min-height: auto;
    display: block;
    padding: 5rem 0 3rem;
}

.hero-container-calc {
    display: block;
    max-width: 760px;
    margin: 0 auto;
}

.hero-container-calc .hero-content {
    text-align: center;
}

.hero-container-calc .hero-flags {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.hero-container-calc .hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 0.6rem;
    margin-top: 0.4rem;
    line-height: 1.15;
}

.hero-container-calc .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.hero-route {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.85;
    animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.hero-route-code {
    color: var(--coral);
    font-weight: 600;
}

.hero-route-line {
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-route-plane {
    width: 16px;
    height: 16px;
    color: var(--gold);
    transform: translateY(-1px);
}

.hero-brands {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    color: var(--ink);
    margin: 0.4rem 0 0.6rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    animation: fadeUp 0.8s ease-out 0.15s backwards;
}

.hero-brand {
    color: var(--coral);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
}

.hero-brand-alt {
    background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-brand-sep {
    margin: 0 0.55rem;
    color: var(--gold);
    font-weight: 400;
    font-style: normal;
    opacity: 0.8;
}

.hero-owner {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin: -0.5rem 0 1.5rem;
    animation: fadeUp 0.8s ease-out 0.5s backwards;
}

.hero-owner strong {
    color: var(--coral);
    font-weight: 700;
}

.hero-container-calc .calculator-wrapper {
    text-align: left;
}

.calc-lines {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.calc-line {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    animation: slideDown 0.25s ease-out;
}

.calc-line-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
    min-width: 2.2rem;
    text-align: right;
}

.calc-line-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(124, 81, 54,0.05);
    border: 2px solid rgba(124, 81, 54,0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 0;
}

.calc-line-input-wrap:focus-within {
    border-color: var(--sky);
    background: rgba(124, 81, 54,0.08);
    box-shadow: 0 0 0 4px rgba(124, 81, 54,0.1);
}

.calc-line-prefix {
    padding: 0 0.75rem 0 1.25rem;
    color: var(--text-dim);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    pointer-events: none;
}

.calc-line-input {
    flex: 1;
    padding: 1rem 1.25rem 1rem 0;
    background: transparent;
    border: none;
    color: var(--ink-deep);
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    min-width: 0;
    width: 100%;
}

.calc-line-input::placeholder {
    color: var(--text-dim);
}

.calc-line-remove {
    width: 42px;
    height: 42px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(239, 68, 68, 0.85);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.calc-line-remove:hover {
    background: rgba(239, 68, 68, 0.22);
    color: rgba(239, 68, 68, 1);
    transform: rotate(90deg);
}

.calc-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.calc-add {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    background: rgba(169, 127, 96,0.12);
    border: 1px dashed rgba(169, 127, 96,0.5);
    border-radius: 12px;
    color: var(--emerald);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-add:hover {
    background: rgba(169, 127, 96,0.2);
    border-color: var(--emerald);
    transform: translateY(-2px);
}

.calc-submit {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.6rem;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 81, 54,0.3);
}

.calc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 81, 54,0.45);
}

.calc-submit:disabled {
    cursor: not-allowed;
    transform: none;
}

.calc-total {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(169, 127, 96,0.15) 0%, rgba(124, 81, 54,0.1) 100%);
    border: 1px solid rgba(169, 127, 96,0.4);
    border-radius: 16px;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: slideDown 0.35s ease-out;
}

.calc-total-label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.calc-total-value {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--ink-deep);
    line-height: 1.1;
    letter-spacing: -1px;
    word-break: break-word;
}

.calc-total-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    margin-bottom: 1rem;
}

.calc-toggle {
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    color: var(--text);
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-toggle:hover {
    background: rgba(124, 81, 54,0.05);
    border-color: rgba(124, 81, 54,0.2);
}

.calc-breakdown {
    background: rgba(169, 127, 96,0.1);
    border: 1px solid rgba(169, 127, 96,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    animation: slideDown 0.3s ease-out;
    position: relative;
}

.calc-breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-breakdown-header .calculator-close {
    position: static;
}

.calc-breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(169, 127, 96,0.2);
}

.calc-breakdown-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0.6rem 0.9rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    align-items: center;
}

.calc-breakdown-item-num {
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.calc-breakdown-item-precio {
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.calc-breakdown-item-total {
    color: var(--ink-deep);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.calc-breakdown-totals {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.breakdown-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text);
    gap: 1rem;
}

.breakdown-row-total span:last-child {
    font-weight: 600;
    color: var(--ink-deep);
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
}

.breakdown-row-total.total-usd,
.breakdown-row-total.total-lps {
    padding-top: 0.6rem;
    margin-top: 0.3rem;
    border-top: 1px solid rgba(169, 127, 96,0.2);
    font-size: 1.05rem;
}

.breakdown-row-total.total-lps span:last-child {
    color: var(--gold);
    font-size: 1.15rem;
}

.calculator-label {
    display: block;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.calc-input-bar {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid rgba(124, 81, 54, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(76, 51, 35, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1rem;
}

.calc-input-bar:focus-within {
    border-color: var(--coral);
    box-shadow: 0 8px 26px rgba(124, 81, 54, 0.16);
}

.calc-input-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.85rem 0 1.1rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
}

.calc-input-field {
    flex: 1;
    min-width: 0;
    padding: 1rem 0.75rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--ink-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
}

.calc-input-field::placeholder {
    color: rgba(74, 47, 28, 0.32);
    font-weight: 400;
}

.calc-input-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1.3rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
    border: none;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: filter 0.2s ease;
    flex-shrink: 0;
}

.calc-input-btn:hover {
    filter: brightness(1.08);
}

.calc-input-btn:active {
    filter: brightness(0.95);
}

.calc-running-banner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.25rem;
    background: linear-gradient(135deg, rgba(169, 127, 96, 0.16) 0%, rgba(124, 81, 54, 0.08) 100%);
    border: 1px solid rgba(124, 81, 54, 0.18);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.calc-running-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    font-weight: 500;
}

.calc-running-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    min-width: 0;
}

.calc-running-value {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    color: var(--ink-deep);
    letter-spacing: -0.02em;
    line-height: 1;
    word-break: break-all;
    text-align: right;
}

.calc-running-usd {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
    text-align: right;
    line-height: 1;
}

.calc-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
    width: 100%;
}

.calc-item-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: rgba(124, 81, 54, 0.04);
    border: 1px solid rgba(124, 81, 54, 0.14);
    border-radius: 12px;
    animation: slideDown 0.25s ease-out;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.calc-item-card:hover {
    background: rgba(124, 81, 54, 0.07);
    border-color: rgba(124, 81, 54, 0.22);
}

.calc-item-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 1.6rem;
}

.calc-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.calc-item-precio {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-deep);
}

.calc-item-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

.calc-item-total {
    font-weight: 700;
    color: var(--ink-deep);
}

.calc-item-lps {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--coral);
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
}

.calc-item-remove {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(124, 81, 54, 0.18);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.18s ease;
    flex-shrink: 0;
    padding: 0;
}

.calc-item-remove:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.4);
    color: rgba(239, 68, 68, 0.95);
}

.calc-empty {
    text-align: center;
    padding: 1rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
    border: 1px dashed rgba(124, 81, 54, 0.18);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.calc-empty p {
    margin: 0;
}

@media (max-width: 640px) {
    .hero-calc {
        padding: 4.5rem 0 2rem;
    }

    .hero-route {
        font-size: 0.7rem;
        gap: 0.5rem;
        letter-spacing: 0.18em;
    }

    .hero-route-line {
        width: 18px;
    }

    .hero-route-plane {
        width: 14px;
        height: 14px;
    }

    .calc-input-prefix {
        padding: 0 0.5rem 0 0.85rem;
        font-size: 0.82rem;
    }

    .calc-input-field {
        padding: 0.85rem 0.5rem;
        font-size: 1.05rem;
    }

    .calc-input-btn {
        padding: 0 1rem;
        font-size: 0.82rem;
    }

    .calc-input-btn span {
        display: none;
    }

    .calc-running-banner {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }

    .calc-running-label {
        font-size: 0.62rem;
    }

    .calc-running-usd {
        font-size: 0.88rem;
    }

    .calc-item-card {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "num info remove"
            "num lps remove";
        gap: 0.2rem 0.6rem;
        padding: 0.6rem 0.7rem;
    }

    .calc-item-num {
        grid-area: num;
        align-self: center;
        min-width: 1.4rem;
        font-size: 0.72rem;
    }

    .calc-item-info {
        grid-area: info;
    }

    .calc-item-precio {
        font-size: 0.88rem;
    }

    .calc-item-meta {
        font-size: 0.65rem;
    }

    .calc-item-lps {
        grid-area: lps;
        font-size: 0.95rem;
        text-align: left;
    }

    .calc-item-remove {
        grid-area: remove;
        align-self: center;
    }
}

