:root {
    --color-repro-dark: #232323;
    --color-repro-light: #f5f5f5;
    --color-repro-accent: #ff9500;
    --gradient-repro: linear-gradient(135deg, var(--color-primary) 0%, #ff9500 100%);
}

/* ==============================================
   SECCIÓN HERO REPROGRAMACIÓN
   ============================================== */
/* Sección Hero Reprogramación - Nuevo diseño innovador */

.repro-hero {
    min-height: 80vh;
    position: relative;
    background: linear-gradient(135deg, #0a0a14 0%, #1a1a28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
    color: white;
    padding: 0 20px;
}

.repro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imagenes/circuit-pattern.png');
    opacity: 0.1;
    z-index: 1;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-5%) translateY(-5%); }
    100% { transform: translateX(0) translateY(0); }
}

/* Contenido principal */
.repro-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: fadeInContent 1s ease-out;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.repro-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
}

.repro-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.repro-hero-content .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.repro-hero-content .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

.repro-hero-content .cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: buttonGlow 2s infinite;
}

@keyframes buttonGlow {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

/* Indicadores de rendimiento */
.performance-indicators {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
}

.indicator {
    text-align: center;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 120px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s backwards;
}

.indicator:nth-child(1) { animation-delay: 0.3s; }
.indicator:nth-child(2) { animation-delay: 0.5s; }
.indicator:nth-child(3) { animation-delay: 0.7s; }

.indicator:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(20, 20, 40, 0.8);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.indicator-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.indicator-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.indicator-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media queries para responsive */
@media screen and (max-width: 992px) {
    .repro-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .repro-hero-content p {
        font-size: 1.3rem;
    }
    
    .performance-indicators {
        gap: 20px;
    }
    
    .indicator {
        padding: 12px 15px;
        width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .repro-hero {
        flex-direction: column;
        justify-content: center;
        padding-bottom: 40px;
    }
    
    .repro-hero-content {
        margin-bottom: 40px;
    }
    
    .repro-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .repro-hero-content p {
        font-size: 1.1rem;
    }
    
    .repro-hero-content .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .performance-indicators {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .indicator {
        width: 90px;
        padding: 10px;
    }
}

@media screen and (max-width: 576px) {
    .repro-hero {
        padding: 60px 15px;
    }
    
    .repro-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .repro-hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .performance-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .indicator {
        width: 90px;
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .indicator-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .indicator-value {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .indicator-label {
        font-size: 0.7rem;
    }
}
/* ==============================================
   SECCIÓN INTRODUCCIÓN
   ============================================== */
.repro-intro {
    padding: 80px 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.repro-intro::before,
.repro-intro::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.repro-intro::before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.repro-intro::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    font-weight: 400;
}

/* ==============================================
   SECCIÓN ¿QUÉ ES UNA REPROGRAMACIÓN?
   ============================================== */
.repro-que-es {
    padding: 100px 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.que-es-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.que-es-info {
    flex: 1;
}

.que-es-info h2 {
    color: var(--color-light);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.que-es-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 30px;
    color: #ccc;
}

.ecu-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecu-container {
    width: 300px;
    height: 200px;
    background-color: #111;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ecu-chip {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #222, #444);
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.ecu-chip::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 5px;
}

.ecu-chip::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-repro-accent));
    border-radius: 3px;
    animation: pulseChip 2s infinite alternate;
}

@keyframes pulseChip {
    0% {
        box-shadow: 0 0 5px rgba(255, 119, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 119, 0, 0.8);
    }
}

.ecu-lights {
    display: flex;
    justify-content: space-around;
}

.ecu-lights::before,
.ecu-lights::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: green;
    animation: blinkLight 1.5s infinite alternate;
}

.ecu-lights::after {
    background-color: var(--color-primary);
    animation-delay: 0.5s;
}

@keyframes blinkLight {
    0%, 30% {
        opacity: 1;
    }
    60%, 100% {
        opacity: 0.3;
    }
}

/* ==============================================
   SECCIÓN BENEFICIOS
   ============================================== */
.repro-beneficios {
    padding: 100px 0;
    background-color: var(--color-light);
    position: relative;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.beneficio-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-repro);
    opacity: 0.1;
    transition: height 0.4s ease;
    z-index: -1;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.beneficio-card:hover::before {
    height: 100%;
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-repro);
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 119, 0, 0.3);
    transition: all 0.4s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(255, 119, 0, 0.4);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.beneficio-card p {
    color: #666;
    line-height: 1.6;
}

/* ==============================================
   SECCIÓN TIPOS DE REPROGRAMACIÓN
   ============================================== */
.repro-tipos {
    padding: 100px 0;
    background-color: var(--color-primary);
    color: var(--color-light);
}

.tipos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.tipo-card {
    flex: 1;
    max-width: 450px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s ease;
}

.tipo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tipo-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #28a745;
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.tipo-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: var(--gradient-repro);
}

