.hero-pricing {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1658244546876-d82cbf1a1c9e?q=80&w=2000') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
                rgba(0,0,0,0.8) 0%, 
                rgba(0,0,0,0.4) 50%, 
                rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-script {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: -10px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 0.5px;
}

.pricing-pro-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.pricing-terminal {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid rgba(255, 215, 0, 0.1);
    min-height: 600px;
    box-shadow: 0 0 50px rgba(0,0,0,1);
}

.terminal-sidebar {
    flex: 1;
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#dynamic-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-top: 10px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.data-row { margin-bottom: 25px; }

.label {
    display: block;
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.value {
    color: var(--white);
    font-size: 1.2rem;
}

.terminal-main {
    flex: 2;
    padding: 40px;
}

.category-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.nav-item {
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--font-main);
    text-transform: uppercase;
    transition: var(--smooth);
}

.nav-item.active, .nav-item:hover {
    color: var(--gold);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #111;
    transition: var(--smooth);
    cursor: crosshair;
}

.price-item:hover {
    background: rgba(255, 215, 0, 0.03);
    border-bottom: 1px solid var(--gold);
    transform: translateX(10px);
}

.item-info h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.item-info span {
    color: #555;
    font-size: 0.8rem;
}

.item-price {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: bold;
}

.brutal-faq {
    background: var(--dark-bg);
    padding: 120px 20px;
    color: var(--white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    font-family: var(--font-main);
    font-size: clamp(3rem, 10vw, 6rem);
    text-transform: uppercase;
    line-height: 0.8;
    margin-bottom: 80px;
    border-left: 10px solid var(--gold);
    padding-left: 30px;
}

.faq-header .gold { color: var(--gold); }

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-top h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
}

.faq-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding-right: 100px;
}

.faq-card.active .faq-body {
    max-height: 300px;
    opacity: 1;
    margin-top: 25px;
}

.faq-body p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.final-cta {
    position: relative;
    background: var(--dark-bg);
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid #111;
}

.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-tag {
    font-family: var(--font-main);
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title {
    font-family: var(--font-main);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.cta-title .gold {
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold);
    -webkit-text-fill-color: transparent;
}

.btn-terminal-action .arrow {
    margin-left: 10px;
}

/* Item seleccionado con luz amarilla sutil */
.price-item.selected-item {
    background: rgba(255, 204, 0, 0.1) !important;
    border-left: 4px solid #ffcc00;
    transform: translateX(10px);
}

/* El botón de reserva estilo 'Máquina' */
.btn-terminal-action {
    width: 100%;
    padding: 16px;
    background: #ffcc00;
    color: #000;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 12px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    animation: pulseGlow 2s infinite;
}

.btn-terminal-action:hover {
    background: #ffffff;
    transform: scale(1.02);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.price-item { cursor: pointer; transition: 0.3s; }

/* Contenedor del precio alineado a la derecha */
.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

/* Dólares: Grande y destacado */
.price-usd {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffcc00; /* Amarillo Tenchu */
    line-height: 1;
}

/* Córdobas: Pequeño y sutil */
.price-nio {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-family: 'Courier New', monospace; /* Toque técnico */
}

/* Efecto al seleccionar */
.selected-item .price-nio {
    color: #fff;
}

/* Estilo para los nombres de una palabra */
.item-info h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
    font-weight: 800;
}
