/* Respuesta Rápida */

.respuesta-rapida-card * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.respuesta-rapida-card {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    margin: 20px 0;
}

.respuesta-rapida-card .card {
    background: white;
    border: 1px solid rgba(173, 216, 230, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.respuesta-rapida-card .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #7bb3f0, #4a90e2);
    border-radius: 16px 16px 0 0;
}

.respuesta-rapida-card .card-container {
    background: linear-gradient(145deg, #e8f4f8 0%, #d1e7dd 100%);
    border-radius: 16px;
    padding: 24px;
    margin-top: 3px; /* Para compensar el borde superior */
}

.respuesta-rapida-card .card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.respuesta-rapida-card .card-header {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0;
}

.respuesta-rapida-card .card-header::before {
    content: none !important;
}

.respuesta-rapida-card .icono-rr {
    font-size: 18px;
    margin-right: 4px;
    color: #4a90e2;
    line-height: 1;
    display: flex;
    align-items: center;
}

.respuesta-rapida-card .card h2 {
    font-size: 16px;
    font-weight: 600;
    color: #2c5282;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.respuesta-rapida-card .card-content {
    color: #4a5568;
    line-height: 1.4;
    font-size: 14px;
    padding-top: 0;
}

.respuesta-rapida-card .card-content p {
    margin: 0 0 6px 0 !important; /* Forzar margin específico */
}

.respuesta-rapida-card .card-content br {
    display: block;
    margin: 2px 0 !important;
    line-height: 0.5;
}

/* Estilos para listas de viñetas */
.respuesta-rapida-card .card-content ul {
    margin: 8px 0 12px 0 !important;
    padding-left: 20px !important;
    list-style: none !important;
}

.respuesta-rapida-card .card-content ul li {
    position: relative;
    margin-bottom: 6px !important;
    padding-left: 16px !important;
    line-height: 1.4;
    color: #4a5568;
}

.respuesta-rapida-card .card-content ul li:before {
    content: "●";
    color: #4a90e2;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    font-weight: bold;
}

/* Estilos para listas numeradas */
.respuesta-rapida-card .card-content ol {
    margin: 8px 0 12px 0 !important;
    padding-left: 20px !important;
    list-style: none !important;
    counter-reset: custom-counter;
}

.respuesta-rapida-card .card-content ol li {
    position: relative;
    margin-bottom: 6px !important;
    padding-left: 24px !important;
    line-height: 1.4;
    color: #4a5568;
    counter-increment: custom-counter;
}

.respuesta-rapida-card .card-content ol li:before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.respuesta-rapida-card .feature-list {
    list-style: none;
    margin-top: 12px;
}

.respuesta-rapida-card .feature-list li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.respuesta-rapida-card .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.respuesta-rapida-card .badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}