.tipo-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tipo-content {
    padding: 30px 25px;
    color: #333;
}

.tipo-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.comparativa {
    margin-bottom: 20px;
}

.compare-item {
    margin-bottom: 15px;
}

.compare-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
    font-size: 0.9rem;
}

.compare-bar {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.compare-fill {
    height: 100%;
    background: var(--gradient-repro);
    border-radius: 4px;
}

.compare-value {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

.tipo-cta {
    padding: 0 25px 30px;
    text-align: center;
}

.tipo-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 119, 0, 0.2);
}

.tipo-btn:hover {
    background-color: var(--color-repro-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 119, 0, 0.3);
}

/* ==============================================
   SECCIÓN POR QUÉ ELEGIRNOS
   ============================================== */
.repro-por-que {
    padding: 100px 0;
    background-color: var(--color-repro-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.repro-por-que .title-underline {
    background-color: var(--color-primary);
}

.por-que-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.por-que-left {
    flex: 1;
}

.por-que-list {
    list-style: none;
    padding: 0;
}

.por-que-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease forwards;
}

.por-que-list li:nth-child(1) { animation-delay: 0.1s; }
.por-que-list li:nth-child(2) { animation-delay: 0.2s; }
.por-que-list li:nth-child(3) { animation-delay: 0.3s; }
.por-que-list li:nth-child(4) { animation-delay: 0.4s; }
.por-que-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.por-que-list i {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.por-que-list span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ddd;
}

.por-que-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge-container {
    text-align: center;
}

.gauge-outer {
    width: 250px;
    height: 250px;
    position: relative;
    margin: 0 auto 20px;
}

.gauge-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    z-index: 2;
}

.gauge-display {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.gauge-unit {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
    color: #ccc;
}

.gauge-dial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        var(--color-primary) 0%,
        var(--color-repro-accent) 30%,
        #28a745 60%,
        #007bff 100%
    );
    border-radius: 50%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 50% 0%, 50% 50%);
    transform: rotate(45deg);
    z-index: 1;
    transition: clip-path 1.5s ease-in-out;
}

.gauge-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 10px;
}

/* ==============================================
   SECCIÓN CTA
   ============================================== */
.repro-cta {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagenes/repro-cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-light);
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #eee;
}

.cta-content .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-content .cta-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.cta-content .cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* ==============================================
   MEDIA QUERIES
   ============================================== */
@media screen and (max-width: 1200px) {
    .repro-hero-content h1 {
        font-size: 3rem;
    }
    
    .repro-hero-content p {
        font-size: 1.3rem;
    }
    
    .gauge-outer {
        width: 200px;
        height: 200px;
    }
    
    .gauge-display {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    .repro-hero {
        height: 70vh;
    }
    
    .repro-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .repro-hero-content p {
        font-size: 1.2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .que-es-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ecu-container {
        width: 250px;
        height: 170px;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tipos-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tipo-card {
        max-width: 100%;
        width: 100%;
    }
    
    .por-que-content {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .repro-hero {
        height: 60vh;
        margin-top: 60px;
    }
    
    .repro-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .repro-hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .que-es-info h2 {
        font-size: 2rem;
    }
    
    .que-es-info p {
        font-size: 1rem;
    }
    
    .ecu-container {
        width: 220px;
        height: 150px;
    }
    
    .beneficio-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .beneficio-card h3 {
        font-size: 1.2rem;
    }
    
    .por-que-list span {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-content .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .repro-hero {
        height: 50vh;
    }
    
    .repro-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .repro-hero-content p {
        font-size: 1rem;
    }
    
    .repro-intro, .repro-que-es, .repro-beneficios, .repro-tipos, .repro-por-que, .repro-cta {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .tipo-header h3 {
        font-size: 1.5rem;
    }
    
    .gauge-outer {
        width: 180px;
        height: 180px;
    }
    
    .gauge-display {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}


/* ==============================================
   BUSCADOR DE REPROGRAMACIONES - ELEGANTE Y MINIMALISTA
   ============================================== */
.repro-buscador {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #ff7700;
    margin: 0 auto;
}

.buscador-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.buscador-form-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    margin-bottom: 40px;
}

.buscador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #ff7700;
    margin-right: 5px;
}

.form-select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a1a;
}

.form-select:hover:not(:disabled) {
    border-color: #ff7700;
}

.form-select:focus {
    outline: none;
    border-color: #ff7700;
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
}

.form-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #999;
    opacity: 0.6;
}

.buscar-btn {
    width: 100%;
    padding: 14px 30px;
    background: #ff7700;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buscar-btn:hover:not(:disabled) {
    background: #ff8800;
    transform: translateY(-1px);
}

.buscar-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.resultados-wrapper {
    margin-top: 40px;
}

.resultado-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resultado-header {
    background: #fafafa;
    padding: 30px 40px;
    border-bottom: 1px solid #e8e8e8;
}

.vehiculo-info {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 20px;
}

.stages-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.stage-badge {
    background: #ff7700;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.resultado-body {
    padding: 40px;
}

.stage-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 40px 0;
}

.stage-content {
    margin-bottom: 40px;
}

.stage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.specs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.spec-box {
    background: #fafafa;
    padding: 25px 20px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition: all 0.2s ease;
}

.spec-box:hover {
    border-color: #ff7700;
    box-shadow: 0 4px 12px rgba(255, 119, 0, 0.1);
}

.spec-title {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.spec-precio {
    font-size: 2rem;
    font-weight: 700;
    color: #ff7700;
    line-height: 1;
}

.spec-performance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 10px;
}

.spec-inicial {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
}

.spec-arrow {
    font-size: 1.2rem;
    color: #ff7700;
}

.spec-final {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.spec-incremento {
    color: #00c853;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.spec-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-consultar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-consultar:hover {
    background: #20ba5a;
    transform: translateY(-1px);
}

.no-results {
    background: #fafafa;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.no-results p {
    font-size: 1rem;
    color: #666;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .buscador-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .buscador-form-card {
        padding: 25px;
    }
    
    .buscador-grid {
        grid-template-columns: 1fr;
    }
    
    .vehiculo-info {
        font-size: 1.2rem;
    }
    
    .stages-display {
        flex-wrap: wrap;
    }
    
    .resultado-body {
        padding: 25px 20px;
    }
    
    .specs-container {
        grid-template-columns: 1fr;
    }
    
    .stage-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .repro-buscador {
        padding: 60px 0;
    }
    
    .buscador-form-card {
        padding: 20px;
    }
    
    .resultado-header {
        padding: 25px 20px;
    }
    
    .spec-box {
        padding: 20px 15px;
    }
    
    .spec-precio {
        font-size: 1.6rem;
    }
    
    .spec-final {
        font-size: 1.5rem;
    }
}